select * from all_tables is the correct Oracle syntax, I'm not sure if this will work on SQL Server or Access.
Keep in mind that multiple DataTable's are not designed to hold a whole database. There is absolutly no logical reason why you should have to put a whole database in a DataSet.You should change your approach, you'll be loading potentially millions of records into memory. Besides, ADO is designed to hold no more than 500 records, I'm not sure if it will hold much more than that
Good luc
Mark
|