DBA Data[Home] [Help]

SYS.DBMS_DATA_MINING_TRANSFORM dependencies on DBMS_SQL

Line 20: DESCRIBE_LIST IS dbms_sql.DESC_TAB2;

16: -- used as name (with whitespaces removed) and thus can be larger than 30
17: -- bytes. However when those names get larger than 30 bytes the corresponding
18: -- SELECT cannot be used as an inline view.
19: SUBTYPE
20: DESCRIBE_LIST IS dbms_sql.DESC_TAB2;
21:
22: SUBTYPE
23: DESCRIBE_LIST3 IS dbms_sql.DESC_TAB3;
24:

Line 23: DESCRIBE_LIST3 IS dbms_sql.DESC_TAB3;

19: SUBTYPE
20: DESCRIBE_LIST IS dbms_sql.DESC_TAB2;
21:
22: SUBTYPE
23: DESCRIBE_LIST3 IS dbms_sql.DESC_TAB3;
24:
25: -----------------------------------------------------------------------------
26: -- EXPRESSION RECord type
27: -----------------------------------------------------------------------------

Line 34: lstmt dbms_sql.VARCHAR2A,

30: -- the smallest index and ub is the largest index of the elements of the
31: -- VARCHAR2A array.
32: TYPE
33: EXPRESSION_REC IS RECORD (
34: lstmt dbms_sql.VARCHAR2A,
35: lb BINARY_INTEGER DEFAULT 1,
36: ub BINARY_INTEGER DEFAULT 0);
37:
38: -----------------------------------------------------------------------------

Line 1832: -- describe_columns3 in the dbms_sql package (dbmssql.sql).

1828: -- When the DESCRIBE_LIST3 type is specified for the describe_list
1829: -- parameter, nested types are indicated with the ADT type in the col_type
1830: -- field with the specific nested type indicated in the col_name_type
1831: -- field as a string. This behavior is consistent with the call to
1832: -- describe_columns3 in the dbms_sql package (dbmssql.sql).
1833: -----------------------------------------------------------------------------
1834: PROCEDURE describe_stack(
1835: xform_list TRANSFORM_LIST,
1836: data_table_name VARCHAR2,