Re: Building a database from a flat file

Поиск
Список
Период
Сортировка
От Markus Schaber
Тема Re: Building a database from a flat file
Дата
Msg-id 42272D27.4030900@logix-tt.com
обсуждение исходный текст
Ответ на Building a database from a flat file  ("Casey T. Deccio" <ctdecci@sandia.gov>)
Ответы Re: Building a database from a flat file  ("Casey T. Deccio" <ctdecci@sandia.gov>)
Список pgsql-sql
Hi, Casey,

Casey T. Deccio schrieb:

> There is more than one problem with this, but the largest is that I
> would like to perform this whole database rebuild within one
> transaction, so other processes that need to access the database can do
> so without noticing the disturbance.  However, performing this set of
> events (besides populating the temporary table) within a single
> transaction takes a long time--over an hour in some cases.
> 
> What are some suggestions to help improve performance with replacing one
> set of data in a schema with another?

- Create the new date in another schema, and then simply rename those
two schemas for "switch over"

- Create the new data in differently named tables, and then simply
rename all the old and new tables for "switch over".

- Have two different set of tables (maybe two identical schemas), and
let your application work on a set of views. Then you can change the
views via "create or replace view" for switch over.

Markus

-- 
Markus Schaber | Dipl. Informatiker | Software Development GIS

Fight against software patents in EU! http://ffii.org/
http://nosoftwarepatents.org/


В списке pgsql-sql по дате отправления:

Предыдущее
От: Christoph Haller
Дата:
Сообщение: Re: Performance of Views
Следующее
От: Christopher Browne
Дата:
Сообщение: Re: Postgres performance