Plan 9 from Bell Labs’s /usr/web/sources/contrib/lucio/pub/openldap/servers/slapd/back-sql/rdbms_depend/oracle/testdb_data.sql

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


insert into institutes (id,name) values (institute_ids.nextval,'example');

insert into persons (id,name,surname,password) values (person_ids.nextval,'Mitya','Kovalev','mit');

insert into persons (id,name,surname) values (person_ids.nextval,'Torvlobnor','Puzdoy');

insert into persons (id,name,surname) values (person_ids.nextval,'Akakiy','Zinberstein');


insert into phones (id,phone,pers_id) values (phone_ids.nextval,'332-2334',1);

insert into phones (id,phone,pers_id) values (phone_ids.nextval,'222-3234',1);

insert into phones (id,phone,pers_id) values (phone_ids.nextval,'545-4563',2);


insert into documents (id,abstract,title) values (document_ids.nextval,'abstract1','book1');

insert into documents (id,abstract,title) values (document_ids.nextval,'abstract2','book2');


insert into authors_docs (pers_id,doc_id) values (1,1);

insert into authors_docs (pers_id,doc_id) values (1,2);

insert into authors_docs (pers_id,doc_id) values (2,1);


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.