I am trying to identify all of the table names through sql using Server Query Anaylizer. If I was using Oracle, I would write the following at the sql prompt.
select table_name from user_tables;
or
select table_name from all_tables;
What is the syntax for this in sql server? I know that I could use Server Enterprise Manager, to ackomplish this task. However, my connection with Enterprise Manager is slow. I also feel that it is tedious to switch between windows when performing sql commands. Thank You for reading my posts.
Tim
select table_name from user_tables;
or
select table_name from all_tables;
What is the syntax for this in sql server? I know that I could use Server Enterprise Manager, to ackomplish this task. However, my connection with Enterprise Manager is slow. I also feel that it is tedious to switch between windows when performing sql commands. Thank You for reading my posts.
Tim