Creating index on different tablespace and its temp files

Поиск
Список
Период
Сортировка
От Marcin Mirosław
Тема Creating index on different tablespace and its temp files
Дата
Msg-id 4CB2C113.3060700@mejor.pl
обсуждение исходный текст
Ответы Re: Creating index on different tablespace and its temp files
Список pgsql-novice
Hello!
I've got two additional tablespaces, let's call them tb_1 and tb_2.
Default tablespace for databse is tb_1, and all objects inside the one
are in tablespace tb_1.
I've start to create index with tablespace tb_2:
'
CREATE INDEX "idx.XX"
   ON tableX (flow_start ASC NULLS FIRST)
  WITH (FILLFACTOR=100)
  TABLESPACE tb_1;
'
and i noticed that temporary files for new index are creating in tb_1
not tb_2. Let's imagine that tb_2 could be on diffrent hdd, creating
files in tb_2 should be faster because:
- there would bo no need to copy all index (after succesfull creating)
from tb_1 to tb_2
- reading data from disk is faster than reading and writting to the same hdd

I'm wondering what was the reasons to make "create index tablespace ..."
working in this way.
Thanks for reply.
[postgresql-9.0.1]

Regards,
Marcin

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

Предыдущее
От: Lukasz Brodziak
Дата:
Сообщение: Re: Select statement problem
Следующее
От: Krzysztof Hoffmann
Дата:
Сообщение: Re: UPGRADE TO V9