日期:2014-05-18 浏览次数:20562 次
--sql server 2000 SELECT 表名 = case when a.colorder=1 then d.name else '' end, 表说明 = case when a.colorder=1 then isnull(f.value,'') else '' end, 字段序号 = a.colorder, 字段名 = a.name, 标识 = case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '√'else '' end, 主键 = case when exists(SELECT 1 FROM sysobjects where xtype='PK' and parent_obj=a.id and name in ( SELECT name FROM sysindexes WHERE indid in( SELECT indid FROM sysindexkeys WHERE id = a.id AND colid=a.colid))) then '√' else '' end, 类型 = b.name, 占用字节数 = a.length, 长度 = COLUMNPROPERTY(a.id,a.name,'PRECISION'), 小数位数 = isnull(COLUMNPROPERTY(a.id,a.name,'Scale'),0), 允许空 = case when a.isnullable=1 then '√'else '' end, 默认值 = isnull(e.text,''), 字段说明 = isnull(g.[value],'') FROM syscolumns a left join systypes b on a.xusertype=b.xusertype inner join sysobjects d on a.id=d.id and d.xtype='U' and d.name<>'dtproperties' left join syscomments e on a.cdefault=e.id left join sysproperties g on a.id=g.id and a.colid=g.smallid left join sysproperties f on d.id=f.id and f.smallid=0 where d.name='要查询的表' --如果只查询指定表,加上此条件 order by a.id,a.colorder /* 表名 表说明 字段序号 字段名 标识 主键 类型 占用字节数 长度 小数位数 允许空 默认值 字段说明 ------- ----- ------- -------- ---- ------- ------ ------- --------------- ------ ---------- ---------- authors 1 au_id √ id 11 11 0 2 au_lname varchar 40 40 0 3 au_fname varchar 20 20 0 4 phone char 12 12 0 ('UNKNOWN') 5 address varchar 40 40 0 √ 6 city varchar 20 20 0 √ 7 state char 2 2 0 √ 8 zip char 5 5 0 √ 9 contract bit 1 1 0 (所影响的行数为 9 行) */
------解决方案--------------------
常用存储过程语法收藏
http://topic.csdn.net/u/20090216/10/fca7534f-e881-4e37-b9b7-8fe141ee186b.html?15784
在开发环境中常遇到更改存储过程、函数、视图等对象,解决SQL Server2005里sp_helptext输出格式错行问题。
http://topic.csdn.net/u/20080804/12/f477b3d8-0017-4ef9-b516-021032be83ce.html
存储过程基础(feixianxxx)
http://topic.csdn.net/u/20091127/21/10a70c07-8683-4f9e-be7e-2415fa8f6956.html?seed=296887941&r=61490884#r_61490884
------解决方案--------------------
---SQL Server对大容量内存的支持 32位操作系统有个很大的缺陷,应用程序无法访问大于4G的进程地址空间,因为32位的指针无法保存大于4G的地址空间 如果大于4G,则需要使用地址窗口化扩展插件(AWE),具体操作如下: 1,启动物理地址扩展 (1)找到C:\boot.ini,并删除其只读属性. (2)编辑boot.ini,在ARC路径中添加/PAE参数.例如: 在windows Server 2003 Enterprise Edition 中,编辑后的ARC路径如下: muti(0)disk(0)partition(1)windows="windows Server 2003 Enterprise,Edition"/fastdetect/PAE 保存后将其恢复为只读模式,然后重新启动计算机。 如果计算机上的可用物理内存超过16G,应确保boot.ini文件中没有/3gb参数 ---如何启动AWE选项 sp_configure'show advanced options',1 reconfigure go sp_configue 'awe enabled',1 reconfigure go ---手动配置内存选项 sp_configure'show advanced options',1 go reconfigure go sp_configure 'min server memory' --服