Reputation: 42753
I have installed On windows 7 postgreSQL 9.2 version.
Now, I need use psql, so where is this terminal?
Can you tell me please how to use for example this comand: psql databasename
?
Where must be type this?
Yes, may be this is dumb question, but...
Upvotes: 0
Views: 30926
Reputation: 560
The easy way to start is
Upvotes: 0
Reputation: 2629
You can follow this instruction
Success. You can now start the database server using:
"postgres" -D "POSTGRESQL_ROOT\data"
or "pg_ctl" -D "POSTGRESQL_ROOT\data" -l logfile start
then, you are good to start the server
To stop the server : simply ctrl + c
You can use pgAdmin tool(http://www.postgresql.org/ftp/pgadmin3/release/v1.8.4/win32/) somewhat similar like SQL Mgt Studio
Upvotes: 6