Como obter a lista de tabelas no SQLSever?

0

Posted on : 10-07-2009 | By : .rafa | In : Banco de Dados, MSSQL

Usando o seguinte SQL podes obter a lista do SQL Server

Use testDB
SELECT table_name FROM INFORMATION_SCHEMA.TABLES;

table_name
———–
ExceptionLog
Employee
...

Post a comment

*