needmoremoney
Technical User
Hello, I'm posting this again because I think I posted it in the wrong forum earlier. This should have been a SQL question.
I need some help with this.
I have over 1,000 access 97 databases. I need to to pull only data from three field in one table from each database.
How can I do this without writing a sql statement for each db?
What I have now:
SELECT CProcessDates.co, CProcessDates.processDate, CProcessDates.status
FROM \\server1\systems\9872.CProcessDates
WHERE (((CProcessDates.status)="Processed")) OR (((CProcessDates.status)="Processed"))
ORDER BY CProcessDates.processDate DESC;
Any ideas, let me know. Thanks much.
I need some help with this.
I have over 1,000 access 97 databases. I need to to pull only data from three field in one table from each database.
How can I do this without writing a sql statement for each db?
What I have now:
SELECT CProcessDates.co, CProcessDates.processDate, CProcessDates.status
FROM \\server1\systems\9872.CProcessDates
WHERE (((CProcessDates.status)="Processed")) OR (((CProcessDates.status)="Processed"))
ORDER BY CProcessDates.processDate DESC;
Any ideas, let me know. Thanks much.