As I use MS SQL server managent, my query looks like SELECT TOP 100 [TABLE_SCHEMA]
,[TABLE_NAME]
FROM [MYDATABASE].[INFORMATION_SCHEMA].[TABLES] You can use same query in pass through proc sql;
connect to access (path="&DBNAMES");
create table output.&title as
select * from connection to access
(
SELECT TOP 100 [TABLE_SCHEMA] ,[TABLE_NAME]
FROM [MYDATABASE].[INFORMATION_SCHEMA].[TABLES]
);
disconnect from access;
quit; Similarly, you write the query MS Access editor, test it and then use the same query in pass through. It should work for you.
... View more