From: | Carl van Tast <vanTast(dot)no(at)spam(dot)netway(dot)at> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: default value syntax - pg compared to? |
Date: | 2001-03-12 23:34:09 |
Message-ID: | 37mqat0o6n65n1f2lbbg9frd0hftvl39a0@4ax.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Mon, 12 Mar 2001 20:52:02 +0000 (UTC), josh(at)agliodbs(dot)com ("Josh
Berkus") wrote:
>1. Unlike PostgreSQL, MSSQL server will not permit you to override an
>"Identity Value" auto-incrementing field;
That's almost correct. You cannot *update* an identity column, but you
can override it on insert if you use
SET IDENTITY_INSERT tablename ON
create table foo (id integer identity, txt varchar(10))
go
insert into foo (txt) values ('a')
insert into foo (txt) values ('b')
set identity_insert foo on
insert into foo (id, txt) values (10, 'c')
set identity_insert foo off
insert into foo (txt) values ('b')
select * from foo
id txt
----------- ----------
1 a
2 b
10 c
11 d
(4 row(s) affected)
.02 by
Carl van Tast
From | Date | Subject | |
---|---|---|---|
Next Message | Josh Berkus | 2001-03-13 01:06:56 | Cannot declare arrays? |
Previous Message | Tom Lane | 2001-03-12 23:26:19 | Re: Use of the LIMIT clause ? |