Mar 7, 2001 #1 jalbao Programmer Nov 27, 2000 413 US Can i use sql to query my sqlServer to display a list of all my databases?
Mar 7, 2001 #2 Andel Programmer Feb 15, 2001 366 US try this... USE Master GO SELECT name FROM sysdatabases Andel andelbarroga@hotmail.com http://andyb.8m.com Upvote 0 Downvote
try this... USE Master GO SELECT name FROM sysdatabases Andel andelbarroga@hotmail.com http://andyb.8m.com
Mar 7, 2001 Thread starter #3 jalbao Programmer Nov 27, 2000 413 US thanks andel - it works! i actually had to get rid of the GO statement thanks for the help Upvote 0 Downvote