Tagged Questions

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
1answer
247 views

Access linked table to SQL Server: TinyInt incorrect mapping

I got a SQL Server PriceLists table: CREATE TABLE [dbo].[PriceLists]( [PriceListId] [tinyint] IDENTITY(1,1) NOT NULL, [PLName] [varchar](20) NULL, CONSTRAINT [PK_PriceLists] PRIMARY KEY ...
1
vote
3answers
715 views

Can I edit AutoNumber Column in Access?

I've lost my data in Access base, and I've manage to bring them back but when I copy the values in the table with the AutoNumber Column it increments the numbers. Is there Any way to change it to int ...
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 ...
1
vote
10answers
5k views

Is Access's AutoNumber (Increment) guaranteed to increment?

For a particular table, I have my ID field set to AutoNumber (Increment). If I add 5 rows to this table in quick succession, is each guaranteed to have a larger ID than the last? For instance, does ...
1
vote
2answers
1k views

changing autonumber field to number datatype

Is there any way to change the autonumber field to a number datatype, when the field is used a primary key and linked to other tables?
0
votes
3answers
25 views

New column can not be added to Access database

I have an Access database table with approximately 4 million rows. What i want to do this to add a column(field) with the type of autonumber using MS Access Design View. But when i tried to this, ...
0
votes
2answers
135 views

get autoNumber value from database

The code is below. in my code I updating existing row(from existing table) that the program get all the updated values from textBoxes. there is at the end(the last column)of the table autoNumber field ...
0
votes
2answers
253 views

Access & SQL-Server: Resetting Autonumber field with table wipe

I am trying to keep a copy of an activity table synchronized between a SQL Server Express table and the production Access version. In other tables, I am able to wipe the contents of the SQL Server ...
0
votes
3answers
124 views

Are there issues with tables using an autonumber as a primary key in a back-end ms access db?

I inherited an MS Access database at my office that is heavily used by several people over the network. This causes many issues with data collisions and locks. I want to split the db so that each ...
0
votes
1answer
438 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 ...
0
votes
3answers
2k views

Get Autonumber from newly inserted record in Access 2007 using Enterprise Library 4.1

It's been ages since I last used Access as a back end but I'm being forced to. I'm using Enterprise Library 4.1, the Data Access Application Block.. with .NET 3.5 and I wanted to know the best way ...
0
votes
3answers
552 views

Access Insert Query

I am using C# to write/read to an Access 2007 Database. The table is ID - AutoNumber [pkey] Fname - Text Lname - Text Address - Text The query string I Use is "Insert into TblMain ...
0
votes
3answers
1k views

Inserting into a Access DB with an AutoNumber PK and getting an Insert syntax error

I am trying to insert into a access db and the PK is an autonumber that is generated by the DB. I am getting a syntax error for the insert statement and dont know why. If possible I would like to ...
-1
votes
1answer
332 views

Access VBA: how to get auto numbering on continuous form records

I have a form of view type "continuous forms" that is returning records based on a query, and I want the records to have a number label like 1, 2, 3.. in the order listed: Is there any way to ...