首页 > 数据库 > SQL Server > 正文

SQL Server2000数据库系统表的应用

2024-08-31 00:47:46
字体:
来源:转载
供稿:网友
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  •     1:获取当前数据库中的所有用户表

    select name from sysobjects where xtype='u' and status>=0

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

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

     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 = '表名'

    发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表