これはSQLサーバーの「既知の」問題です。実際にこのSSMS機能は危険です。特に、テーブルやビューを変更した場合は、どのオブジェクトを変更する必要があるかを知りたいときに使います。また
- 限りオブジェクトのテキストがあなたのテーブルの名前が
RECORD1に切断することができるように、8000個のシンボルが、それは、いくつかの部分に分割されることが多いかのように、syscommentsの中で検索するスクリプトを使用しないでください。 ...... table_that_yo
RECORD2:u_search ........
は、以前は私の「レシピ」は、ディスクへのテキストファイルにスクリプトにすべての目的であったといずれかを使用して、「ファイルを検索」を実行テキストエディタ - Notepad ++(ファイルで検索)機能のSSMSのように。
私は今、組み込みのSQL関数を使用してオブジェクト定義での検索ができますスクリプトを作成しました:私はちょうど管理Studioと同じ問題に気づいた
/*
This is an easy way to look through the sources of all objects in the database
if you need to find particular string. This script can be used, for example,
to find references of some specific object by other objects. Depending on the
size of your database you might want to limit the search scope to particular
object type. Just comment unneeded object types in WHERE statement.
Enter search string between %% marks in @SearchPattern initialisation statement.
When you get the results you can copy object name from "FullName" column and
use SSMSBoost to quickly locate it in the object explorer, or you can continue
searching in results using "Find in ResultsGrid" function.
This script is provided to you by SSMSBoost add-in team as is. Improvements and
comments are welcome.
Redistribution with reference to SSMSBoost project website is welcome.
SSMSBoost team, 2014
*/
DECLARE @SearchPattern NVARCHAR(128)
SET @SearchPattern = '%%'
SELECT SCHEMA_NAME(o.schema_id) as [schema]
, o.[name]
, o.[type]
, '['+SCHEMA_NAME(o.schema_id)+'].['+o.[name]+']' as FullName
, OBJECT_DEFINITION(object_id) AS [Source]
FROM sys.objects AS o
WHERE lower(OBJECT_DEFINITION(o.object_id)) LIKE lower(@SearchPattern)
AND o.[type] IN (
'C',--- = Check constraint
'D',--- = Default (constraint or stand-alone)
'P',--- = SQL stored procedure
'FN',--- = SQL scalar function
'R',--- = Rule
'RF',--- = Replication filter procedure
'TR',--- = SQL trigger (schema-scoped DML trigger, or DDL trigger at either the database or server scope)
'IF',--- = SQL inline table-valued function
'TF',--- = SQL table-valued function
'V') --- = View
ORDER BY o.[type]
, o.[name]
[これは2008年のことですが、多くの有用な情報があります](http://sqlblog.com/blogs/aaron_bertrand/archive/2008/09/09/keeping-sysdepends-up-to- date-in-sql-server-2008.aspx) –