Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I working on application which can deal with multiple database servers like "MySQL" and "MS SQL Server".

I want to get tables names of a particular database using a general query which should suitable for all database types. I have tried following:

SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE'

But it is giving table names of all databases of a particular server but I want to get tables names of selected database only. How can I restrict this query to get tables of a particular database?

share|improve this question

3 Answers

up vote 20 down vote accepted

Probably due to the way different sql dbms deal with schemas.

Try the following

For MySQL:

SELECT TABLE_NAME 
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA='dbName'

For MS SQL:

SELECT TABLE_NAME 
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE' 

For Oracle I think the equivalent would be to use DBA_TABLES.

share|improve this answer

Stolen from here:

USE YOURDBNAME
GO 
SELECT *
FROM sys.Tables
GO
share|improve this answer

try this:

USE DBName
GO 
SELECT *
FROM sys.Tables
GO
share|improve this answer
'Go' is part of the query ?? – Awan Oct 12 '10 at 10:28
NO it only Part seperator. you can change to other.Its not an T-SQL syntax. – anishMarokey Oct 12 '10 at 10:29
USE DatabaseSample SELECT * FROM sys.Tables – Hamzeh Soboh May 11 at 19:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.