-- 获取所有数据库名 select * from master..SysDatabases; -- 获取hotline数据库中所有表名 select name from hotline..SysObjects where xType='U' order by name; -- xType='U'所有用户表:xType='S'所有系统表 -- 获取所有字段名 select name from SysColumns where id = OBJECT_ID('BLOB') -- 查询各个磁盘分区的…