Hello, I have a problem of importing a paradox db file into SAS. My db file includes several tables and I just want to import specific tables into SAS. The offical guide gives an example like this: This example imports the SAS data set, WORK.CUSTOMER, from the Paradox DB file, customer.db, on a local system. PROC IMPORT OUT=WORK.CUSTOMER FILE="&tmpdir.customer.db" DBMS=DB REPLACE; RUN; It seems only one table is in the db file so it can be import into a data set. But it does not work if there are several tables in the db file. Wondering if anyone can help me figure it out. Much appreciated.
... View more