Query regarding

Поиск
Список
Период
Сортировка
От M Tarkeshwar Rao
Тема Query regarding
Дата
Msg-id 1C16813DAFF3E44B939586605D40E9F02420400E@ESESSMB107.ericsson.se
обсуждение исходный текст
Ответы Re: Query regarding  (Guillaume Lelarge <guillaume@lelarge.info>)
Re: Query regarding  (Thomas Kellerer <spam_eater@gmx.net>)
Re: Query regarding  (dinesh kumar <dineshkumar02@gmail.com>)
Список pgsql-general
Hi all,
 
We have started to convert some oracle sql scripts and converting them to postgres, but facing some issues to create table.
 
I have some common doubts in create table script ie.
 
ALTER TABLE employee
DROP PRIMARY KEY CASCADE;
 
DROP employee CASCADE CONSTRAINTS;
 
CREATE TABLE employee
(
  LABEL_IMP  VARCHAR2(50 BYTE)
)
TABLESPACE DATA_TB
PCTUSED    0
PCTFREE    10
INITRANS   1
MAXTRANS   255
STORAGE    (
            INITIAL          5M
            NEXT             5M
            MINEXTENTS       1
            MAXEXTENTS       UNLIMITED
            PCTINCREASE      0
            BUFFER_POOL      DEFAULT
           )
LOGGING
NOCOMPRESS
NOCACHE
NOPARALLEL
MONITORING;
 
 
I am trying to find replacement for above keywords highlighted in BOLD in postgres, but unable to find it on google.
Could you please let us know if these parameter are managed internally in postgres or what are the alternative.
 
Regards,
Tarkeshwar
 

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

Предыдущее
От: Leonardo M. Ramé
Дата:
Сообщение: Re: MinGW-W64 compile error
Следующее
От: Achilleas Mantzios
Дата:
Сообщение: Re: Recursive Arrays 101