From: | "Indira Muthuswamy" <indumuthu(at)gmail(dot)com> |
---|---|
To: | "Jim C(dot) Nasby" <jim(at)nasby(dot)net> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: [HACKERS] Bug? |
Date: | 2006-10-19 06:58:58 |
Message-ID: | e1a645540610182358n3468d7bv9f152a49c7e650@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-sql |
Then how do we clear the values of a serial column(is it done only by
dropping the column?)?
Regards,
M.Indira
On 10/19/06, Jim C. Nasby <jim(at)nasby(dot)net> wrote:
>
> Moving to -sql.
>
> On Wed, Oct 18, 2006 at 06:53:46PM +0530, Indira Muthuswamy wrote:
> > Hai,
> >
> > I have encountered a problem with PostgreSQL.I have created a table
> > 'tab1' with a column 'a' with serial type.I entered 20 records into the
> > table.So the query
> > select max(a) from tab1;
> > returned 20.When I tried the same query after the command
> > truncate table tab1;
> > I found that the output of the first query as
> >
> > max
> > -----
> >
> > (1 row)
> > When I tried to insert a new row into the table tab1 I found that the
> > value at column a incremented to the value 21.
> > But I heard from my friends that the value of the serial column gets
> > decremented whenever we issue the 'truncate table' command (in MS SQL
> > SERVER).Is the concept same with PostgreSQL or not?Can anyone clarify me
> on
> > this?
>
> Your friends are mistaken. TRUNCATE does nothing to affect sequences.
> --
> Jim Nasby jim(at)nasby(dot)net
> EnterpriseDB http://enterprisedb.com 512.569.9461 (cell)
>
From | Date | Subject | |
---|---|---|---|
Next Message | Gurjeet Singh | 2006-10-19 08:31:17 | Re: New CRC algorithm: Slicing by 8 |
Previous Message | Robert Treat | 2006-10-19 01:27:57 | Re: bug or feature, || -operator and NULLs |
From | Date | Subject | |
---|---|---|---|
Next Message | Mezei Zoltán | 2006-10-19 11:51:55 | Grouping by day, limiting amounts |
Previous Message | Robert Treat | 2006-10-19 01:57:43 | Re: Any documatation about porting from Oracle to PostgreSQL |