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 ...
2
votes
3answers
50 views

how to turn off autonumber in sql?

I am having a dilemma. I have a table with a column called ID and it is the primary key. It is in automated increments so 1, 2, 3, and so forth and the table is 1-8. A former programmer deleted row ...
1
vote
2answers
90 views

Equivalent of SET IDENTITY_INSERT OFF in Access

As the title suggests, is there any way of turning off an autonumber field in Access to allow me to insert a row with an id of my choosing, such as you would do with SET IDENTITY_INSERT OFF in SQL ...
1
vote
1answer
101 views

How to retain the AutoNumber of a Primary Key when executing a query in MS Access?

I am trying to do something like the following in a query: Dim rs As RecordSet Dim NewPrimaryKey as Long Set rs = Currentdb.OpenRecordset("SELECT * FROM MyTable WHERE MyPrimaryKey Is Null;") With ...
1
vote
3answers
5k views

Using Autonumbering in Access - INSERT statements

I'm having trouble running an INSERT statement where there's an autonumber as the PK field. I have an Auto-incrementing long as the Primary Key, and then 4 fields of type double; and yet Access (using ...
0
votes
1answer
436 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 ...