I'm a bit rusty. I need to load all data from all tables in a database not knowing what the tablenames are. Is there a function to do this? Some like Load * from SysTables(0) ;
First, it depends on the database type - oracle, sql server, sybase, etc. Just google "find all tables in ...". After that, you have to loop through the tables selection all fields from each. Second, the reload will fail almost for sure because of the logical loops. You have to use QUALIFY to avoid this.