Database.EnumMatchingSPs Method

Definition

Overloads

EnumMatchingSPs(String)

The EnumMatchingSPs method returns a QueryResults object that enumerates the stored procedures that contain the specified search text

EnumMatchingSPs(String, Boolean)

The EnumMatchingSPs method returns a QueryResults object that enumerates the stored procedures that contain the specified search text

EnumMatchingSPs(String)

The EnumMatchingSPs method returns a QueryResults object that enumerates the stored procedures that contain the specified search text

public Microsoft.SqlServer.Management.Smo.UrnCollection EnumMatchingSPs (string description);
member this.EnumMatchingSPs : string -> Microsoft.SqlServer.Management.Smo.UrnCollection
Public Function EnumMatchingSPs (description As String) As UrnCollection

Parameters

description
String

Returns

Applies to

EnumMatchingSPs(String, Boolean)

The EnumMatchingSPs method returns a QueryResults object that enumerates the stored procedures that contain the specified search text

public Microsoft.SqlServer.Management.Smo.UrnCollection EnumMatchingSPs (string description, bool includeSystem);
member this.EnumMatchingSPs : string * bool -> Microsoft.SqlServer.Management.Smo.UrnCollection
Public Function EnumMatchingSPs (description As String, includeSystem As Boolean) As UrnCollection

Parameters

description
String

The text for which to search

includeSystem
Boolean

Whether to include system stored procedures in the search. Default is false.

Returns

Applies to