D
David Thielen
I am using:
DataTable schemaTable = conn.GetSchema("procedures");
int ordSchema = schemaTable.Columns.IndexOf("SPECIFIC_SCHEMA");
int ordName = schemaTable.Columns.IndexOf("SPECIFIC_NAME");
And the DataRow's returned have nothing in them that identifies a
stored procedure as a user one vs a system one.
Even weirder, in SqlServer 2000 this returns just user stored
procedures while in SqlServer 2005 it returns system ones that start
with dt_ but not the ones that start with sp_.
Any suggestions? I would like to be able to get just user ones, just
system ones, and all (3 options).
thanks - dave
david@[email protected]
Windward Reports -- http://www.WindwardReports.com
me -- http://dave.thielen.com
Cubicle Wars - http://www.windwardreports.com/film.htm
DataTable schemaTable = conn.GetSchema("procedures");
int ordSchema = schemaTable.Columns.IndexOf("SPECIFIC_SCHEMA");
int ordName = schemaTable.Columns.IndexOf("SPECIFIC_NAME");
And the DataRow's returned have nothing in them that identifies a
stored procedure as a user one vs a system one.
Even weirder, in SqlServer 2000 this returns just user stored
procedures while in SqlServer 2005 it returns system ones that start
with dt_ but not the ones that start with sp_.
Any suggestions? I would like to be able to get just user ones, just
system ones, and all (3 options).
thanks - dave
david@[email protected]
Windward Reports -- http://www.WindwardReports.com
me -- http://dave.thielen.com
Cubicle Wars - http://www.windwardreports.com/film.htm