Thread: [NOVICE] installation question
hi, i am a novice user running Red Hat Linux Server 6. what files do i need to download to install PostGreSQL? vipin
On Sun, Apr 09, 2000 at 11:43:35PM -0400, Vipin Samtani wrote: -> hi, -> i am a novice user running Red Hat Linux Server 6. -> what files do i need to download to install PostGreSQL? -> vipin -> Have you checked to see if there is an RPM package on your RH CD? -- -- C^2 No windows were crashed in the making of this email. Looking for fine software and/or web pages? http://w3.trib.com/~ccurley
Vipin Samtani wrote: > > hi, > i am a novice user running Red Hat Linux Server 6. > what files do i need to download to install PostGreSQL? > vipin ftp://ftp.postgreSQL.org/pub/postgresql-7.0beta5.tar.gz (it's beta, but it's best) Also, no need to blast all the lists with the question. pgsql-general will usually work fine.
Hi, In ORACLE I can perform the following query: SELECT tableA.id, title, qty FROM tableA, (SELECT id, count(*) qty FROM tableB group by id) tableC WHERE tableA.id = tableC.id (+) but in PostgreSQL I get error message. How can I perform it in Postgres? thanks, robert