博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实用的存储过程之一 (转)
阅读量:2501 次
发布时间:2019-05-11

本文共 7275 字,大约阅读时间需要 24 分钟。

实用的存储过程之一 (转)[@more@]

 笔者工作的公司采用的是Server,每天都要处理大量的数据,由于笔者进公司的时间比较晚,公司现有的大部分的都是以前的程序员留下的,因为他们没有相关的文档,笔者对于后台数据库的很多表的结构和数据都不甚了解,给日常的维护造成了很大的麻烦。

在对后台数据库进行研究的过程中,我需要得到数据库的某些相关信息,比如,我希望知道各个表占用多少空间,并且排列出来,可以让我知道哪些表比较大,数据比较多等等——我相信,这可能也是不少数据库管理员所关心的问题,所以我决心做一个通用的过程。我对的存储过程sp_spaceused加了一些改动,以适合我的要求。希望这个存储过程能对大家有些帮助。存储过程如下:

if exists( name from syss where name='spaceused' and type='p')

Drop procedure spaceused

GO

create procedure spaceused

as

begin

 :namespace prefix = o ns = "urn:schemas--com::office" />

declare @id  int    -- The object id of @objname.

declare @type  character(2) -- The object type.

declare  @pages  int    -- Working variable for size calc.

declare @name sysname

declare @dbsize dec(15,0)

declare @logsize dec(15)

declare @bytesperpage  dec(15,0)

declare @pagesperMB    dec(15,0)

declare @objname nvarchar(776)   -- The object we want size on.

declare @updateusage varchar(5)    -- Param. for specifying that

 

create table #temp1

(

  表名    varchar(200) null,

  行数    char(11) null,

  保留空间   varchar(15) null,

  数据使用空间  varchar(15) null,

  使用空间  varchar(15) null,

  未用空间  varchar(15) null

)

--select @objname='N_dep'    -- usage info. should be updated.

select @updateusage='false'

/*Create temp tables before any DML to ensure dynamic

**  We need to create a temp table to do the calculation.

**  reserved: sum(reserved) where indid in (0, 1, 255)

**  data: sum(dpages) where indid < 2 + sum(used) where indid = 255 (text)

**  indexp: sum(used) where indid in (0, 1, 255) - data

**  unused: sum(reserved) - sum(used) where indid in (0, 1, 255)

*/

declare cur_table cursor for

  select name from sysobjects where type='u'

 

Open cur_table

fetch next from cur_table into @objname

 

While @@FETCH_STATUS=0

begin

create table #spt_space

(

  rows  int null,

  reserved  dec(15) null,

  data   dec(15) null,

  indexp  dec(15) null,

  unused  dec(15) null

)

 

/*

**  Check to see if user wants usages updated.

*/

 

if @updateusage is not null

  begin

    select @updateusage=lower(@updateusage)

 

  if @updateusage not in ('true','false')

    begin

      raiserror(15143,-1,-1,@updateusage)

      return(1)

    end

  end

/*

**  Check to see that the objname is local.

*/

if @objname IS NOT NULL

begin

 

  select @dbname = parsename(@objname, 3)

 

  if @dbname is not null and @dbname <> db_name()

    begin

    raiserror(15250,-1,-1)

    return (1)

    end

 

  if @dbname is null

    select @dbname = db_name()

 

  /*

  **  Try to find the object.

  */

  select @id = null

  select @id = id, @type = xtype

    from sysobjects

    where id = object_id(@objname)

 

  /*

  **  Does the object exist?

  */

  if @id is null

    begin

    raiserror(15009,-1,-1,@objname,@dbname)

    return (1)

    end

 

 

  if not exists (select * from sysindexes

    where @id = id and indid < 2)

 

    if  @type in ('P ','D ','R ','TR','C ','RF') --data stored in sysprocedures

    begin

      raiserror(15234,-1,-1)

      return (1)

    end

    else if @type = 'V ' -- View => no physical data storage.

    begin

      raiserror(15235,-1,-1)

      return (1)

    end

    else if @type in ('PK','UQ') -- no physical data storage. --?!?! too many similar messages

    begin

      raiserror(15064,-1,-1)

      return (1)

    end

    else if @type = 'F ' -- FK => no physical data storage.

    begin

      raiserror(15275,-1,-1)

      return (1)

    end

end

 

/*

**  Update usages if user specified to do so.

*/

 

if @updateusage = 'true'

  begin

  if @objname is null

    dbcc updateusage(0) with no_infomsgs

    else

    dbcc updateusage(0,@objname) with no_infomsgs

    print ' '

  end

 

 

set nocount on

 

/*

**  If @id is null, then we want summary data.

*/

/*  Space used calculated in the following way

**  @dbsize = Pages used

**  @bytesperpage = d.low (where d = master.dbo.spt_values) is

**  the # of bytes per page when d.type = 'E' and

**  d.number = 1.

**  Size = @dbsize * d.low / (1048576 (OR 1 MB))

*/

if @id is null

begin

  select @dbsize = sum(convert(dec(15),size))

    from dbo.syiles

    where (status & 64 = 0)

 

  select @logsize = sum(convert(dec(15),size))

    from dbo.sysfiles

    where (status & 64 <> 0)

 

  select @bytesperpage = low

    from master.dbo.spt_values

    where number = 1

    and type = 'E'

  select @pagesperMB = 1048576 / @bytesperpage

 

  select  database_name = db_name(),

    database_size =

    ltrim(str((@dbsize + @logsize) / @pagesperMB,15,2) + ' MB'),

    'unallocated space' =

    ltrim(str((@dbsize -

    (select sum(convert(dec(15),reserved))

      from sysindexes

      where indid in (0, 1, 255)

    )) / @pagesperMB,15,2)+ ' MB')

 

  print ' '

  /*

  **  Now calculate the summary data.

  **  reserved: sum(reserved) where indid in (0, 1, 255)

  */

  insert into #spt_space (reserved)

    select sum(convert(dec(15),reserved))

    from sysindexes

    where indid in (0, 1, 255)

 

  /*

  ** data: sum(dpages) where indid < 2

  **  + sum(used) where indid = 255 (text)

  */

  select @pages = sum(convert(dec(15),dpages))

    from sysindexes

    where indid < 2

  select @pages = @pages + isnull(sum(convert(dec(15),used)), 0)

    from sysindexes

    where indid = 255

  update #spt_space

    set data = @pages

 

 

  /* index: sum(used) where indid in (0, 1, 255) - data */

  update #spt_space

    set inde= (select sum(convert(dec(15),used))

    from sysindexes

      where indid in (0, 1, 255))

      - data

 

  /* unused: sum(reserved) - sum(used) where indid in (0, 1, 255) */

  update #spt_space

    set unused = reserved

    - (select sum(convert(dec(15),used))

      from sysindexes

      where indid in (0, 1, 255))

 

  select reserved = ltrim(str(reserved * d.low / 1024.,15,0) +

    ' ' + 'KB'),

    data = ltrim(str(data * d.low / 1024.,15,0) +

    ' ' + 'KB'),

    index_size = ltrim(str(indexp * d.low / 1024.,15,0) +

    ' ' + 'KB'),

    unused = ltrim(str(unused * d.low / 1024.,15,0) +

    ' ' + 'KB')

    from #spt_space, master.dbo.spt_values d

    where d.number = 1

    and d.type = 'E'

end

 

/*

**  We want a particular object.

*/

else

begin

  /*

  **  Now calculate the summary data.

  **  reserved: sum(reserved) where indid in (0, 1, 255)

  */

  insert into #spt_space (reserved)

    select sum(reserved)

    from sysindexes

    where indid in (0, 1, 255)

      and id = @id

 

  /*

  ** data: sum(dpages) where indid < 2

  **  + sum(used) where indid = 255 (text)

  */

  select @pages = sum(dpages)

    from sysindexes

    where indid < 2

      and id = @id

  select @pages = @pages + isnull(sum(used), 0)

    from sysindexes

    where indid = 255

    and id = @id

  update #spt_space

    set data = @pages

 

 

  /* index: sum(used) where indid in (0, 1, 255) - data */

  update #spt_space

    set indexp = (select sum(used)

    from sysindexes

      where indid in (0, 1, 255)

      and id = @id)

      - data

 

  /* unused: sum(reserved) - sum(used) where indid in (0, 1, 255) */

  update #spt_space

    set unused = reserved

    - (select sum(used)

      from sysindexes

      where indid in (0, 1, 255)

      and id = @id)

  update #spt_space

    set rows = i.rows

    from sysindexes i

    where i.indid < 2

      and i.id = @id

  insert into #temp1

  select name = object_name(@id),

    rows = convert(char(11), rows),

    reserved = ltrim(str(reserved * d.low / 1024.,15,0) +

    ' ' + 'KB'),

    data = ltrim(str(data * d.low / 1024.,15,0) +

    ' ' + 'KB'),

    index_size = ltrim(str(indexp * d.low / 1024.,15,0) +

    ' ' + 'KB'),

    unused = ltrim(str(unused * d.low / 1024.,15,0) +

    ' ' + 'KB')

  from #spt_space, master.dbo.spt_values d

    where d.number = 1

    and d.type = 'E'

Drop table #spt_space

end

fetch next from cur_table into @objname

end

Close cur_table

DEALLOCATE cur_table

Select * from #temp1 order by len(保留空间) desc,保留空间 desc

Drop table #temp1

return (0)

end

原理很简单,相信大家都能看懂,sp_spaceused几乎原封不动地保留下来,也很简单,直接即可,没有任何参数,存储过程执行后,将把当前连接的数据库中所有数据表按照从大到小排列出来,还有其他的相关信息。如果能对大家有所参考价值,就请大家能给forgot2000一点掌声鼓励吧,谢谢!

本存储过程在SQLServer7.0/2000下通过。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10748419/viewspace-1000222/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/10748419/viewspace-1000222/

你可能感兴趣的文章
scala(06)----(AKKA)
查看>>
iOS App 启动性能优化
查看>>
Asp.Net MVC3 简单入门详解过滤器Filter
查看>>
IntelliJ IDEA(一) :安装
查看>>
Java中String与BufferedReader、InputStream转换
查看>>
netty使用MessageToByteEncoder 自定义协议(四)
查看>>
MySQL 安装
查看>>
吴裕雄--天生自然 python数据分析:葡萄酒分析
查看>>
吴裕雄 Bootstrap 前端框架开发——简介
查看>>
判断一个对象是jQuery对象还是DOM对象
查看>>
设计简单的后台管理的数据排序
查看>>
whust#2 I Hou Yi's secret
查看>>
JAVA并发---记录2
查看>>
学历很重要
查看>>
【POJ2778】AC自动机+矩阵乘法
查看>>
自定义粘贴板-陈鹏
查看>>
Spark ML参考博客
查看>>
安装go语言,配置环境及IDE,只需3步
查看>>
本周最后一天——4.18
查看>>
JS类型、值和变量 笔记
查看>>