Re: what happens to postmaster? - Mailing list pgsql-general

From Bill Moran
Subject Re: what happens to postmaster?
Date
Msg-id 20100622142123.9fc78967.wmoran@potentialtech.com
Whole thread Raw
In response to what happens to postmaster?  (zach cruise <zachc1980@gmail.com>)
Responses Re: what happens to postmaster?  (zach cruise <zachc1980@gmail.com>)
List pgsql-general
In response to zach cruise <zachc1980@gmail.com>:

> ...when i am importing a table (from oracle, or updating it), and a
> user queries that same table?

I depends on a lot of information you haven't provided ... Is the
update inside a transaction?  Have you locked the table?

The real answer is: whatever you want to happen.  Depending on how you
set up the import, you have control over how others can interact with
the table while the import is running.

Some examples:
* Grab an access exclusive lock on the table, nobody else will be able
  to access it until you're done.
* Grab an exclusive lock on the table, others will be able to read, but not
  write to it until you're done.

Some documentation to read up on:
http://www.postgresql.org/docs/8.4/static/explicit-locking.html

> is it ok to be concerned about corruption etc.

You should always be concerned about those things.

--
Bill Moran
http://www.potentialtech.com
http://people.collaborativefusion.com/~wmoran/

pgsql-general by date:

Previous
From: Dann Corbit
Date:
Subject: Re: what happens to postmaster?
Next
From: John R Pierce
Date:
Subject: Re: High Availability with Postgres