查看一个表的触发器

sql server 查询某个表的所有触发器名称

查出所有用到某个表的SQL

select   *   from   sysobjects   where   xtype=‘TR‘  
select   *   from   sysobjects   where   xtype=‘TR‘   and   parent_obj=object_id(‘表名‘)

查看触发器的sql    exec sp_helptext ‘TRG_TM_Room_Change_GetMaxChangeID‘
xtype   char(2)   对象类型。可以是下列对象类型中的一种:    
  C   =   CHECK   约束  
  D   =   默认值或   DEFAULT   约束  
  F   =   FOREIGN   KEY   约束  
  L   =   日志  
  FN   =   标量函数  
  IF   =   内嵌表函数  
  P   =   存储过程  
  PK   =   PRIMARY   KEY   约束(类型是   K)  
  RF   =   复制筛选存储过程  
  S   =   系统表  
  TF   =   表函数  
  TR   =   触发器  
  U   =   用户表  
  UQ   =   UNIQUE   约束(类型是   K)  
  V   =   视图  
  X   =   扩展存储过程

时间: 2024-12-18 07:50:13

查看一个表的触发器的相关文章

mysql5.7基础 查看一个表的结构 与 详细信息 使用的什么引擎

镇场文:       学儒家经世致用,行佛家普度众生,修道家全生保真,悟易理象数通变.以科技光耀善法,成就一良心博客.______________________________________________________________________________________________________ Operating System:UbuntuKylin 16.04 LTS 64bitmysql: Ver 14.14 Distrib 5.7.17, for Linux (

sql语句,怎么查看一个表中的所有约束

sql语句,怎么查看一个表中的所有约束,比如,一个student表,有唯一,外键,主键,用sql语句怎么查看student表中的所有约束呢? select * from sysobjects where parent_obj in(select id from sysobjects where name='student')

SqlSever基础 MIN 查看一个表中一个列的最小值

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 table 2 code 1 --创建一个数据库 2 create database helloworld1 3 4 use master 5 drop database helloworld1 6 7 --用helloworld1这个数据库 8 use helloworld1 9 10 --

SqlSever基础 MAX 查看一个表中一个列的最大值

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 table 2 code 1 --创建一个数据库 2 create database helloworld1 3 4 use master 5 drop database helloworld1 6 7 --用helloworld1这个数据库 8 use helloworld1 9 10 --

SqlSever基础 MAX 查看一个表中具有特定内容的行中某一列的最大值

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 table 2 code 1 --创建一个数据库 2 create database helloworld1 3 4 use master 5 drop database helloworld1 6 7 --用helloworld1这个数据库 8 use helloworld1 9 10 --

SqlSever基础 MIN 查看一个表中具有特定内容的行中某一列的最小值

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 table 2 code 1 --创建一个数据库 2 create database helloworld1 3 4 use master 5 drop database helloworld1 6 7 --用helloworld1这个数据库 8 use helloworld1 9 10 --

oracle怎么查看一个表或一个索引占用多少空间

很多时候我们想知道一个表或一个索引占用多少M的空间,以下脚本就是满足这个要求的,记住替换其中的内容. SELECT owner, segment_name, SUM(bytes)/1024/1024 FROM dba_segments --WHERE owner='MYUSER' --And segment_name='MYSEG' GROUP BY owner,segment_name ORDER BY 3 DESC;

Oracle中查看一个表是否被锁住

SELECT OBJECT_NAME,       SESSION_ID SID,       MACHINE,       VS.MODULE,       'ALTER   SYSTEM   KILL   SESSION   ''' || SESSION_ID || ', ' ||       SERIAL# || '''; ' KILL_SESSION,       VS.STATUS,       VS.ACTION,       SERIAL#,       ORACLE_USERNA

SQL Server 查看一个表上的索引

方法:1 sys.indexes index_id =0:堆 index_id =1:聚集索引 index_id =2.....:非聚集索引 ------------------------------------------------------------------------------------- 例子: create table Student(ID int not null,Name nvarchar(16),Major nvarchar(16));go create inde