Table of Contents

Search

  1. Preface
  2. Introduction
  3. Accessing Data Archive
  4. Working with Data Archive
  5. Scheduling Jobs
  6. Viewing the Dashboard
  7. Creating Data Archive Projects
  8. Salesforce Archiving
  9. SAP Application Retirement
  10. Creating Retirement Archive Projects
  11. Integrated Validation for Archive and Retirement Projects
  12. Retention Management
  13. External Attachments
  14. Data Archive Restore
  15. Data Discovery Portal
  16. Data Visualization
  17. Oracle E-Business Suite Retirement Reports
  18. JD Edwards Enterprise Retirement Reports
  19. Oracle PeopleSoft Applications Retirement Reports
  20. Smart Partitioning
  21. Smart Partitioning Data Classifications
  22. Smart Partitioning Segmentation Policies
  23. Smart Partitioning Access Policies
  24. Language Settings
  25. Appendix A: Data Vault Datatype Conversion
  26. Appendix B: Special Characters in Data Vault
  27. Appendix C: SAP Application Retirement Supported HR Clusters
  28. Appendix D: Glossary

Metadata File

Metadata File

The metadata file is an XML file that contains the details of the entity that the job creates. The file also contains the structure of the digital records, such as the column and row separators, and the table columns and datatypes.
The following example shows a sample template file for the structured metadata file:
<?xml version="1.0" encoding="UTF-8"?> <ATTACHMENT_DESCRIPTOR> <ENTITY> <APP_NAME>CDR</APP_NAME> <APP_VER>1.10</APP_VER> <MODULE>CDR</MODULE> <ENTITY_NAME>CDR</ENTITY_NAME> <ENTITY_DESC>CDR Records</ENTITY_DESC> </ENTITY> <FILE_DESC> <COLUMN_SEPARATOR>,</COLUMN_SEPARATOR> <ROW_SEPARATOR>%#%#</ROW_SEPARATOR> <DATE_FORMAT>yyyy-MM-dd-HH.mm.ss</DATE_FORMAT> <TABLE NAME="CDR"> <COLUMN PRIMARY_KEY="Y" ORDER="1" DATATYPE="NUMERIC" PRECISION="10">CALL_FROM</COLUMN> <COLUMN ORDER="2" DATATYPE="NUMERIC" PRECISION="10">CALL_TO</COLUMN> <COLUMN ORDER="3" DATATYPE="DATETIME">CALL_DATE</COLUMN> <COLUMN ORDER="4" DATATYPE="VARCHAR" LENGTH="100">LOCATION</COLUMN> <COLUMN ORDER="5" DATATYPE="NUMERIC" PRECISION="10" SCALE="2">DURATION</COLUMN> </TABLE> </FILE_DESC> </ATTACHMENT_DESCRIPTOR>
You can also indicate whether or not a column is nullable. Use the following syntax:
<COLUMN NULLABLE="N"> </COLUMN>
or
<COLUMN NULLABLE="Y"></ COLUMN>
.
For example:
<TABLE NAME="SAMPLE"> <COLUMN PRIMARY_KEY="Y" ORDER="9" DATATYPE="DATETIME" LENGTH="1000" NULLABLE="N">callDate_callTime</COLUMN> </TABLE>

0 COMMENTS

We’d like to hear from you!