To obtain a list of all tables from all data marts in a data warehouse using Sybase, we use
select * from sysobjects where type = 'U'
However, I want to grab and export all tables from a particular data mart ("DM"). I'm relatively new to Sybase, so my gut's telling me to do something along the following lines:
select * from DM.sysobjects where type = 'U'
That's obviously not working, or else I would not be here :). Can someone point me in the right direction?