Loading
Showing posts with label List Tables. Show all posts
Showing posts with label List Tables. Show all posts

Thursday, August 20, 2009

Display List of MS SQL Database Tables

use <DatabaseName>
select * from information_schema.tables

Example:
use myDatabase
select * from information_schema.tables
order by table_name