MSSQL:查询存储过程中具有某些关键字的存储过程
MSSQL:查询存储过程中具有某些关键字的存储过程:
select a.* from sysobjects a, syscomments b
where a.id = b.id and b.text like '%Carddata%'
MSSQL:查询存储过程中具有某些关键字的存储过程:
select a.* from sysobjects a, syscomments b
where a.id = b.id and b.text like '%Carddata%'