Search Postgresql Archives

Re: Adding Records With SERIAL Primary Key

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, 2005-05-03 at 11:58, Rich Shepard wrote:
>    I may have missed this in the docs; if so, please tell me where to find the
> answer there. If not, I still need to learn how to resolve this situation.
> 
>    The database schema has been designed and the tables are ready to be
> created. Once they exist, I want to load data into the tables in batch mode
> (rather than one at a time, manually). The core table has a SERIAL data type
> field as the primary key. How is this field assigned values? Then, how do I
> load the related tables so they reference the proper records?

The normal way it's added is with a DEFAULT clause.  This means it can
be overridden by inserting it by hand. Changing this to an after trigger
can ensure that it is always inserted no matter what the user app tries
to do.

When loading in data using the copy command, one can set the columns to
be copied, and the system will insert the serial value for you if you
leave that column out of the list.

If your data already has a value assigned, you can load those in, and
then use setval() to set the value of the associated sequence.

---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
      joining column's datatypes do not match

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux