Hello.
I'm using an MS Access frontend that looks at a SQL Server database. We have multiple users hitting this database through Citrix. There are two tables, Folders and Documents.
The query in question is:
SELECT Documents.*, Folders.Shelf
FROM Folders
INNER JOIN Documents ON Folders.ID = Documents.Folder_id;
We are getting a time-out. I know there is a nolock feature in SQL but how does that convert to a MS Access query?
Thanks.
Sofia
I'm using an MS Access frontend that looks at a SQL Server database. We have multiple users hitting this database through Citrix. There are two tables, Folders and Documents.
The query in question is:
SELECT Documents.*, Folders.Shelf
FROM Folders
INNER JOIN Documents ON Folders.ID = Documents.Folder_id;
We are getting a time-out. I know there is a nolock feature in SQL but how does that convert to a MS Access query?
Thanks.
Sofia