PK
8Aoa, mimetypeapplication/epub+zipPK 8A iTunesMetadata.plistS
This section describes the support methods that Oracle Connect for IMS, VSAM, and Adabas Gateways applies to normalize non-relational data. It includes the following topics:
See Also: Oracle Database Gateway for IMS, VSAM, and Adabas Installation and Configuration Guide for Microsoft Windows or Oracle Database Gateway for IMS, VSAM, and Adabas Installation and Configuration Guide for AIX 5L Based Systems (64-Bit), HP-UX Itanium, Solaris Operating System (SPARC 64-Bit), Linux x86, and Linux x86-64 for information on importing metadata into Oracle Studio for IMS, VSAM, and Adabas Gateways. |
Oracle Connect for IMS, VSAM, and Adabas Gateways exposes a purely relational front end through the HOA API. However, it connects to non-relational data sources, which include non-relational data models. As such, Oracle Connect for IMS, VSAM, and Adabas Gateways provides a logical mapping that exposes the non-relational constructs in a relational manner. The most prevalent problem in this domain is the issue of arrays, which is described in this section.
An array is a group of similar elements of the same size. Arrays contain a series of data elements that are of the same data type, which can be simple or complex (group). A specific element is defined and accessed by its position in the array, which is provided by an index.
Arrays are a convenient way to store a fixed amount of data that is accessed in an unpredictable fashion. They are not efficient, however, when you need to insert or delete individual elements of the array.
Before looking at the different methods of handling arrays, you should understand how metadata is represented in Oracle Studio for IMS, VSAM, and Adabas Gateways.
Figure 3-1 shows an example record with arrays and nested arrays.
When you import this metadata into Oracle Studio for IMS, VSAM, and Adabas Gateways, the import process creates a data dictionary definition that is equivalent to the original structure, usually mapping the fields one to one. The import process also writes all primary and foreign key definitions to the ALL_CONSTRAINTS table.
Oracle Studio for IMS, VSAM, and Adabas Gateways represents the flattened view of the metadata on the table editor's Columns tab, as shown in Figure 3-2.
Figure 3-2 Representation of Metadata on the Columns tab in Oracle Studio for IMS, VSAM, and Adabas Gateways
Table 3-1 describes the different columns shown in Figure 3-2.
The (+) to the left of a column indicates a group field. This type of field usually has a Dimension value. This value is not mandatory, but it optimizes the access to an array. You can click (+) to display the group members. In Figure 3-2, all groups are expanded.
Table 3-1 Metadata Column Tab Definition
Column | Description |
---|---|
Column name |
The name of the column. |
Data type |
The data type of the column. Selecting this field displays a drop-down box listing the possible data types. |
Size |
The size of the column for data types of a non-fixed size. |
Scale |
The information entered in this field depends on the data type: For decimal data types, this is the number of digits to the right of the decimal place. This number must not be greater than the number of digits. The default value is 0. For scaled data types, this is the total number of digits. The number must be negative. |
Dimension |
The maximum number of entries of an array. An array has a dimension other than zero. This value is not mandatory, but it optimizes the access to an array. |
Offset |
Not relevant for arrays. |
Fixed offset |
Not relevant for arrays. |
Primary Key Column |
The column is part of the table's primary key. |
The tree in the Metadata view displays a normalized view of the tables, as shown in Figure 3-3, where STUDENT_BOOK
, STUDENT_COURSE
, and STUDENT_COURSE_ASSIGNMENTS
are virtual views and STUDENT_ST
is a single table, also called sequential view.
Figure 3-3 Normalized View of the Tables in the Metadata View
The following SQL query on the Oracle data dictionary produces the result shown in Example 3-1. In this query, data source
is the name of the data source from which the metadata was created. The result shows the metadata of the original table after virtual arrays were created.
SQL> select TABLE_NAME,COLUMN_NAME,DATA_TYPE from ALL_TAB_COLUMNS@dg4[data_source] where table_name like 'STUDENT%';
Example 3-1 SQL Query Result
TABLE_NAME COLUMN_NAME DATA_TYPE ------------------------------ --------------------------- --------------------- STUDENT ID NUMBER STUDENT FIRST_NAME CHAR STUDENT LAST_NAME CHAR STUDENT DATE_OF_BIRTH CHAR STUDENT NUMOF_COURSES NUMBER STUDENT NUMOF_BOOKS NUMBER STUDENT_BOOK BOOK_ROWNUM NUMBER STUDENT_BOOK ISBN CHAR STUDENT_BOOK RETURN_DATE CHAR STUDENT_COURSE COURSE_ROWNUM NUMBER STUDENT_COURSE COURSE_ID NUMBER STUDENT_COURSE COURSE_TITLE CHAR STUDENT_COURSE INSTRUCTOR_ID NUMBER STUDENT_COURSE NUMOF_ASSIGNMENTS NUMBER STUDENT_COURSE_ASSIGNMENTS COURSE_ROWNUM NUMBER STUDENT_COURSE_ASSIGNMENTS ASSIGNMENTS_ROWNUM NUMBER STUDENT_COURSE_ASSIGNMENTS ASSIGNMENT_TYPE CHAR STUDENT_COURSE_ASSIGNMENTS ASSIGNMENT_TITLE CHAR STUDENT_COURSE_ASSIGNMENTS DUE_DATE CHAR STUDENT_COURSE_ASSIGNMENTS GRADE NUMBER STUDENT_ST __LEVEL VARCHAR2 STUDENT_ST __SEQUENCE NUMBER STUDENT_ST COURSE_ROWNUM NUMBER STUDENT_ST ASSIGNMENTS_ROWNUM NUMBER STUDENT_ST BOOK_ROWNUM NUMBER STUDENT_ST ID NUMBER STUDENT_ST FIRST_NAME CHAR STUDENT_ST LAST_NAME CHAR STUDENT_ST DATE_OF_BIRTH CHAR STUDENT_ST NUMOF_COURSES NUMBER STUDENT_ST NUMOF_BOOKS NUMBER STUDENT_ST COURSE_ID NUMBER STUDENT_ST COURSE_TITLE CHAR STUDENT_ST INSTRUCTOR_ID NUMBER STUDENT_ST NUMOF_ASSIGNMENTS NUMBER STUDENT_ST ASSIGNMENT_TYPE CHAR STUDENT_ST ASSIGNMENT_TITLE CHAR STUDENT_ST DUE_DATE CHAR STUDENT_ST GRADE NUMBER STUDENT_ST ISBN CHAR STUDENT_ST RETURN_DATE CHAR 41 rows selected.
Oracle Studio for IMS, VSAM, and Adabas Gateways lets you handle arrays by using the following methods:
Note: Objects from virtual views and sequential flattening are described by Oracle Gateways as tables. |
See Chapter 4, "Setting the Array Handling Policy" for information on how to define array handling settings.
Exposing arrays as virtual views is a commonly used technique to handle arrays. It generates a virtual view for every array in the parent record that contains all the array members. Virtual views contain primary key fields from the parent to connect the parent and the virtual view. Optionally, they can also contain all fields from the parent table.
During the import process or when you set the virtual array policy on the table level, Oracle Studio for IMS, VSAM, and Adabas Gateways generates virtual views and names them by appending the array name to the parent name. When an array includes another array, the name of the resulting virtual table consists of the parent name, the array name, and the name of the nested array, as follows:
parentName_arrayName_nestedArrayName
For example, a parent table called STUDENT
with an array called COURSE
and a nested array called ASSIGNMENTS
is represented by the virtual view STUDENT_COURSE_ASSIGNMENTS
(see Figure 3-5).
The number of nested-array levels is not limited.
Virtual views include the following:
The array member columns from the original structure.
The fields from the parent's first unique key, or all parent fields, depending on the selection you make during the import process or when setting the virtual array policy on the table level.
If all parent fields are included in the virtual view, the parent's indexes are available in the view definition and can be used for efficient optimization strategies.
Note: Inherited keys lose their uniqueness in the virtual view. |
If the view does not include all parent fields, the primary key fields (if the primary key is not the parent's first unique key).
If selected, a column called <array_name>_ROWNUM
, which identifies the row in the array.
The unique key and <array_name>_ROWNUM
columns are generated automatically. Together, they uniquely identify each row in the virtual view and form a unique key.
Figure 3-4 shows the STUDENT_BOOKS
virtual view with the two array member columns (ISBN
and RETURN_DATE
) and the column that identifies the row in the array (BOOK_ROWNUM
).
Oracle Studio for IMS, VSAM, and Adabas Gateways also maintains primary and foreign key definitions that connect between the parent table and the array tables. This allows graphical tools to easily match parent and array.
When working with virtual views, consider the following limitations:
Virtual views are read-only.
Virtual views do not support arrays within variants that have a selector field.
Including all parent fields in the virtual view greatly reduces the need for performing join operations because this in itself is an implicit join. In general, the query processor can devise efficient access strategies because Oracle Connect for IMS, VSAM, and Adabas Gateways copies all relevant indexes from the parent to the virtual view.
Oracle Studio for IMS, VSAM, and Adabas Gateways indicates virtual views by using a different colored icon in the Metadata view, as shown in Figure 3-5.
Figure 3-5 Display of Virtual Views in Oracle Studio for IMS, VSAM, and Adabas Gateways
Performing a bulk load of complex data from a non-relational system to a relational database requires a carefully thought-out algorithm that keeps I/O operations at a minimum.
In a bulk load scenario, a method such as Virtual Views requires a full scan of the physical file for every single array. An efficient method of performing this task presents a kind of row-wise normalization, called sequential flattening. This method reads all data in the physical file in a single scan.
Sequential flattening replaces arrays in a non-relational system by a sequence of rows. It maps all the record fields of the non-relational file to a single table that contains both parent and child records. In this way, sequential flattening enables the reception of a stream of data by using a single SELECT
statement.
The sequentially flattened view of a complex table is referred to as a single table or sequential view. You can choose to create a sequential view in Oracle Studio for IMS, VSAM, and Adabas Gateways by selecting the Generate sequential view check box during the Metadata Model Selection step of the Metadata Import procedure. The single table is read-only.
See Also: Oracle Database Gateway for IMS, VSAM, and Adabas Installation and Configuration Guide for Microsoft Windows or Oracle Database Gateway for IMS, VSAM, and Adabas Installation and Configuration Guide for AIX 5L Based Systems (64-Bit), HP-UX Itanium, Solaris Operating System (SPARC 64-Bit), Linux x86, and Linux x86-64 for details on importing metadata into Oracle Studio for IMS, VSAM, and Adabas Gateways. |
The flattened table is called <table>_ST
, where <table>
is the name of the parent table and ST
indicates a single table. For example, if a parent table is called STUDENT
, the single table, or sequential view, is called STUDENT_ST
.
The structure of the single table is identical to the original table's structure, except that Oracle Connect for IMS, VSAM, and Adabas Gateways removes all array dimensions and adds some control fields. When reading a record, Oracle Connect for IMS, VSAM, and Adabas Gateways performs a tree traversal of the parent and its array hierarchy. Each record in the resulting recordset deals with a specific array member; other arrays are nulled out.
The sequentially flattened single table includes the following columns:
The parent fields, that is the non-repeating fields.
The array fields for all arrays within the parent.
For each array, an optional column called <array_name>_ROWNUM
, which identifies the row in the array. This column is generated automatically for the array.
The sequentially flattened single table includes a record (row) for each array record.
See Figure 3-1 for an illustration of arrays and nested arrays.
Figure 3-6 shows the metadata that sequential flattening produces for a data source with three arrays (COURSE
, ASSIGNMENTS
, and BOOK
) in the SQL View window. The window presents read-only information about each of the columns in the table.
Figure 3-6 SQL View of the Single Table's Metadata
The following table describes the information presented in this window.
Table 3-2 SQL View Window
Information Type | Description |
---|---|
Name |
The name of the column. |
Data Type |
The data type supported by that column. For example, string or integer. |
Size |
Indicates the maximum size allowable for the data in the column. The size is in standard units for the data type. For example, a string with size 40 can have no more than forty characters. |
Scale |
Indicates the number of digits allowed after the decimal point for a numeric value. |
Precision |
Indicates the total number of digits allowed for a numeric value in the column. If the value has a scale of one or more, then the total number of digits allowed before the decimal point is the precision value minus the scale value. For example, a value with precision 4 and scale 2 can be no larger than 99.99. |
Nullable |
Indicates whether the column can have a null value. If |
Figure 3-7 shows the actual single table after running a SELECT clause. It contains a column for each row in the preceding SQL view.
Figure 3-7 STUDENT_ST with All Parent and Child Records
An SQL describe of this single table produces the following result:
Name Null? Type ----------------------------------------- ------------------ ------------------ __LEVEL NOT NULL VARCHAR2(64) __SEQUENCE NOT NULL NUMBER(11) COURSE_ROWNUM NUMBER(10) ASSIGNMENTS_ROWNUM NUMBER(10) BOOK_ROWNUM NUMBER(10) ID NOT NULL NUMBER(8) FIRST_NAME NOT NULL CHAR(32) LAST_NAME NOT NULL CHAR(32) DATE_OF_BIRTH NOT NULL CHAR(8) NUMOF_COURSES NOT NULL NUMBER(10) NUMOF_BOOKS NOT NULL NUMBER(10) COURSE_ID NUMBER(8) COURSE_TITLE CHAR(48) INSTRUCTOR_ID NUMBER(8) NUMOF_ASSIGNMENTS NUMBER(10) ASSIGNMENT_TYPE CHAR(12) ASSIGNMENT_TITLE CHAR(48) DUE_DATE CHAR(8) GRADE NUMBER(2,1) ISBN CHAR(10) RETURN_DATE CHAR(8)
This table shows all the columns of the single table.
This appendix contains the following sections:
See Also: Oracle Database SQL Reference for detailed descriptions of keywords, parameters, and options and the Adabas documentation for details of executing SQL statements in a transaction. |
With a few exceptions, the gateway provides full support for Oracle DELETE
, INSERT
, SELECT
, and UPDATE
statements.
The gateway does not support Oracle data definition language (DDL) statements. No form of the Oracle ALTER
, CREATE
, DROP
, GRANT
, or TRUNCATE
statements can be used. Instead, for ALTER
, CREATE
, DROP
, and GRANT
statements, use the pass-through feature of the gateway if you need to use DDL statements against the Adabas database.
Note: TRUNCATE cannot be used in a pass-through statement. |
The DELETE
statement is fully supported. However, only Oracle functions supported by Adabas can be used.
The INSERT
statement is fully supported. However, only Oracle functions supported by Adabas can be used.
The SELECT
statement is fully supported, with these exceptions:
CONNECT BY condition
NOWAIT
START WITH condition
WHERE CURRENT OF
All functions are evaluated by the Adabas database after the gateway has converted them to Adabas SQL.
Oracle SQL functions with no equivalent function in Adabas are not supported in DELETE
, INSERT
, or UPDATE
statements, but are evaluated by the Oracle Database if the statement is a SELECT
statement. That is, the Oracle Database performs post-processing of SELECT
statements sent to the gateway.
If an unsupported function is used in a DELETE
, INSERT
, or UPDATE
, statement, the following Oracle error occurs:
ORA-02070: database db_link_name does not support function in this context
The gateway translates the following Oracle Database functions in SQL statements to their equivalent Adabas functions:
The following table specifies the comparison operators.
Oracle | Adabas |
---|---|
= | = |
> | > |
< | < |
>= | >= |
<= | <= |
<>, !=, ^= | <>, != |
IS NOT NULL | IS NOT NULL |
IS NULL | IS NULL |
The following table specifies the group functions.
Oracle | Adabas |
---|---|
AVG | AVG |
COUNT | COUNT |
MAX | MAX |
MIN | MIN |
SUM | SUM |
The following table specifies the string functions.
Oracle | Adabas |
---|---|
|| | + (expression1 + expression2) |
ASCII | ASCII |
CHR | CHAR |
INSTR | CHARINDEX |
LENGTH | CHAR_LENGTH |
LOWER | LOWER |
SUBSTR (second argument cannot be a negative number) | SUBSTRING |
UPPER | UPPER |
The following table specifies the other functions.
Oracle | Adabas |
---|---|
ABS | ABS |
CEIL | CEILING |
COS | COS |
EXP | EXP |
FLOOR | FLOOR |
LN | LOG |
LOG | LOG10 |
MOD | % |
NVL | IS NULL |
POWER | POWER |
ROUND | ROUND |
SIN | SIN |
SQRT | SQRT |
TAN | TAN |
User's Guide
11g Release 2 (11.2)
E12073-01
July 2009
Oracle Database Gateway for VSAM User's Guide, 11g Release 2 (11.2)
E12073-01
Copyright © 2008, 2009, Oracle and/or its affiliates. All rights reserved.
Primary Author: Jeanne Wiegelmann
Contributing Author: Maitreyee Chaliha, Sami Zeitoun, Oussama Mkaabal
Contributor: Vira Goorah, Peter Wong
This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited.
The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing.
If this software or related documentation is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable:
U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007). Oracle USA, Inc., 500 Oracle Parkway, Redwood City, CA 94065.
This software is developed for general use in a variety of information management applications. It is not developed or intended for use in any inherently dangerous applications, including applications which may create a risk of personal injury. If you use this software in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure the safe use of this software. Oracle Corporation and its affiliates disclaim any liability for any damages caused by use of this software in dangerous applications.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.
This software and documentation may provide access to or information on content, products, and services from third parties. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to third-party content, products, and services. Oracle Corporation and its affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of third-party content, products, or services.
The Oracle Database Gateway for Adabas translates a query that refers to an Oracle Database data dictionary table into a query that retrieves the data from a Adabas data dictionary. You perform queries on data dictionary tables over the database link in the same way you query data dictionary tables in the Oracle Database. The gateway data dictionary is similar to the Oracle Database data dictionary in appearance and use.
This appendix contains the following sections:
Data dictionary information is stored in the gateway's advanced data dictionary (ADD). The views and tables that the gateway supports provide information on the following:
The tables existing in the data source
The columns for each table
The primary key for each table
The foreign keys for each table
Which primary key each foreign key references
The existing users and indexes
The following topics describe the Oracle Database Gateway for Adabas data dictionary support.
Accessing an ADD record definition is identical to accessing a data dictionary table or view definition on an Oracle database. You issue a SQL SELECT
statement specifying a database link. The Oracle Database data dictionary view and column names are used to access the gateway data dictionary. Synonyms of supported views are also acceptable. For example, the following statement queries the data dictionary table ALL_TABLES
:
SQL> SELECT * FROM ALL_TABLES@VSAM;
When a data dictionary access query is issued, the gateway:
Maps the requested table, view, or synonym to one or more ADD names.
Processes the query within the gateway.
May convert the retrieved data to give it the appearance of the Oracle Database data dictionary table.
Passes the data dictionary information to the Oracle Database.
The gateway supports the following views and tables:
ALL_CATALOG
ALL_CONS_COLUMNS
ALL_IND_COLUMNS
ALL_OBJECTS
ALL_TAB_COMMENTS
ALL_USERS
DBA_CATALOG
DBA_OBJECTS
DICTIONARY
USER_CATALOG
USER_CONS_COLUMNS
USER_IND_COLUMNS
USER_OBJECTS
USER_TAB_COMMENTS
USER_USERS
ALL_COL_COMMENTS
ALL_CONSTRAINTS
ALL_INDEXES
ALL_TAB_COLUMNS
ALL_TABLES
ALL_VIEWS
DBA_TAB_COLUMNS
DICT_COLUMNS
DUAL
USER_COL_COMMENTS
USER_CONSTRAINTS
USER_INDEXES
USER_TAB_COLUMNS
USER_TABLES
USER_VIEWS
No other Oracle Database data dictionary tables or views are supported. If you use an unsupported view, Oracle Database returns a message that no more rows are available.
If you want to select data dictionary views using SELECT
FROM
DBA_
*, first connect as Oracle user SYSTEM
or SYS
. Otherwise, you receive the following error message:
ORA-28506: Parse error in data dictionary translation for %s stored in %s
Queries through the gateway of any data dictionary table or view beginning with ALL_ can returns rows from Adabas even when access privileges for those Adabas objects have not been granted. When querying an Oracle database with the Oracle data dictionary, rows are returned only for those objects you are permitted to access.
There is a minor difference between the gateway data dictionary and a typical Oracle Database data dictionary. The Oracle Database columns that are missing in a Adabas data dictionary table are filled with zeros, spaces, null values, or default values, depending on the column type.
The gateway data dictionary tables and views provide the following information:
Name, datatype, and width of each column.
The contents of columns with fixed values.
In the descriptions that follow, the values in the Null? column may differ from the Oracle Database data dictionary tables and views. Any default value is shown to the right of an item.
Note: In all data dictionary tables, the OWNER column has the valueVSAM . |
Table C-1 describes the ALL_CATALOG table.
Table C-1 ALL_CATALOG
Name | Null? | Type | Value |
---|---|---|---|
|
|
|
|
|
|
|
- |
|
- |
|
" |
Table C-2 describes the ALL_COL_COMMENTS table.
Table C-2 ALL_COL_COMMENTS
Name | Null? | Type | Value |
---|---|---|---|
|
|
|
|
|
|
|
- |
|
|
|
- |
|
|
|
- |
Table C-3 describes the ALL_CONS_COLUMNS table.
Table C-3 ALL_CONS_COLUMNS
Name | Null? | Type | Value |
---|---|---|---|
|
|
|
|
|
|
|
- |
|
|
|
- |
|
- |
|
- |
|
- |
|
- |
Table C-4 describes the ALL_CONSTRAINTS table.
Table C-4 ALL_CONSTRAINTS
Name | Null? | Type | Value |
---|---|---|---|
|
|
|
|
|
|
|
- |
|
- |
|
" |
|
|
|
- |
|
|
|
- |
|
- |
|
|
|
- |
|
- |
|
- |
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
- |
|
|
Table C-5 describes the ALL_IND_COLUMNS table.
Table C-5 ALL_IND_COLUMNS
Name | Null? | Type | Value |
---|---|---|---|
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
- |
|
- |
|
|
|
- |
|
|
|
- |
|
- |
|
|
Table C-6 describes the ALL_INDEXES table.
Table C-6 ALL_INDEXES
Name | Null? | Type | Value |
---|---|---|---|
|
|
|
|
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
" |
|
- |
|
" |
|
|
|
- |
|
|
|
0 |
|
|
|
- |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
0 |
|
|
|
|
|
|
|
- |
|
|
|
|
|
|
|
|
|
- |
|
- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
|
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
Table C-7 describes the ALL_OBJECTS table.
Table C-7 ALL_OBJECTS
Name | Null? | Type | Value |
---|---|---|---|
|
- |
|
|
|
- |
|
- |
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
" |
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
|
Table C-8 describes the ALL_TAB_COLUMNS table.
Table C-8 ALL_TAB_COLUMNS
Name | Null? | Type | Value |
---|---|---|---|
|
|
|
|
|
|
|
- |
|
|
|
- |
|
- |
|
- |
|
|
|
- |
|
|
|
- |
|
|
|
- |
|
- |
|
- |
|
- |
|
- |
|
- |
|
" |
|
|
|
- |
|
|
|
|
|
|
|
- |
|