Re: Irc channel?? / converting from Oracle - Mailing list pgsql-general

From The Hermit Hacker
Subject Re: Irc channel?? / converting from Oracle
Date
Msg-id Pine.BSF.4.31.0101181452240.745-100000@thelab.hub.org
Whole thread Raw
In response to Irc channel?? / converting from Oracle  ("bmatthewtaylor_Yahoo" <bmatthewtaylor@yahoo.co.uk>)
List pgsql-general

#postgres was a project out of University of California @ Berkeley some 5+
years ago ... as far as I know, its no longer being developed, but I could
be wrong ...

PostgreSQL is based off of that project, and ppl keep mistakenly refer to
it as such, which tends to sadly confuse new ppl :(

on efnet, its #PostgreSQL



On Thu, 18 Jan 2001, bmatthewtaylor_Yahoo wrote:

> I tried using the #postgres channel on efnet (various servers), is that
> channel very active? what times does it get traffic?? I tried sitting there
> the other day and someone (a bot?) was kicking everyone after 1 minute
> idle...?
>
> I'm currently converting a system from Oracle to Postgresql, the original
> design used only simple sequences/triggers (now moved across to sequences in
> pgsql) with the majority of the work in java servlets. (providing web
> interface) seems to be coming together nicely.
>
> few little things I found useful.
> - the syntax below works in Oracle and Postgresql
>
> create table sample(
> attrib1    varchar(20),
> attrib2    numeric,                    --results in default numeric(30,6)
> being generated
> attrib3    numeric(5),                --results in numeric(5,0)
> constraint     some_name_u_choose    primary key(attrib1),
> constraint     some_name_u_choose2    foreign key table_name(attrib_name)
> );
>
> select sysdate from dual;
> in Oracle gets replaced with
> select current_timestamp
> in Postgres. (refer the postgres manual, an excellent document!!!)
>
> select to_char(current_timestamp, 'dd-mm-yyyy');
> formats dates in dd-mm-yyyy format (or use Mon to get Jan, Feb etc)
>
> Q: does anyone know where the standard syntax for this is defined? is this a
> SQL92 standard? (I've previously picked this up from my Oracle manuals)
>
>
> I'm looking at using asp, since a number of colleagues have mentioned they
> find signicicent reductions in devel time... any comments? (off topic I
> suspect)
>
>
> so far I've had no major problems and been very impressed (installed 7.0.3
> RPM on linux 6.2)
>
>
> Matthew
> (Brisbane Australia)
>
>
> _________________________________________________________
> Do You Yahoo!?
> Get your free @yahoo.com address at http://mail.yahoo.com
>
>

Marc G. Fournier                   ICQ#7615664               IRC Nick: Scrappy
Systems Administrator @ hub.org
primary: scrappy@hub.org           secondary: scrappy@{freebsd|postgresql}.org


pgsql-general by date:

Previous
From: Emmanuel Charpentier
Date:
Subject: Re: RE: Why is there so much MySQL bashing???
Next
From: Patrick Welche
Date:
Subject: Re: Help with query. (*)