Обсуждение: Re: reindex script

Поиск
Список
Период
Сортировка

Re: reindex script

От
"Kevin Grittner"
Дата:
Silvio Brandani  wrote:

> Is it possible to use a reindex in a share lock mode ??

Check out the CONCURRENTLY keyword in CREATE INDEX:

http://www.postgresql.org/docs/current/interactive/sql-createindex.html

You could create a duplicate index concurrently, drop the old index,
and rename the new one to the old name.

-Kevin

Re: reindex script

От
Silvio Brandani
Дата:
Kevin Grittner ha scritto:
> Silvio Brandani  wrote:
>
>
>> Is it possible to use a reindex in a share lock mode ??
>>
>
> Check out the CONCURRENTLY keyword in CREATE INDEX:
>
> http://www.postgresql.org/docs/current/interactive/sql-createindex.html
>
> You could create a duplicate index concurrently, drop the old index,
> and rename the new one to the old name.
>
> -Kevin
>
>
we really need to migrate to version postges 9.x .
thanks,

---






Utilizziamo i dati personali che la riguardano esclusivamente per nostre finalità amministrative e contabili, anche
quandoli comunichiamo a terzi. Informazioni dettagliate, anche in ordine al Suo diritto di accesso e agli altri Suoi
diritti,sono riportate alla pagina http://www.savinodelbene.com/privacy.html 
Se avete ricevuto questo messaggio per errore Vi preghiamo di ritornarlo al mittente eliminandolo assieme agli
eventualiallegati, ai sensi art. 616 codice penale http://www.savinodelbene.com/privacy/codice_penale_616.html 
L'Azienda non si assume alcuna responsabilità giuridica qualora pervengano da questo indirizzo messaggi estranei
all'attivitàlavorativa o contrari a norme. 
--

Re: reindex script

От
"Kevin Grittner"
Дата:
Silvio Brandani <silvio.brandani@tech.sdb.it> wrote:
> Kevin Grittner ha scritto:

>>  Check out the CONCURRENTLY keyword in CREATE INDEX:

> we really need to migrate to version postges 9.x .

FWIW, that's been a feature since 8.2.

-Kevin