sql指令碼來獲取資料庫中的所有表結構了,**如下:
use adventureworks2008
goselect
(case when a.colorder=1 then d.name else '' end) 表名,
a.colorder 字段序號,
a.name 欄位名,
(case when columnproperty( a.id,a.name,'isidentity')=1 then '√'else '' end) 標識,
(case when (select count(*)
from sysobjects
where (name in (select name
from sysindexes
where (id = a.id) and (indid in (select indid
from sysindexkeys
where (id = a.id) and (colid in (select colid
from syscolumns
where (id = a.id) and (name = a.name)))
)))) and (xtype = 'pk')
) > 0 then '√' else '' end) 主鍵,
b.name 型別,
a.length 占用位元組數,
columnproperty(a.id,a.name,'precision') as 長度,
isnull(columnproperty(a.id,a.name,'scale'),0) as 小數字數,
(case when a.isnullable=1 then '√'else '' end) 允許空,
isnull(e.text,'') 預設值,
isnull(g.[value],'') as 字段說明
from syscolumns a
left join systypes b on a.xtype=b.xusertype
inner join sysobjects d on a.id=d.id and d.xtype='u' and d.name<>'dtproperties'
left join syscomments e on a.cdefault=e.id
left join sys.extended_properties g on a.id=g.major_id and a.colid = g.minor_id
--where d.name in ('contact','stockbmps','addresstype')---查詢具體的表,注釋掉後就是查詢整個資料庫了
order by a.id,a.colorder
如果資料庫的版本不是sql server2008呢,比如是sql server2000 呢?
那麼就需要將sys.extended_properties用sysproperties代替了。
因為sysproperties這個系統表,但在2008版本中卻提示找不到,在聯機文件中也找不到,後來發現這個系統表在2005版本中就已經被系統表sys.extended_properties所代替。
寫個指令碼來啟動資料庫
寫個指令碼來啟動資料庫 每次開啟linux總要做寫重複的動作,那就是啟動監聽,啟動資料庫,檢視資料庫狀態。麻煩 還是寫個shell指令碼來控制方便些 在 oracle home bin下有個dbstart指令碼可以啟動資料庫,但是執行之後提示 failed to auto start oracle ...
SQL語句獲取資料庫中的表主鍵,自增列,所有列
獲取表主鍵 1 select table name,column name from information schema.key column usagewhere table name dtproperties 2 exec sp pkeys table name 表名 3 select o.n...
SQL 建立資料庫指令碼
在sql語言中注釋使用 sql 不區分大小寫 建立資料庫 檢查在當前伺服器系統中的所有資料裡面是否有名稱為netstudent的資料庫 ifexists select from sysdatabases where name netstudent 如果有刪除該資料庫 drop database ne...