views:

18

answers:

1

Is it possible to start postgres process with a user account that has "administrative" privileges? I am on windows XP.

--Error shown is --- (Not really error, it is a security feature)

The server must be started under an unprivileged user ID to prevent
possible system security compromises.  See the documentation for
more information on how to properly start the server.

Current work around is to create normal user and run process under that. What I am looking at is quick way to start database, do some operations and shut it down as part of build process.

A: 
pg_ctl start "args" 

works.

Jayan