forked from oleksiivorobiov/oracle_oci_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanytype.sql
421 lines (374 loc) · 10.2 KB
/
anytype.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
Rem
Rem $Header: anytype.sql 31-oct-2006.13:41:17 ytsai Exp $
Rem
Rem anytype.sql
Rem
Rem Copyright (c) 2001, 2006, Oracle. All rights reserved.
Rem
Rem NAME
Rem anytype.sql - Demonstrates Sys.AnyType feature .
Rem
Rem DESCRIPTION
Rem Sys.AnyType stores Type descriptions and this demo
Rem shows its usage .
Rem
Rem NOTES
Rem <other useful comments, qualifications, etc.>
Rem
Rem MODIFIED (MM/DD/YY)
Rem ytsai 10/31/06 - fix connect
Rem sjanardh 08/03/01 - Fix CSID part.
Rem sjanardh 05/02/01 - Merged sjanardh_trans_adddemo
Rem sjanardh 05/02/01 -
Rem sjanardh 04/30/01 - Created
Rem
SET FEEDBACK 1
SET NUMWIDTH 10
SET LINESIZE 80
SET TRIMSPOOL ON
SET TAB OFF
SET PAGESIZE 100
SET ECHO ON
CONNECT system/manager;
DROP USER ANYTYPE_USER CASCADE ;
GRANT CONNECT,RESOURCE,DBA TO ANYTYPE_USER IDENTIFIED BY ANYTYPE_USER ;
CONNECT ANYTYPE_USER/ANYTYPE_USER
SET ECHO ON
SET SERVEROUTPUT ON SIZE 20000
--***********************************************************
-- This demonstrates the usage of Sys.AnyType
--***********************************************************
--Creating types required for the demo.
create type object_type1 as object (
col1 number ,
col2 varchar2(30) ,
col3 clob ,
col4 raw(10)
);
/
create type object_type2 as object (
col1 number ,
col2 blob
);
/
create type object_type3 as object (
col1 char(20),
col2 date
);
/
create type object_type4 as object (
number_col number ,
object_col object_type1
);
/
create type varray_type1 as varray(5) of date ;
/
create type varray_type2 as varray(5) of object_type2 ;
/
create type nstd_type1 as table of number ;
/
create type nstd_type2 as table of object_type4 ;
/
--***********************************************************
--Procedures to display AnyType information.
--***********************************************************
create procedure display_anytype_info(an in sys.anytype) as
rtn number ;
pr pls_integer ;
sc pls_integer ;
ln pls_integer ;
cs pls_integer ;
cf pls_integer ;
sch varchar2(30) ;
tn varchar2(30) ;
vr varchar2(30) ;
cn pls_integer ;
csid pls_integer ;
begin
--Get the character set id of database character set .
select nls_charset_id(value) into csid from nls_database_parameters
where parameter='NLS_CHARACTERSET' ;
rtn := an.GetInfo(pr,sc,ln,cs,cf,sch,tn,vr,cn) ;
dbms_output.put_line('- Precision ' || pr ) ;
dbms_output.put_line('- Scale ' || sc ) ;
dbms_output.put_line('- Length ' || ln ) ;
if (cs is not null ) then
begin
if (cs = csid ) then
dbms_output.put_line('- CSID is same as db charset id' ) ;
else
dbms_output.put_line('- CSID is not same as db charset id') ;
end if ;
end ;
else
dbms_output.put_line('- CSID is null ' ) ;
end if ;
dbms_output.put_line('- CSFRM ' || cf ) ;
dbms_output.put_line('- Schema ' || sch) ;
dbms_output.put_line('- Type name ' || tn ) ;
dbms_output.put_line('- Version ' || vr ) ;
dbms_output.put_line('- Count ' || cn ) ;
end ;
/
create or replace procedure display_attribute_element_info(an1 in sys.anytype) as
an sys.anytype ;
rtn number ;
pos pls_integer ;
pr pls_integer ;
sc pls_integer ;
ln pls_integer ;
cs pls_integer ;
cf pls_integer ;
sch varchar2(20) ;
tn varchar2(20) ;
vr varchar2(30) ;
cn pls_integer ;
name varchar2(30) ;
j number ;
csid pls_integer ;
begin
--Get the character set id of database character set .
select nls_charset_id(value) into csid from nls_database_parameters
where parameter='NLS_CHARACTERSET' ;
--Get the count , number of elements.
rtn := an1.GetInfo(pr,sc,ln,cs,cf,sch,tn,vr,cn) ;
--For nested table type count is null.
if (cn is null ) then
cn := 1 ;
end if ;
for j in 1..cn loop
begin
--Get attribute element information.
rtn := an1.GetAttreleminfo(j,pr,sc,ln,cs,cf,an,name) ;
dbms_output.put_line(' -------------------- ');
dbms_output.put_line(' COLUMN ' || name );
--Attribute is returned as an AnyType in variable an.
--If it is not null then we want to describe it .
if (an is not null) then
dbms_output.put_line(' - ');
dbms_output.put_line(' desc ' || name );
--Display information of attribute
display_anytype_info(an) ;
dbms_output.put_line(' - ');
end if ;
--Rest of the information .
dbms_output.put_line(' Precision ' || pr ) ;
dbms_output.put_line(' Scale ' || sc ) ;
dbms_output.put_line(' Length ' || ln ) ;
if (cs is not null ) then
begin
if (cs = csid ) then
dbms_output.put_line('- CSID is same as db charset id' ) ;
else
dbms_output.put_line('- CSID is not same as db charset id') ;
end if ;
end ;
else
dbms_output.put_line('- CSID is null ' ) ;
end if ;
dbms_output.put_line(' CSFRM ' || cf ) ;
dbms_output.put_line(' -------------------- ');
exception
when others then
dbms_output.put_line(SQLERRM);
end ;
end loop ;
end ;
/
--***********************************************************
-- The following blocks show how to create AnyTypes from
-- from persistent database types .
--***********************************************************
--For object_type1
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE1');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE1');
display_attribute_element_info(any_type1);
end ;
/
--For object_type2
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE2');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE2');
display_attribute_element_info(any_type1);
end ;
/
--For object_type3
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE3');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE3');
display_attribute_element_info(any_type1);
end ;
/
--For object_type4
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE4');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE4');
display_attribute_element_info(any_type1);
end ;
/
--For varray_type1
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','VARRAY_TYPE1');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','VARRAY_TYPE1');
display_attribute_element_info(any_type1);
end ;
/
--For varray_type2
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','VARRAY_TYPE2');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','VARRAY_TYPE2');
display_attribute_element_info(any_type1);
end ;
/
--For nstd_type1
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','NSTD_TYPE1');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','NSTD_TYPE1');
display_attribute_element_info(any_type1);
end ;
/
--For nstd_type1
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','NSTD_TYPE2');
display_anytype_info(any_type1);
end;
/
declare
any_type1 Sys.AnyType ;
begin
any_type1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','NSTD_TYPE2');
display_attribute_element_info(any_type1);
end ;
/
--***********************************************************
-- Create Transient AnyTypes in PL/SQL blocks .
--***********************************************************
--Transient AnytType of Date .
declare
an1 sys.anytype ;
begin
Sys.AnyType.BeginCreate(DBMS_TYPES.TYPECODE_DATE,an1) ;
an1.SetInfo(null,null,null,null,null,null,null);
an1.EndCreate() ;
display_anytype_info(an1);
end ;
/
--Transient AnytType of Varchar.
declare
an1 sys.anytype ;
begin
Sys.AnyType.BeginCreate(DBMS_TYPES.TYPECODE_VARCHAR,an1) ;
an1.SetInfo(null,null,20,null,null,null,null);
an1.EndCreate() ;
display_anytype_info(an1);
end ;
/
--Transient AnytType of Object type.
declare
an2 Sys.AnyType ;
begin
Sys.AnyType.BeginCreate(DBMS_TYPES.TYPECODE_OBJECT,an2) ;
an2.AddAttr('COL1',DBMS_TYPES.TYPECODE_NUMBER,null,null,null,null,null);
an2.AddAttr('COL2',DBMS_TYPES.TYPECODE_CLOB,null,null,null,null,null);
an2.AddAttr('COL3',DBMS_TYPES.TYPECODE_DATE,null,null,null,null,null);
an2.EndCreate() ;
display_anytype_info(an2);
display_attribute_element_info(an2);
end ;
/
--Transient AnytType of Collection type.
declare
an1 Sys.AnyType ;
begin
Sys.AnyType.BeginCreate(DBMS_TYPES.TYPECODE_NAMEDCOLLECTION,an1);
an1.SetInfo(null,null,null,null,null,null,DBMS_TYPES.TYPECODE_RAW,0) ;
an1.EndCreate() ;
display_anytype_info(an1);
end ;
/
--Transient AnytType of Persistent types.
declare
an1 Sys.AnyType ;
an2 Sys.AnyType ;
begin
an1 := Sys.AnyType.GetPersistent('ANYTYPE_USER','OBJECT_TYPE1');
Sys.AnyType.BeginCreate(DBMS_TYPES.TYPECODE_NAMEDCOLLECTION,an2);
an2.SetInfo(null,null,null,null,null,an1,DBMS_TYPES.TYPECODE_OBJECT,0);
an2.EndCreate() ;
display_anytype_info(an2);
end ;
/
--***********************************************************
-- Drop all objects created for the demo.
--***********************************************************
drop type varray_type1 ;
drop type varray_type2 ;
drop type nstd_type1 ;
drop type nstd_type2 ;
drop type object_type4 ;
drop type object_type3 ;
drop type object_type2 ;
drop type object_type1 ;
CONNECT system/manager;
DROP USER ANYTYPE_USER CASCADE ;
set serveroutput off
set echo off