SQL server 統計資料庫
阿新 • • 發佈:2020-08-13
select * from sysdatabases order by name
- 查詢資料庫中所有表
select * from sysobjects where xtype='U'; xtype='U' 表示所有使用者表 select * from sysobjects where xtype='S'; xtype='S' 表示所有系統表
- 查詢指定表所有欄位名
select name from syscolumns where id=Object_Id('Bod_Tag)';
- 使用者所屬資料庫角色
use yourdb go
- 登陸帳戶所屬伺服器角色
use master go
- 查詢所有使用者表
select name from Bod..sysobjects where