My scenario:
Access 2013 FE > SQL Server 2012 BE > Linked Server To IBM DB2
The FE Needs to be used by multiple people. I'm calling SP's in SQL Server that update the IBM DB2. The only easy way for Access to talk directly to the IBM is to install 'Client Access' on each client, which I don't really want to do, hence I use SQL Server and a DSN Less connection as the bridge.
My Problem:
The front end involves user selecting multiple items, adding them to a SQL Server table and then a SP runs that in turn updates the IBM DB2. However, if multiple users are using the FE, then they will all be adding multiple items to the one table, which I don't want, it needs to be session\client specific.
Is there a way round this?