mrfangzheng

Hope and fear are useless. Be confident, and always be prepared for the worst.
  首页  :: 新随笔  :: 联系 :: 管理

2008年4月29日

摘要: sp_msForEachTable 对每个表进行操作 create table #rowcount (tablename varchar(128), rowcnt int)exec sp_MSforeachtable 'insert into #rowcount select ''?'', count(*) from ?'select * from #rowcount order ... 阅读全文

posted @ 2008-04-29 15:43 mrfangzheng 阅读(163) 评论(0) 推荐(0) 编辑