Email: service@parnassusdata.com 7 x 24 online support!
Purchasing a license to PRM-DUL
Question:
I would like to expedite a license purchase of the full version of PRM-DUL. I have had a catastrophic failure of the filesystems on both my Physical Primary and Standby servers. As well, the restore process for all our backups are missing the necessary archivelogs to complete recovery.
Yes, I did. I was able to retrieve some small subset of the data that I need. Some of our tables use embedded objects - both table and object type, so the output from PRM-DUL is understandably unclear, to me.
Creating Standalone Objects: Example
This code example demonstrates how a standalone object is created:
CREATE TYPE person_t AS OBJECT (name varchar2(30), age number(3)); CREATE TABLE person_tab OF person_t;
Objects that are stored in the object table person_tab
are standalone objects. They have object identifiers and can be referenced. They can be pinned in an OCCI application.
Creating Embedded Objects: Example
This code example demonstrates how an embedded object is created:
CREATE TABLE department (deptno number, deptname varchar2(30), manager person_t);
SQL> CREATE TABLE emp_load
2 (employee_number CHAR(5),
3 employee_dob CHAR(20),
4 employee_last_name CHAR(20),
5 employee_first_name CHAR(15),
6 employee_middle_name CHAR(15),
7 employee_hire_date DATE)
8 ORGANIZATION EXTERNAL
9 (TYPE ORACLE_LOADER
10 DEFAULT DIRECTORY def_dir1
11 ACCESS PARAMETERS
12 (RECORDS DELIMITED BY NEWLINE
13 FIELDS (employee_number CHAR(2),
14 employee_dob CHAR(20),
15 employee_last_name CHAR(18),
16 employee_first_name CHAR(11),
17 employee_middle_name CHAR(11),
18 employee_hire_date CHAR(10) date_format DATE mask "mm/dd/yyyy"
19 )
20 )
21 LOCATION ('info.dat')
22 );
Table created.