My apologies if this is the wrong forum for this question, but I'm hoping someone can provide me with a solution.
I need to research records in a SQL Server database that, at present, I can only access by linking to the tables from an Access database.
The problem appears to be the size of the table. There are more than 10 million records and Access times out when I attempt to run a query, even when I provide criteria such as a range of dates (ie WHERE InvoiceDate BETWEEN now and then).
The best solution I've found is to dump the data into an access table by running a make table query and several append queries - I can get about 10 days at a time. One month totals nearly 900,000 records, so I'm thinking I'll need separate tables for additional months!
Does anyone have any idea of how I can make this process a little more efficient? At present time, I have no control over the SQL Server DB and have "read only" access to it.
Randy