I have an Access project that front-ends to a SQL Server database. I have multiple users. Some information I want to store in a temp table so each user sees something different. I can create the temp table (with # as the first character of the name). But I want the temp table to be used in a view so that each user gets a different set of filtered data. I could probably have done this in the days when you could create views right in an Access Project. But now I am stuck. It seems that views in SQL Server do not allow temp tables. They do allow functions but they don’t allow temp tables either. They don’t allow stored procedures which does allow temp tables. Can anyone give me a clue if it is possible to use data in a temp table in a view – somehow?
Thanks.