*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=
Util_ObjectSearch
By Jesse Roberge - YeshuaAgapao@Yahoo.com
Searches for objects who's names contain the search string. outputs IDs, names, and types of the object and its parent.
LIKE wildcards are not automatic, which allows for easy 'begins with', 'ends with', and 'equal to' queries.
Required Input Parameters:
@ObjectName sysname Filters tables. Can use LIKE wildcards. All tables if blank.
Optional Input Parameters:
@SchemaName sysname='' Filters schemas. Can use LIKE wildcards. All schemas if blank.
@UserOjbects TinyInt=0 Searchthe names of user objects
@SystemObjects TinyInt=0 Search the names of system objects
@AllTypes TinyInt=0 Also search the names of constraints and old-style rules/defaults
Usage
EXECUTE Util_ObjectSearch '%mpi%'
EXECUTE Util_ObjectSearch @SchemaName='dbo', @ObjectName='%order%', @SystemObjects=1, @AllTypes=0
Copyright:
Licensed under the L-GPL - a weak copyleft license - you are permitted to use this as a component of a proprietary database and call this from proprietary software.
Copyleft lets you do anything you want except plagarize, conceal the source, proprietarize modifications, or prohibit copying & re-distribution of this script/proc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
see <http://www.fsf.org/licensing/licenses/lgpl.html> for the license text.
*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=