I'm running into some issues when attempting to design an Access front-end for a SQL server backend.
The problem is with my larger tables (some of them have millions of rows.)
Is there a reason to use a linked table, instead of a query that does "Select * from (table)" ? Because I needed a view to create a linked table since I couldn't link to a table with a long ID column (so the view is not indexed though the table is...I dunno if it still gets the benefits). I've been trying to make a query off of the linked table, joining with like 4-5 others. It's wayyyyy too slow (usually just freezes Access) so I want a query that will filter by date. My query to filter however is also extremely slow, so I want to use a pass-through query. It goes instantly if I query from the original table. So that makes me wonder why have a linked table at all if it's too slow to use? Should I be somehow doing this with pass-through queries?