Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何搜索 SQL Server 数据库以查找任何对象名称中的字符串?当测试人员说这个并且那个不起作用并且我无法通过它的名称找到它时,我遇到了一个问题。
如果您正在寻找对象,那么您可以使用:
select * from sys.objects so where so.name like '%whatever%'
Redgate 提供了一个工具,使您能够做到这一点:SQL 搜索。