File: testdb_drop.sql

package info (click to toggle)
openldap 2.6.10%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,080 kB
  • sloc: ansic: 328,961; sh: 51,256; cpp: 6,011; makefile: 3,320; sql: 1,714; perl: 455; python: 184; tcl: 45
file content (25 lines) | stat: -rw-r--r-- 698 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
DROP TABLE persons;
DROP TABLE institutes;
DROP TABLE documents;
DROP TABLE authors_docs;
DROP TABLE phones;
DROP SEQUENCE person_ids;
DROP SEQUENCE institute_ids;
DROP SEQUENCE document_ids;
DROP SEQUENCE phone_ids;
DROP PROCEDURE create_person;
DROP PROCEDURE delete_person;
DROP PROCEDURE add_phone;
DROP PROCEDURE delete_phone;
DROP PROCEDURE set_person_name;
DROP PROCEDURE set_org_name;
DROP PROCEDURE set_doc_title;
DROP PROCEDURE set_doc_abstract;
DROP PROCEDURE create_document;
DROP PROCEDURE create_org;
DROP PROCEDURE delete_document;
DROP PROCEDURE delete_org;
DROP PROCEDURE make_doc_link;
DROP PROCEDURE del_doc_link;
DROP PROCEDURE make_author_link;
DROP PROCEDURE del_author_link;