Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Enumerating Databases Not Working
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Miscellaneous
Thread ID:
01420205
Message ID:
01420234
Views:
44
>>why would this not give me a list of all db's on a MS SQL Server 2008 server?
>>
>>select CATALOG_NAME from INFORMATION_SCHEMA.SCHEMATA where SCHEMA_NAME='dbo'
>
>In SQL 2000 the INFORMATION_SCHEMA.SCHEMATA wasn't complaint with SQL Standard. It has been fixed starting with SQL 2005.
>In SQL 2005 and later you can use
>SELECT name FROM sys.databases
>
I'm using MS Sql Server 2008 which should work right? But it doesn't. It only returns a single record for master even though there are many databases on the server.

I switched to use the select name from sys.databases and it works... I think I was trying to use a cross-DB statement here as this doesn't work in MySQL. Guess I'll just have 2 different statements depending on backend.


Thanks.
Brandon Harker
Sebae Data Solutions
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform