From: | Casey Allen Shobe <cshobe(at)softhome(dot)net> |
---|---|
To: | Devrim GUNDUZ <devrim(at)gunduz(dot)org> |
Cc: | PostgreSQL Mailing Lists-SQL <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: What am I doing wrong in here? |
Date: | 2003-12-27 15:24:03 |
Message-ID: | 200312271024.03665.cshobe@softhome.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Devrim GUNDUZ (Saturday 27 December 2003 10:12)
> create_date timestamp NOT NULL DEFAULT 'NOW',
> change_date timestamp NOT NULL DEFAULT 'NOW',
Do these actually work? I've always used 'default now()'...
> And I get:
>
> NOTICE: CREATE TABLE will create implicit sequence "tdmalias_mid_seq" for
> "serial" column "tdmalias.mid"
If you want to avoid this, then create your sequences manually instead of
using 'serial'.
\echo '* datasources'
create sequence "datasources_id_seq"
start 1
increment 1
maxvalue 9223372036854775807
minvalue 1
cache 1;
comment on sequence "datasources_id_seq" is 'Datasources ID';
create table "datasources" (
"id" integer not null unique default nextval
('datasources_id_seq'),
"name" varchar(32) not null unique,
"type_id" varchar(16) not null,
primary key ("id")
);
comment on table "datasources" is 'Datasource Definition';
This also gives you more flexibility since you can change the parameters of
the sequence (oftentimes I use start 0 minvalue 0, instead), and you can use
a name of your own choice. The settings shown are the default when you use
'serial'.
> ERROR: permission denied for schema pg_catalog
The user you create the user as needs to have createuser permission.
select * from "pg_catalog"."pg_user";
...will show you all that you need to know.
alter user "foo" with createuser;
...(run as an appropriate user) will grant the user such permission.
Vertu sæll,
--
Sigþór Björn Jarðarson (Casey Allen Shobe)
cshobe(at)softhome(dot)net / http://rivyn.livejournal.com
Jabber: sigthor(at)jabber(dot)org; ICQ: 1494523; AIM/Yahoo: SomeLinuxGuy
Free development contributor of:
> KDE toolbar icons
> Kopete user interface, usability, and testing
> X11 Icelandic Dvorak keymaps
> Reporting of over 100 Kopete bugs
From | Date | Subject | |
---|---|---|---|
Next Message | Andy Lewis | 2003-12-27 15:36:44 | Re: Radius of a zip code |
Previous Message | Devrim GUNDUZ | 2003-12-27 15:12:58 | What am I doing wrong in here? |