遊歷資料庫內所有名字符合條件的表

2021-05-10 05:42:56 字數 457 閱讀 6678

declare  @cur varchar(50)

declare curname  cursor

forselect name  from test.dbo.sysobjects where name like 'web_supply_%' or name like'sj_%'

open  curname

fetch next from curname into @cur

while @@fetch_status=0

begin

declare @strsql varchar(500)

set @strsql='drop table '+ @cur

exec( @strsql)

fetch next from curname into @cur

endclose curname

deallocate curname

SQL 建立索引,遍歷資料庫所有表

檢視資料庫表占用的磁碟空間 執行儲存過程 exec sp spaceused tablename 建立聚簇索引 create clustered index indexname on tablename columnname 不允許有重覆記錄 create index clustered index...

sql server 查詢資料庫所有的表名 字段

執行一條sql語句 select from information schema.columns where table name subject 表名 1.利用 sysobjects 系統表 在這個表中,在資料庫中建立的每個物件 例如約束 預設值 日誌 規則以及儲存過程 都有對應一行,我們在該表中...

sql server 查詢資料庫所有的表名 字段

執行一條sql語句 select from information schema.columns where table name subject 表名 1.利用 sysobjects 系統表 在這個表中,在資料庫中建立的每個物件 例如約束 預設值 日誌 規則以及儲存過程 都有對應一行,我們在該表中...