Is there a SQL command that will list all the tables in a database and which is provider independent (works on MSSQLServer, Oracle, MySQL)?
|
|
The closest option is to query the
The
Some brands of database, e.g. Oracle, IBM DB2, Firebird, Derby, etc. have similar "catalog" views that give you an interface where you can query metadata on the system. But the names of the views, the columns they contain, and their relationships don't match the ANSI SQL standard for (footnote: the catalog views in IBM DB2 UDB for System i are different from the catalog views in IBM DB2 UDB for Windows/*NIX -- so much for the Universal in UDB!) Some other brands (e.g. SQLite) don't offer any queriable interface for metadata at all. |
||||
|
|
|
Here is a nice site about extracting METADATA |
||
|
|
|
|
If you are OK with using a non-SQL approach and you have an ODBC driver for the database and it implements the SQLTables entry-point, you possibly might get the information you want! pjjH details on the API at: http://msdn.microsoft.com/en-us/library/ms711831.aspx |
||
|
|
|
|
No, the SQL standard does not constrain where the table names are listed (if at all), so you'll have to perform different statements (typically |
||
|
|
|
No. They all love doing it their own little way. |
||
|
|
