-
Freebsd 配制文件
Freebsd 配制文件网卡配制文件路径/etc/sysconfig/networkscripts/ifcfgeth0重启网络,修改生效/etc/init.d/network restart
应用 2006-01-20
-
DB2中几种遇到的SQL1032N出错的解决
在使用DB2以来,碰到了几次出现提示SQL1032N错误,每次出错时出错信息大概如下:11/21/2004 22:15:33 0 0 SQL1042C 发生意外的系统错误。SQL1032N
应用 2005-12-20
-
Oracle 10g 物化视图例子
**********************************************************************物化视图0.cmd 修改系统参数,在init.ora里面修改则每次都有效alter system set job_queue_processes=20;如果这个参数为0,物化视图是不会刷新的
应用 2005-11-29
-
用T-SQL获得当前连接客户端IP和机器名
Declare @RowCount intSelect @rc=0Select @RowCount=0begin//create temp table ,save sp_who informationcreate table #tspid( spid int null, ecid
应用 2005-11-28
-
SQL SERVER中字段类型及说明
格式说明: 数据类型 说 明 同 义 Bit 1位,值为0或1 Int Integer 4字节,值为2^31~2^311 Smallint 2字节,值为2^15~2^151
应用 2005-10-31
-
SQL Server中如何计算农历
not null, data char(7) not null, dataInt int not null ) 插入数据 INSERT INTO SolarDataa SELECT 1900,''0x04bd8'',19416 UNION ALL SELECT 1901,''0x04a
应用 2005-10-31