Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
10k views

Getting autonumber primary key from MS SQL Server

I am currently working in C#, and I need to insert a new record into one table, get the new primary key value, and then use that as a foreign key reference in inserting several more records. The ...
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
46 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 ...
2
votes
1answer
151 views

Create Duplicate records with autonumber foreign keys

(using SS2008) Within a sql server database, I'd like to copy all the data of one client for a new client. In other words, generate exact duplicates of all records that pertain to client #1, except ...
1
vote
1answer
30 views

mySQL: Physical Sorting

Is there a way that I can sort table rows by a specified column (e.g. username), reassign its it's primary key values and then replace the table content with the sorted values?
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
100 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
137 views

Do #anchors after urls affect ranking in seo?

While programming a new tabs-system in javascript, where each tab is clickable and has its own ancher text on it, it would be easier to make these anchors numbers #1 #2 #2 etx. On the other hand, ...
1
vote
1answer
246 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
2k views

MS Access AutoNumber on Import

Just curious, when I imported data from a spreadsheet with 519 lines into an empty table, why did my autonumber keys start at 56,557,618? How big can this get? I don't want to end up running out of ...
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
1answer
1k views

InfoPath autonumber field

I am designing an infopath (Change Request) form: 1)How can i add a text box that automaticaly increments to the next number when a new form is created (adding a new Change Request form to the form ...
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
130 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
1answer
145 views

Autonumber and datatable with dbnull exception

i was doing some work on a datatable i filled with a oledbdataadapter made from an access database. and i stumbled upon this error: Turns out that my table has this structure: ID --> autonumber(PK) ...
0
votes
2answers
248 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
0answers
239 views

Concurrency violation: the UpdateCommand affected 0 of the expected 1 records with autonumber fields

I am writing a small C# society membership app using Visual Studio 2008, and the new data layer with .Net 3.5, along with SQLite. I used the various wizards to generate my main form, which has a ...
0
votes
2answers
201 views

How to generate an autonumber using jsp?

I want code in jsp or javascript which will generate numbers serially and automatically when ever registered by the user.
0
votes
3answers
131 views

AutoNumbering in Visio and PPT

Is there a way to autonumber when you open up visio or ppt? I need a number to count on the slide in ppt and in a shape in visio. I have tried insert excel that has a macro that will do what I want it ...
0
votes
0answers
534 views

AutoNumeric JQuery Plugin not allowing to insert decimal point once focus loss

I am using jQuery autoNumeric plugin to format number automatically in currency. It's working fine and converts number to currency. But once i loss focus from field and again i go to that field at ...
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
250 views

DB2 unique index and autonumbering

Having gotten an answer to a Java problem I had last week (thanks!), I'm now on to a new problem with DB2... The Java app I'm working on takes data from a web form and puts in in a DB2 file ...
0
votes
2answers
145 views

Specify Serial No. in mysql while function

while ($one = mysql_fetch_array($two)) { <td>Want Serial No Here</td> <td><?=$something['something']?></td> } I want to autonumber Serial No. .. is it possible?
0
votes
2answers
172 views

Order by Total For Sum function used

<? $tablae = mysql_query("SELECT * FROM order_history where (type!='rent_referral' AND type!='rental_balance') AND date>'" . strtotime($time1) . "' AND date<'" . strtotime($time2) . "' ...
0
votes
1answer
180 views

My AutoNumber Code Does Not Work

Can anyone help me here? I am trying to do a user defined autonumber when I click on a button. The code worked fine when the recordset is empty, it give me a 1 on my first record, however, after I ...
0
votes
1answer
435 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
1answer
476 views

resetting “Issue ID” in Sharepoint site

I designed a site in share point. There is a column called "Issue ID (linked to item)" in ALL Issues view. I am using this column to list and identify the items which are created by employees. It ...
0
votes
3answers
712 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 ...
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
550 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 ...
0
votes
1answer
396 views

Getting the ID(Autonumber) after the session saved in nhibernate?

Hi i am inserting a row of data into a table through nhibernate, how to get the Id(auto number)of the last inserted row? please help me...
0
votes
3answers
9k views

Insert rows into Access db from C# using Microsoft.Jet.OLEDB.4.0, autonumber column is set to zero

I'm using C# and Microsoft.Jet.OLEDB.4.0 provider to insert rows into an Access mdb. Yes, I know Access sucks. It's a huge legacy app, and everything else works OK. The table has an autonumber ...
-1
votes
1answer
328 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 ...