博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL脚本获取指定数据库的所有用户表记录数
阅读量:5905 次
发布时间:2019-06-19

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

set nocount on

if object_id(N'tempdb.db.#temp') is not null
drop table #temp
create table #temp (name sysname,count numeric(18))

insert into #temp

select o.name,i.rows
from sysobjects o,sysindexes i
where o.id=i.id and o.Xtype='U' and i.indid<2

select count(count) 总表数,sum(count) 总记录数 from #temp

select * from #temp order by count desc
set nocount off

转载于:https://www.cnblogs.com/songhaipeng/archive/2012/09/26/2703435.html

你可能感兴趣的文章
理解Express express.static 和 __direname 及 __firename的含义
查看>>
[转]wcout输出中文却不显示出来
查看>>
微信小程序 - 单个题目
查看>>
大数据开发实战:MapReduce内部原理实践
查看>>
宽带路由器编年史之路由器的前世
查看>>
操作Cookie公用代码
查看>>
Eclipse开发JQuery环境设置(Spket)
查看>>
javascript setAttribute使用方法 --查缺补漏
查看>>
类别标记用于机电管线标注
查看>>
ffmpeg使用转码学习
查看>>
使用Cordova编译Android平台程序提示:Could not reserve enough space for 2097152KB object heap...
查看>>
JAVA数据结构--插入排序
查看>>
转载:通过struts2拦截器实现权限管理
查看>>
如何成为一名优秀的前端工程师 (share)
查看>>
工人想要什么 ?
查看>>
【数据分析】6 点发的文章在博客园阅读量最高?
查看>>
调用相册怎么设置剪裁-b
查看>>
Android RecyclerView使用详解(二)
查看>>
URL中的特殊字符处理笔记
查看>>
TeamViewer远程唤醒主机实战教程
查看>>