Re: createdb argument question

From: Seneca Cunningham <tentra(at)gmail(dot)com>
To: Perry Smith <pedz(at)easesoftware(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: createdb argument question
Date: 2007-10-27 20:02:52
Message-ID: 20071027200252.GC17660@herodotus.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, Oct 27, 2007 at 12:56:37PM -0500, Perry Smith wrote:
> On my Mac systems, this work. On my AIX system it does not. I get:
>
> createdb dog -E utf8
> createdb: too many command-line arguments (first is "utf8")
> Try "createdb --help" for more information.
>
> Has anyone else bumped in to this? Is putting the arguments after
> the database name known to work? Looking at the code, it seems
> rather magical that it works but I just looked at the main routine in
> createdb.c and not the routines it calls.

It's been a while since I've dealt with AIX, but try putting your
options before the option-less arguments. How it works is not magical,
it's just using getopt_long, and some getopts stop checking for options
after the first non-option argument it receives.

--
Seneca
tentra(at)gmail(dot)com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Dennis Brakhane 2007-10-27 21:03:38 How can I easily and effectively support (language) translation of column values?
Previous Message Tom Lane 2007-10-27 19:41:37 Re: createdb argument question