Hi all. Head hanging a little low, even though system still seems to work
fine. Here is what I did:
- update pg_class set relname = lower(relname);
- update pg_attribute set attname = lower(attname);
- (why did I do that? Following something I read, not really having
problems in the first pl
> I have a database that has four fields -
> Create table dispnote (
> Autoinv int4
> noteby char(8) not null default 'current_user',
> added datetime not null default 'now',
> notes varchar(255),
> constraint dispnotepk primary key (autoinv, added),
> constraint dispnotessms foreign key (auoinv)