今天在看到一篇文章說這個,試了一下,效果不錯,記錄一下
dbcc
updateusage(
0, sys_userinfo)
with
count_rows
select
rows
from
sysindexes
where
id =
object_id('
sys_userinfo')
andindid
<
2使用dbcc updateusage報告sysindexes中的頁數和行數錯誤並進行更正
0:表示當前資料庫,
orders:需要進行報告和更正的表
count_rows:指定使用表或檢視中的行數的當前計數更新 row count 列
dbcc updateusage應用有很多,本文沒做深挖
SQL Server 獲得影響行數
rowcount 返回受上一語句影響的行數。語法 rowcount 返回型別 integer 注釋 任何不返回行的語句將這一變數設定為 0 如 if 語句。示例 下面的示例執行 update 語句並用 rowcount 來檢測是否有發生更改的行。update authors set au lname...
jquery 獲得table 行數
1.獲得table總行數,分別使用了兩種方法,結果不同 1 table id children tr length 只能獲得靜態頁面table 行數。2 table id tr length 可以獲得 在動態增減行數後的行數。2.刪除table行 1 刪除行 for var i 0 i2 刪除行 列...
用SQL語句獲得PostgreSQL表的主鍵
以下sql語句 用來顯示postgresql 表的表結構 包括 欄位名稱 字段型別 是否為主鍵 這些資訊select pg constraint.conname as pk name from pg constraint inner join pg class on pg constraint.co...