トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

SQLServerのメモ

Last-modified: 2010-05-19 (水) 14:12:52 (5085d)
Top / SQLServerのメモ
  • テーブル名と件数の一覧

    select o.name as テーブル名, i.rows as 件数

    from sysindexes i, sysobjects o

    where

    o.xtype = 'U'

    and o.id = i.id

    and i.indid < 2;