| From: | David Blomstrom <david(dot)blomstrom(at)gmail(dot)com> |
|---|---|
| To: | Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com> |
| Cc: | Rob Sargent <robjsargent(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org |
| Subject: | Re: Recursive Arrays 101 |
| Date: | 2015-10-26 22:18:11 |
| Message-ID: | CAA54Z0iEYyNywi_6i+etVnUP4ieYo_X0oav9v9JKsNhA98ORtQ@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
I pasted this into the shell...
CREATE ROLE david
LOGIN
CREATEDB;
CREATE DATABASE GeoZoo2
OWNER david;
and I did it again, replacing LOGIN with my password, but when I refresh
pgAdmin III, there are no new databases.
And when I paste this in, it doesn't create a table...
CREATE TABLE public.gz_life_mammals2
(
id int PRIMARY KEY,
taxon text UNIQUE NOT NULL,
parent text NOT NULL,
slug text,
name_common text,
plural text,
extinct smallint NOT NULL,
rank smallint NOT NULL,
key smallint NOT NULL
);
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Adrian Klaver | 2015-10-26 22:23:00 | Re: Recursive Arrays 101 |
| Previous Message | Adrian Klaver | 2015-10-26 22:17:31 | Re: Importing CSV File |