Is there a way I can print a list of all of the queries in a database? tod
D Duane Hookom Jun 16, 2004 #2 You can query the msysobjects table like: SELECT msysobjects.Name, msysobjects.Type FROM msysobjects WHERE (((msysobjects.Name) Not Like "~*") AND ((msysobjects.Type)=5)); There are hidden queries with names that begin with "~"
You can query the msysobjects table like: SELECT msysobjects.Name, msysobjects.Type FROM msysobjects WHERE (((msysobjects.Name) Not Like "~*") AND ((msysobjects.Type)=5)); There are hidden queries with names that begin with "~"