--表
select * from dbo.sysobjects where  OBJECTPROPERTY(id, N'IsUserTable') = 1 and refdate>'2006-05-01'
--视图
select * from dbo.sysobjects where  OBJECTPROPERTY(id, N'IsView') = 1 and refdate>'2006-05-01'
--存储过程
select * from dbo.sysobjects where  OBJECTPROPERTY(id, N'IsProcedure') = 1 and refdate>'2006-05-01


当然也可以查找自定义函数等

相关文章:

  • 2021-07-11
  • 2022-12-23
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2021-07-09
相关资源
相似解决方案