From: | The Hermit Hacker <scrappy(at)hub(dot)org> |
---|---|
To: | bmatthewtaylor_Yahoo <bmatthewtaylor(at)yahoo(dot)co(dot)uk> |
Cc: | <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Irc channel?? / converting from Oracle |
Date: | 2001-01-18 18:58:05 |
Message-ID: | Pine.BSF.4.31.0101181452240.745-100000@thelab.hub.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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(at)hub(dot)org secondary: scrappy(at){freebsd|postgresql}.org
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2001-01-18 19:02:57 | Re: How do I import table information? |
Previous Message | Mikheev, Vadim | 2001-01-18 18:56:38 | RE: Troubles with performances |