zoukankan      html  css  js  c++  java
  • sql2008 查询某个表被那些存储过程用到

    selectdistinctobject_name(id) from syscomments where id in (selectobject_idfrom sys.objects where type ='P') andtextlike'%tablename%'

    查找那些过程对该表做了更新操作

    selectdistinctobject_name(id) from syscomments where id in (selectobject_idfrom sys.objects where type ='P') andtextlike'%update tablename%'

    别的操作以此类推。

    select'exec sp_helptext ['+object_name(id) +']
    print
    ''go''
    'from syscomments where id in (selectobject_idfrom sys.objects where type ='P')
  • 相关阅读:
    iOS基础
    iOS基础
    iOS基础
    iOS基础
    iOS基础
    iOS基础
    iOS基础
    简单DP + 高精
    高精度计算
    树 (tree)
  • 原文地址:https://www.cnblogs.com/Ruiky/p/2418216.html
Copyright © 2011-2022 走看看