ALTER TABLE some table ADD PARTITION partition_name VALUES less than (TO_DATE('variablex', 'DD/MM/YYYY')) ; - Mailing list pgsql-novice

From jagadishk
Subject ALTER TABLE some table ADD PARTITION partition_name VALUES less than (TO_DATE('variablex', 'DD/MM/YYYY')) ;
Date
Msg-id 1398251605404-5801241.post@n5.nabble.com
Whole thread Raw
Responses Re: ALTER TABLE some table ADD PARTITION partition_name VALUES less than (TO_DATE('variablex', 'DD/MM/YYYY')) ;
Re: ALTER TABLE some table ADD PARTITION partition_name VALUES less than (TO_DATE('variablex', 'DD/MM/YYYY')) ;
List pgsql-novice
I am writing a plsql code
DECLARE
    sys_date             character varying(500);
variablex            character varying(500);
sys_date:='select to_char(now,''YYYYMMDD'')';
    execute immediate sys_date into variablex;
    dbms_output.put_line(variablex);
begin
ALTER TABLE some table  ADD PARTITION partition_name VALUES less than
(TO_DATE('variablex', 'DD/MM/YYYY')) ;

I want to add a partition based on sysdate and each day a table would be
created. So i am writing the code as above

It throws an error
ERROR:  date format not recognized
CONTEXT:  SQL statement "ALTER TABLE some table ADD PARTITION partition_name
VALUES less than (TO_DATE('variablex', 'DD/MM/YYYY'))"
edb-spl function inline_code_block line 44 at SQL statement




--
View this message in context:
http://postgresql.1045698.n5.nabble.com/ALTER-TABLE-some-table-ADD-PARTITION-partition-name-VALUES-less-than-TO-DATE-variablex-DD-MM-YYYY-tp5801241.html
Sent from the PostgreSQL - novice mailing list archive at Nabble.com.


pgsql-novice by date:

Previous
From: Andreas Kretschmer
Date:
Subject: Re: PostgreSQL 9.1 not connecting
Next
From: Gerald Cheves
Date:
Subject: Re: PostgreSQL 9.1 not connecting