Re: reg:create database

From: "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>
To: sandhya <sandhyar(at)amiindia(dot)co(dot)in>
Cc: Michael Fuhr <mike(at)fuhr(dot)org>, Postgres <pgsql-admin(at)postgresql(dot)org>
Subject: Re: reg:create database
Date: 2006-03-27 11:43:09
Message-ID: 20060327114309.GV80726@pervasive.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Mon, Mar 27, 2006 at 04:57:29PM +0530, sandhya wrote:
> > > In the document they mentioned that . is used as a seperator for a
> > > table/column name...So Is it any way to use dot while creating a
> > > table/database
> >
> > decibel=# create database "dot.test";
> > CREATE DATABASE
> > decibel=# \c "dot.test"
> > You are now connected to database "dot.test".
> > dot.test=#
> >
> > Now, just because you can do this doesn't mean it's a very good idea...
> oh.....ok
> Now, just because you can do this doesn't mean it's a very good idea...
> Why?

Because it's likely to lead to confusion, since SQL uses dots as
seperators between databases, schemas, and objects; ie:
databasename.schemaname.tablename.columname. Granted, PostgreSQL doesn't
(currently) allow you to do per-database specifications, but that could
change. In any case, it's asking for trouble.
--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Peter Eisentraut 2006-03-27 12:33:16 Re: database locale and system locale
Previous Message Andy Shellam 2006-03-27 11:36:16 Re: reg:create database