summaryrefslogtreecommitdiffstats
path: root/Bachelor/Datenbanken 2/Praktikum3/bibdrop.sql
blob: 38d64293d87ae39b1ea4c625a70a76cd85cca65d (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*==============================================================*/
/* Database name:  CONCEPTUALDATAMODEL_1                        */
/* DBMS name:      ORACLE Version 9i                            */
/* Created on:     29.03.2006 09:46:49                          */
/*==============================================================*/


alter table AUDIO
   drop constraint FK_AUDIO_INHERITAN_LEIHOBJE
/


alter table AUSLEIHE
   drop constraint FK_AUSLEIHE_RELATIONS_LEIHOBJE
/


alter table AUSLEIHE
   drop constraint FK_AUSLEIHE_RELATIONS_ENTLEIHE
/


alter table AUTOR_BUCH
   drop constraint FK_AUTOR_BU_AUTOR_BUC_BUCH
/


alter table AUTOR_BUCH
   drop constraint FK_AUTOR_BU_AUTOR_BUC_AUTOR
/


alter table BUCH
   drop constraint FK_BUCH_INHERITAN_LEIHOBJE
/


alter table ZEITSCHRIFT
   drop constraint FK_ZEITSCHR_INHERITAN_LEIHOBJE
/


drop index RELATIONSHIP_4_FK
/


drop index RELATIONSHIP_5_FK
/


drop index AUTOR_BUCH2_FK
/


drop index AUTOR_BUCH_FK
/


drop table AUDIO cascade constraints
/


drop table AUSLEIHE cascade constraints
/


drop table AUTOR cascade constraints
/


drop table AUTOR_BUCH cascade constraints
/


drop table BUCH cascade constraints
/


drop table ENTLEIHER cascade constraints
/


drop table LEIHOBJEKT cascade constraints
/


drop table ZEITSCHRIFT cascade constraints
/