Groups | Blog | Home
all groups > sql server (alternate) > april 2004 >

sql server (alternate) : primary key autoincrement question.



EricJ
4/6/2004 9:41:21 AM
go to design, select your id make shure that there is a key symbol next to
it (if not right click and set primary key)
this makes it the primary key the identity is something else -->
autoincrementing set it to false and there you go :)

hope it helps

eric

[quoted text, click to view]

joe.celko NO[at]SPAM northface.edu
4/6/2004 10:49:17 AM
[quoted text, click to view]
want this field [sic] to be my primary key. <<

You need to read a book on SQL and RDBMS. Rows are not records; fields
are not columns; tables are not files; there is no sequential access
or ordering in an RDBMS, so "first", "next" and "last" are totally
meaningless.

What does this table model in the real world? Look at the real world
and ask what the key is. It cannot ever be the internal state of the
hardware in which your model resides. You are still thinking that
there are rcord numbers, like a sequential file system in an RDBMS --
you even use the terminology of a sequential file system.

This is totally wrong. There is no "Magic, Universal
EricJ
4/6/2004 11:08:27 AM
these are the ones you are after

[quoted text, click to view]

yust set the identity to false the rest will follow :)

eric

[quoted text, click to view]

jaYPee
4/6/2004 3:13:54 PM
I have a table in my sqlserver 2000 that has a field IDNO. i want this
field to be my primary key. however i don't want this field to use the
autoincrement feature. when i access this table from vb.net and try to
add a record this field is autoincrementing. how can i disable the
autoincrement of this field yet serves this as my primary key?

jaYPee
4/6/2004 5:11:32 PM
Thank you for the reply. however i can't find an autoincrementing
properties under column properties in order to set it to false.

under column properties of IDNO field i have i only see this
properties:

Description
Default Value
Precision
Scale
Identity
Identity Seed
Identity Increment
Is RowGuid
Formula
Collation

i presume before and until now that i have to set the identity to "no"
but still in my vb.net app when i add record the IDNO field still
increment to the last value + 1.

don't know where can i set the autoincrement to "false"

thanks again

On Tue, 6 Apr 2004 09:41:21 +0200, "EricJ"
[quoted text, click to view]
AddThis Social Bookmark Button