How to get all database names with MS SQL & MySQL ?
Filed in SQL on Dec.28, 2005
with Microsoft SQL Server we can list all the database names with System Procedures
sp_databases
or
EXEC sp_helpdb
And in MySQL, its much more simple :
show databases;
VN:F [1.1.6_502]Rating: 5.0/5 (3 votes cast)












