[SQL笔记] 系统表查询
时间:2010-09-01 来源:勿忘我
1.查询数据库中什么地方有使用该 关键字.
select object_name(id) from syscomments where text like '%data%'
2.查询数据库中哪个Job 有使用该 关键字
use msdb
select * from dbo.sysjobs A,dbo.sysjobsteps B where A.job_id=B.Job_Id and B.Command like '%data%'
3.查询使用该DB 的进程
select * from sysprocesses where DB_NAME(dbid)='dbname'
相关阅读 更多 +