Re: Recursive Arrays 101

Поиск
Список
Период
Сортировка
От David Blomstrom
Тема Re: Recursive Arrays 101
Дата
Msg-id CAA54Z0iEYyNywi_6i+etVnUP4ieYo_X0oav9v9JKsNhA98ORtQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Recursive Arrays 101  (Adrian Klaver <adrian.klaver@aklaver.com>)
Ответы Re: Recursive Arrays 101
Re: Recursive Arrays 101
Re: Recursive Arrays 101
Re: Recursive Arrays 101
Список 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
);

В списке pgsql-general по дате отправления:

Предыдущее
От: Adrian Klaver
Дата:
Сообщение: Re: Importing CSV File
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Recursive Arrays 101