zoukankan      html  css  js  c++  java
  • 查看sqlserver数据库表的容量数据

    --判断临时表是否存在,存在则删除重建
    if exists(select 1 from tempdb..sysobjects where id=object_id('tempdb..#tabName') and xtype='u')
    drop table #tabName
    go
    create table #tabName(
    tabname varchar(100),
    rowsNum varchar(100),
    reserved varchar(100),
    data varchar(100),
    index_size varchar(100),
    unused_size varchar(100)
    )

    declare @name varchar(100)
    declare cur cursor for
    select name from sysobjects where xtype='u' order by name
    open cur
    fetch next from cur into @name
    while @@fetch_status=0
    begin
    insert into #tabName
    exec sp_spaceused @name
    --print @name

    fetch next from cur into @name
    end
    close cur
    deallocate cur

    select tabname as '表名',rowsNum as '表数据行数',reserved as '保留大小',data as '数据大小',index_size as '索引大小',unused_size as '未使用大小'
    from #tabName
    --where tabName not like 't%'
    order by cast(rowsNum as int) desc

  • 相关阅读:
    asp.net 2.0 run
    Regular Expression
    assembly
    asp.net loading..
    session
    asp.net performance
    asp.net page order
    interface
    UVA 562 Dividing coins
    UVA 10003 Cutting Sticks
  • 原文地址:https://www.cnblogs.com/vaejp/p/9485371.html
Copyright © 2011-2022 走看看