You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dbo.usp_SchemaSearch.StoredProcedure.sql
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@
10
10
@SearchObjContents = 1, -- Whether or not you want to search the actual code of a proc, function, view, etc
11
11
@ANDSearch = NULL, -- Second search criteria
12
12
@ANDSearch2 = NULL, -- Third search criteria
13
-
@WholeOnly = 1, -- Exclude partial matches...for example, a search of "Entity" will not match with "EntityOpportunity"
13
+
@WholeOnly = 1, -- Exclude partial matches...for example, a search of "Customer" will not match with "CustomerOrders", it will only return "whole" matches, aka, must be surrounded by whitespace or nothing.
14
14
@BaseFilePath = 'C:\PathToFiles' -- Provides a base path of where your files are stored, for example, git or SVN --TODO: currently, it's based on the folder/file structure that I like to use. Maybe in the future it can be parameter or table driven
15
15
--Advanced/Beta features:
16
16
@FindReferences = 0, -- Warning...this can take a while to run -- Dependent on @SearchObjContents = 1...Provides a first level dependency. Finds all places where each of your search results are mentioned
17
-
@CacheObjects = 1, -- Allows you to cache the object definitions to a temp table in your current session. Helps if you are trying to run this many times over and over with no DB filter
17
+
@CacheObjects = 1, -- Allows you to cache the object definitions to a temp table in your current session. Helps if you are trying to run this many times over and over with no DB filter -- Warning, if a filter is applied then removed or changed, the "cache" is sticky and won't update. You'll have to drop it first.
18
18
@DBIncludeFilterList = 'Test%', -- Advanced Database filter...you can provde a comma separated list of LIKE statements to Include only matching DB's
19
19
@DBExcludeFilterList = '%[_]Old,%[_]Backup' -- Advanced Database filter...you can provde a comma separated list of LIKE statements to Exclude any matching DB's
20
20
@ForceSSMSMaxColumnWidth = 0 -- Force SSMS to adjust the column width to be that of the widest value in the dataset (up to 50 characters)
0 commit comments