Re: Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)

From: Raymond O'Donnell <rod(at)iol(dot)ie>
To: sachin kotwal <kotsachin(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)
Date: 2013-06-27 11:56:45
Message-ID: 51CC287D.6040805@iol.ie
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 27/06/2013 12:51, sachin kotwal wrote:
> I have done some more try as follows:
>
> #select timestamp(current_date);
> ERROR: syntax error at or near "current_date" at character 18
> STATEMENT: select timestamp(current_date);
> ERROR: syntax error at or near "current_date"
> LINE 1: select timestamp(current_date);
> ======================================================

If you're trying to convert a string to a timestamp as in your first
email, you probably want to_timestamp():

http://www.postgresql.org/docs/9.2/static/functions-formatting.html

Otherwise, current_timestamp and friends produce the current date & time:

http://www.postgresql.org/docs/9.2/static/functions-datetime.html

HTH,

Ray.

>
> #SELECT TIMESTAMP(to_date('2013-01-01','YYYY-MM-DD'));
> ERROR: syntax error at or near "to_date" at character 18
> STATEMENT: SELECT TIMESTAMP(to_date('2013-01-01','YYYY-MM-DD'));
> ERROR: syntax error at or near "to_date"
> LINE 1: SELECT TIMESTAMP(to_date('2013-01-01','YYYY-MM-DD'));
> ======================================================
>
> select timestamp(current_date,current_time);
> ERROR: syntax error at or near "current_date" at character 18
> STATEMENT: select timestamp(current_date,current_time);
> ERROR: syntax error at or near "current_date"
> LINE 1: select timestamp(current_date,current_time);
> ======================================================
>
> #SELECT TIMESTAMP(to_date('2013-01-01','YYYY-MM-DD'),'17:15:43'::time);
> ERROR: syntax error at or near "to_date" at character 18
> STATEMENT: SELECT
> TIMESTAMP(to_date('2013-01-01','YYYY-MM-DD'),'17:15:43'::time);
> ERROR: syntax error at or near "to_date"
> LINE 1: SELECT TIMESTAMP(to_date('2013-01-01','YYYY-MM-DD'),'17:15:4...
>
>
>
> --
> View this message in context: http://postgresql.1045698.n5.nabble.com/Migration-from-DB2-to-PostgreSQL-TIMESTAMP-arg1-arg1-tp5761389p5761390.html
> Sent from the PostgreSQL - general mailing list archive at Nabble.com.
>
>

--
Raymond O'Donnell :: Galway :: Ireland
rod(at)iol(dot)ie

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sandro Santilli 2013-06-27 11:58:16 Triggers NOT running as table owner
Previous Message sachin kotwal 2013-06-27 11:51:16 Re: Migration from DB2 to PostgreSQL-TIMESTAMP(arg1,arg1)