Re: postgres maintenance db

From: Ondrej Ivanič <ondrej(dot)ivanic(at)gmail(dot)com>
To: hartrc <rhart2(at)mt(dot)gov>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: postgres maintenance db
Date: 2012-07-27 04:06:18
Message-ID: CAM6mieLC0wiXJtPzq5BP7dDyoM8JWyeoiAvnhOsq64CWpDaRBA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

On 27 July 2012 08:07, hartrc <rhart2(at)mt(dot)gov> wrote:
> What is the purpose of the postgres database? I try and drop it and get
> "maintenance database can't be dropped" error.

'postgres' database is something like 'mysql' database in MySQL.
You should be able to see additional database like 'template0' and 'template1'

> Should I create a separate database that has all my application schemas in
> it and let the postgres database be stand-alone, or should I put my
> application schemas inside the postgres database?

You should create your own database (as many as you need) and create
all schemas/tables/... there.
See http://www.postgresql.org/docs/9.1/static/manage-ag-createdb.html
-- you can use "CREATE DATABASE" or createdb command.

> I didn't really want my database to be called postgres, can it be renamed?

That's the system database let it be.

--
Ondrej Ivanic
(ondrej(dot)ivanic(at)gmail(dot)com)

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Chris Angelico 2012-07-27 04:13:31 Re: Replication/cloning: rsync vs modification dates?
Previous Message Craig Ringer 2012-07-27 03:00:21 Re: 答复: [GENERAL] how to calculate or know seq_scan scan how many blocks every time