Link table more than 50 million records

adnanhome

Registered User.
Local time
Today, 06:58
Joined
Nov 12, 2008
Messages
16
Hi I am using MS Access 2013. I have link table coming from SQL Sever has huge data records more than 50 million. Whenever I run any query it freeze my computer or it takes lot of time. I tried pass through run well if there is no filter on it when you put some criteria it behave same as normal query does. Is it possible to create index via pass through query ?

Is there any best way to handle large data table so I can run my query.

Thanks.
 
Do you have indexes defined on the SQL Server table columns used in the query criteria?
 
Do you have indexes defined on the SQL Server table columns used in the query criteria?
No I didn't but I heard that you can not make index through pass through query.
 
The index should be permanently in place, not just added when you query the data.

You can add an index to a column using an SQL command or via SQL Server Management Studio.
 
The index should be permanently in place, not just added when you query the data.

You can add an index to a column using an SQL command or via SQL Server Management Studio.

I tried to create index through Pass through query and got error mesg.

ODBC failed
[SQL sever]cannot create index on view Table1 because the is not schema bound. (#1939).
 
Thank you for link. Actually I have virtual table which is basically view. I have to create index on views. Do you know how to do that
 
No, that is why I posted the link which describes the only way to create an Index on a View with a sample script at the bottom.
 

Users who are viewing this thread

Back
Top Bottom