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;
Related posts:























Leave a Reply
You must be logged in to post a comment.