To continue reading for free, register below or login
To read more you must become a member of SearchSQLServer.com
');
// -->

I would recommend using the Information Schema Views in your database and specify the correct WHERE clause. Here is an example:
USE Pubs
SELECT Table_Name
FROM INFORMATION_SCHEMA.Tables
WHERE Table_Name IN ('Authors', 'Titles', 'TitleAuthor')
Do you have comments on this Ask the Expert Q&A? Let us know.
|