view sqlpython/setup_test_db.sql @ 186:e26523dd0aeb

terminator bugs fixed
author catherine@Elli.myhome.westell.com
date Thu, 13 Nov 2008 15:32:50 -0500
parents 6b47784322a5
children
line wrap: on
line source

CREATE USER testdata IDENTIFIED BY testdata;
GRANT connect, resource TO testdata;
CONNECT testdata/testdata@orcl
DROP TABLE species;
CREATE TABLE species (
    id   NUMBER(6,0)  CONSTRAINT xpk_species PRIMARY KEY
                      CONSTRAINT xnn1_species NOT NULL,
    name VARCHAR2(40) CONSTRAINT xnn2_species NOT NULL );

INSERT INTO species VALUES (0, 'turtle');
INSERT INTO species VALUES (1, 'python');
INSERT INTO species VALUES (2, 'parrot');