OK, I know I've asked this before, but I guess I just don't get it!
How can I see ALL the user tables for a *given database*?
This is the query I've been using, but it doesn't break down the tables by database:
There's gotta be an easier way. Yes, I know I can use EM for this, but I want a SQL version of the query.
Thanks!
How can I see ALL the user tables for a *given database*?
This is the query I've been using, but it doesn't break down the tables by database:
select * from sysobjects where xtype = 'U'
There's gotta be an easier way. Yes, I know I can use EM for this, but I want a SQL version of the query.
Thanks!