DECLARE @ItemMessage XML DECLARE @ItemTable TABLE(No NVARCHAR(300),zje NVARCHAR(300),yfje NVARCHAR(300),bcje NVARCHAR(300),URL NVARCHAR(300),Remark NV...
分类:
数据库 时间:
2014-07-16 20:13:04
阅读次数:
257
Create PROC [ChangeDept](@FromUserID varchar(25), @ToDeptID int )AsBegin BEGIN TRANSACTION --开始事务 DECLARE @errorSun INT --定义错误计数器 ...
分类:
其他好文 时间:
2014-07-16 20:10:03
阅读次数:
220
1. Set Serveroutput on; declare Cursor tem_cursor is select * from xuesheng xs; v_row tem_cursor%rowtype;begin open tem_...
分类:
数据库 时间:
2014-07-13 00:35:28
阅读次数:
195
static
Use the static modifier to declare a static member, which belongs to the type itself rather than to a specific object. The static modifier
can be used with classes, fields, methods, proper...
分类:
其他好文 时间:
2014-07-12 22:32:04
阅读次数:
320
Just like normal variables, pointers can be declared constant. There are two different ways that pointers and const can be intermixed, and they are very easy to mix up.
To declare a const pointer, ...
分类:
其他好文 时间:
2014-07-12 21:20:23
阅读次数:
165
情况:在远程数据库删除表执行太慢,表过多,数据库无权删除结果:保留空数据库方法:利用sql语句,查询网络文摘解决.说明:有些有约束,不能直接delete,需要先删除所有约束,语句:DECLARE c1 cursor for select 'alter table ['+ object_name...
分类:
数据库 时间:
2014-07-12 15:23:17
阅读次数:
231
/* 打开修改系统表的开关 */sp_configure 'allow updates', 1RECONFIGURE WITH OVERRIDE存储过程如下:create procedure sp_droplogin@loginame sysnameas declare @exec_stmt nva...
分类:
数据库 时间:
2014-07-12 08:48:49
阅读次数:
1136
declare @sDate VARCHAR(10) DECLARE @eDate VARCHAR(10) SET @sdate = '2014-06-25' SET @edate = '2014-06-26' --生成日期表CREATE TABLE #DateTable([date] VARCHA...
分类:
数据库 时间:
2014-07-11 18:34:17
阅读次数:
185
例子table1结构如下id intname varchar(50)declare @id intdeclare @name varchar(50)declare cursor1 cursor for --定义游标cursor1select * from table1 ...
分类:
其他好文 时间:
2014-07-11 12:57:38
阅读次数:
214
Desktop的API,用于切换或者系统桌面环境。扩展起来可以做一个锁屏程序或者多桌面程序。模块部分: 1 'desktop.bas 2 'too much struct and declare unused, shame~ 3 Public Declare Function GetThrea...
分类:
其他好文 时间:
2014-07-10 14:50:31
阅读次数:
314