Select Lists for multiple tables (AREV Specific)
At 13 MAY 1998 11:12:03AM Andre' Pimentel wrote:
Is is possible to select more than one table at a time, in other words, do the equivalent of " Listtables ", where all tables will be selected. I would like to select all tables containing a '.' .
At 13 MAY 1998 12:11PM Saul Mendoza wrote:
Use the following:
LIST SYSTABLE WITH @ID CONTAINING "."This will give you a listing of all the tables if you want to select them and then save the list for later processing..
SELECT SYSTABLE WITH @ID CONTAINING "."SAVELIST MYLISTSaul