码迷,mamicode.com
首页 > 数据库 > 详细

数据库结构查询

时间:2014-07-17 22:01:43      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:style   color   文件   数据   io   for   

--1:获取当前数据库中的所有用户表

select Name from sysobjects where xtype=‘u‘ and status>=0

--2:获取某一个表的所有字段

select name from syscolumns where id=object_id(N‘表名‘)

--3:查看与某一个表相关的视图、存储过程、函数

select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like ‘%表名%‘

--4:查看当前数据库中所有存储过程

select name as 存储过程名称 from sysobjects where xtype=‘P‘

--5:查询用户创建的所有数据库

select * from master..sysdatabases D where sid not in(select sid from master..syslogins where name=‘sa‘)

或者

select dbid, name AS DB_NAME from master..sysdatabases where sid <> 0x01

--6:查询某一个表的字段和数据类型

select column_name,data_type from information_schema.columns
where table_name = N‘表名‘

--7:获取数据库文件路径

select ltrim(rtrim(filename)) from 数据库名..sysfiles where charindex(‘MDF‘,filename)>0
or
select ltrim(rtrim(filename)) from 数据库名..sysfiles where charindex(‘LDF‘,filename)>0

 

 

--查询数据表中的全部列名。

select name from syscolumns where id=object_id(N‘数据表名‘) order by colorder

数据库结构查询,布布扣,bubuko.com

数据库结构查询

标签:style   color   文件   数据   io   for   

原文地址:http://www.cnblogs.com/fromzerotohero/p/3851764.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!