Thread: Re: Postgres Windows Native Port

Re: Postgres Windows Native Port

From
Jason Tishler
Date:
Michael,

Please post instead of sending private email.

On Fri, Oct 18, 2002 at 12:08:02PM +0200, Michael Steiner wrote:
> FAQ says: "A native port to MS Win NT/2000/XP is currently being worked
> on."
>
> => When is it expected to be available as a stable release?

I don't know.

> Will it be based on cygwin dll's?

No.

> Will the reliability and performance be comparable to the unix-version?

I don't know.

> Will it be free for commercial use?

I presume so.

Maybe others on the CC'd lists can answer your questions better.

Jason

command

From
Florian Litot
Date:
what is the command to launch a sql script not in psql
thanks


Re: command

From
Andrew Sullivan
Date:
On Tue, Nov 05, 2002 at 03:19:44PM +0100, Florian Litot wrote:
> what is the command to launch a sql script not in psql

Perl?

Or maybe you just want to read SQL into Postgres using the shell.  In
which case, try the -f switch to psql.

A

-- 
----
Andrew Sullivan                         204-4141 Yonge Street
Liberty RMS                           Toronto, Ontario Canada
<andrew@libertyrms.info>                              M2P 2A8                                        +1 416 646 3304
x110



Re: command

From
Darko Prenosil
Date:
Be more specific with your question, what exactly are You trying to do ?
Did you ment PL/PSQL script (stored procedure) , or You are asking about
interfaces to PostgreSQL ?

I suppose the right place to ask questions like that would be
psql-general@postgresql.org, not to hackers.

regards !

On Tuesday 05 November 2002 14:19, Florian Litot wrote:
> what is the command to launch a sql script not in psql
> thanks
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster


Re: command

From
"scott.marlowe"
Date:
On Tue, 5 Nov 2002, Florian Litot wrote:

> what is the command to launch a sql script not in psql
> thanks

without actually being IN psql, you can use it to run one line scripts
like this:

psql dbname -c -- 'single query goes here'

or you can run a large file full of sql queries like this:

psql dbname -f filename.sql