当前位置: 代码迷 >> Sql Server >> (经典)收集数据库中经常用到的操作和管理数据库的语句,该怎么解决
  详细解决方案

(经典)收集数据库中经常用到的操作和管理数据库的语句,该怎么解决

热度:20   发布时间:2016-04-27 19:11:10.0
(经典)收集数据库中经常用到的操作和管理数据库的语句
如上:求。。在线等。。。

例如:所有的存储过程,标的信息。

对存储过程的某些字符可以进行查找。

对存储过程的估计计算时间。

对存储过程哪些地方可以进行改善

也可以提供这方面的工具。要有源码的

------解决方案--------------------
联机帮助
------解决方案--------------------
--查询出各(某)表字段的属性
SQL code
--sql server 2000SELECT     表名       = 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 aleft join     systypes b on     a.xusertype=b.xusertypeinner join     sysobjects d on     a.id=d.id  and d.xtype='U' and  d.name<>'dtproperties'left join     syscomments e on     a.cdefault=e.idleft 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=0where     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 code
---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',1reconfiguregosp_configue 'awe enabled',1reconfigurego---手动配置内存选项sp_configure'show advanced options',1goreconfiguregosp_configure 'min server memory' --服务器最小内存sp_configure 'max server memory' --服务器最大内存sp_configure 'index create memory'--创建索引占用的内存sp_configure 'min  memory per query'--每次查询占用的最小内存--获取磁盘读写情况select  @@total_read as '读取磁盘的次数',  @@total_write as '写入磁盘的次数',  @@total_error as '磁盘写入错误数',  getdate() as '当前时间'--获取数据库文件的I/O统计信息select * from fn_virtualfilestats(null,null)--两个参数database_id--指定数据库编号,如果为null,则为所有数据库实例返回I/O统计信息file_id --文件的编号,如果为null,则为所有文件返回信息--获取I/O工作情况select   @@id_busy,--SQL自上次启动以来的用于执行输入和输出操作的时间  @@timeticks, --每个时钟周期对应的微秒数  @@id_busy*@@timeticks as 'I/O 操作毫秒数',  getdate() as '当前时间'--查看SQL SEVER CPU活动,工作情况select  @@cpu_busy,--自上次启动以来的工作时间  @@timeticks, --每个时钟周期对应的微秒数   @@cpu_busy*cast(@@timeticks as float)/1000 as 'cpu工作时间(秒)',  @@idie*cast(@@timeticks as float)/1000 as 'CPU空闲时间(秒)'  getdate() as '当前时间'--获取网络数据包统计信息select  getdate() as '当前时间',  @@pack_received as'输入数据包数量',  @@pack_sent as '输出数据包数量',  @@packet_error as '错误包数量'
  相关解决方案