-
Notifications
You must be signed in to change notification settings - Fork 15
/
install.sql
64 lines (56 loc) · 816 Bytes
/
install.sql
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
/*
*
* NAME
* install.sql
*
* AUTHOR
* Dieter Oberkofler
*
* FUNCTION
* Install the plsql_json objects
*
*/
spool install.log
set define off echo on termout off
-- uninstall all object
@@uninstall.sql
-- install the headers
@@json_clob.pks
show errors
@@jsonkeys.tps
show errors
@@jsonnode.tps
show errors
@@jsonnodes.tps
show errors
@@jsonvalue.tps
show errors
@@jsonobject.tps
show errors
@@jsonarray.tps
show errors
@@json_utils.pks
show errors
@@json_parser.pks
show errors
@@json_sql.pks
show errors
-- install the bodies
@@json_clob.pkb
show errors
@@jsonnode.tpb
show errors
@@jsonvalue.tpb
show errors
@@jsonobject.tpb
show errors
@@jsonarray.tpb
show errors
@@json_utils.pkb
show errors
@@json_parser.pkb
show errors
@@json_sql.pkb
show errors
spool off
set define on echo off termout on