Postgres database creation using batch files

Поиск
Список
Период
Сортировка
От PresleyDias
Тема Postgres database creation using batch files
Дата
Msg-id 1321862090073-5009739.post@n5.nabble.com
обсуждение исходный текст
Ответы Re: Postgres database creation using batch files
Список pgsql-admin
i want to create a postgres database using batch file, now the normal way of
doing this is

"C:\Program Files\PostgreSQL\9.0\bin\createdb.exe" -U Myadmin MydatAbseName

this create a database with the default database parameters, but i want to
create a database with the following parameter

   WITH OWNER = Myadmin
   TEMPLATE = template0
   ENCODING = 'SQL_ASCII'
   TABLESPACE = pg_default
   LC_COLLATE = 'C'
   LC_CTYPE = 'C'
   CONNECTION LIMIT = -1;

Please tell me how to create a database with the above parameter using Batch
files.

also how to use a .sql file to do the same, like this "C:\Program
Files\PostgreSQL\9.0\bin\createdb.exe" -U Myadmin -f C:\createDB.sql;

thanks in advanced:)


--
View this message in context:
http://postgresql.1045698.n5.nabble.com/Postgres-database-creation-using-batch-files-tp5009739p5009739.html
Sent from the PostgreSQL - admin mailing list archive at Nabble.com.

В списке pgsql-admin по дате отправления:

Предыдущее
От: Rob Cherry
Дата:
Сообщение: Question on implementing ident auth correctly.
Следующее
От: Jean-Armel Luce
Дата:
Сообщение: Re: rsync and streaming replication