Tagged Questions
4
votes
2answers
3k views
How to get the next identity number used in SQL 2005 and ASP?
I was previously getting the next available autonumber used in Access by doing a simple query like so:
SELECT RecordNumber, Info FROM myTABLE WHERE 0=1
This way I could create a variable to hold ...
0
votes
1answer
437 views
Keep value of autonumber column when importing into Microsoft Access database
What I try is to import several tables programmatically from Microsoft SQL Server to Microsoft Access.
Each SQL Server table has an identity column, and the corresponding Access tables, an autonumber ...