vote up 5 vote down star

I would like to do a lookup of tables in my SQL Server 2005 Express database based on table name. In MySQL I would use 'SHOW TABLES LIKE "Datasheet%"', but in T-SQL this throws an error (it tries to look for a SHOW stored procedure and fails).

Is this possible, and if so, how?

flag

8 Answers

vote up 9 vote down check

This will give you a list of the tables in the current database:

Select Table_name as "Table name"
From Information_schema.Tables
Where Table_type = 'BASE TABLE' and Objectproperty 
(Object_id(Table_name), 'IsMsShipped') = 0

Some other useful T-SQL bits can be found here: http://www.devx.com/tips/Tip/28529

link|flag
vote up 5 vote down

I know you've already accepted an answer, but why not just use the much simpler sp_tables?

sp_tables 'Database_Name'
link|flag
vote up 2 vote down

select * from information_schema.columns where table_name = 'yourTableName'

also look for other information_schema views

link|flag
vote up 2 vote down

SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME LIKE 'Datasheet%'

link|flag
vote up 1 vote down

And, since INFORMATION_SCHEMA is part of the SQL-92 standard, a good many databases support it - including MySQL.

link|flag
vote up 0 vote down

SELECT table_name FROM information_schema.tables WHERE table_name LIKE 'Datasheet%'

link|flag
vote up 0 vote down

well... MS is slowly phasing out methods other than information_schema views. so for forward compatibility always use those.

link|flag
vote up 0 vote down

SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME LIKE '%'

Try it!!!!

link|flag

Your Answer

Get an OpenID
or

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