Because new keywords have been added since the original manuals were written, some of
the examples may not work any longer, such as this:
(in the files known to me as userguide.ps or admin.html)
> This query lists all binary operators.
>
> SELECT o.oprname AS binary_op,
>
I am wanting to make a nightly dump/backup of our database in case
something happens to it. I'll probably run the backup right before I
vacuum each night.
Is their a command I can type that will dump the entire database, complete
with relations and data, so that if something did happen to it, It
>Hi, I have been checking out the PostgreSQl project and I should say I'm
>surprised the incredible work developers and others have done. Now I
>would like to know if there is some document which can light me to
>evalute the capacity of PostgreSQL.
You can find a really up-to-date comprehensive
Hi, I have been checking out the PostgreSQl project and I should say I'm
surprised the incredible work developers and others have done. Now I
would like to know if there is some document which can light me to
evalute the capacity of PostgreSQL.
I got a friend who should start an information syste
Hi all,
PostgreSQL gives me a strange message when I try to create a table
with a NOT NULL column.
drop table prova;
DROP
create table prova(
campo1 INTEGER
);
CREATE
drop table prova;
DROP
create table prova(
campo1 INTEGER NOT NULL
);
NOTICE:
Hi,
I have :
- a table with more than 2.000.000 records. It looks like this :
+--+--+-
--+
| Field| Type
|Length |
+--+--