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サーバーデータベースを検索して、オブジェクト名の文字列を見つけるにはどうすればよいですか? テスターがこれを言っていて、それが機能していないという問題があり、その名前で見つけることができません。
オブジェクトを探している場合は、次を使用できます。
select * from sys.objects so where so.name like '%whatever%'
Redgate は、これを可能にするツールを提供しています: SQL 検索。