G
Guest
This is for Sql Server.
"SELECT table_name FROM information_schema.tables WHERE (table_type = 'BASE
TABLE') ORDER BY table_name";
gives me all user tables plus the system dtproperties.
1) How can I get just user tables (ie no dtproperties also)?
2) How can I get just system tables?
3) How can I get all tables (user & system)?
4) How can I get the metadata description for the table?
--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm
"SELECT table_name FROM information_schema.tables WHERE (table_type = 'BASE
TABLE') ORDER BY table_name";
gives me all user tables plus the system dtproperties.
1) How can I get just user tables (ie no dtproperties also)?
2) How can I get just system tables?
3) How can I get all tables (user & system)?
4) How can I get the metadata description for the table?
--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm