This chapter describes version 1.0 of the Data Loading Format (DLF), which is the standard format for describing translated messages and seed data loaded into the database by the TransX utility.
See Also:
Chapter 14, "Using the TransX Utility"DLF defines a standard format for loading data with the TransX utility. It is intended to supersede loading data with SQL scripts. DLF provides these advantages:
Format validation. Validation reduces errors during the translation and loading processes.
Ease of use. The user does not have to maintain the character encoding of each data file to correspond with the language used in the data file.
DLF is based on the XML 1.0 specification.
Note:
TransX runs as the authenticated user. Be sure to review your data files, and load data files only from a trusted source.This section describes the naming conventions used in this document.
The following naming conventions for elements and attributes are used throughout this specification:
Standard English letters
Lowercase letters only
Hyphen (-) may be used for concatenation
Attribute names must be consistently defined throughout
Industry-standard terminology must be followed wherever possible
Data Loading Format is XML, so it begins with an XML declaration. After the XML declaration comes the DLF document itself, enclosed within the <table>
element. A DLF document is composed of these required sections:
The <lookup-key>
element contains a list of column names that determine whether existing rows in the database are duplicates of the rows in the data set definition included in the <dataset>
element.
The <columns>
element contains metadata about the <dataset>
element such as the names, data types, and attributes of columns.
The <dataset>
element contains a <row>
element for each row, which in turn contains a <col>
element that corresponds to a piece of data that is loaded in a database column. In this way a DLF document looks similar to the familiar tabular format in printing data in the database and allows easy editing.
DLF provides one optional section, which is enclosed within a <translation>
element. This section may precede the required sections.
In addition, DLF provides information about TransX utility processing. Such information includes but is not limited to this:
The <query>
element is used to retrieve the value to be loaded to the column from a SQL query.
The sequence
attribute is used to retrieve the value to be loaded to the column from a sequence object in the database.
The constant
attribute is used to specify a constant value to the column.
The language
attribute is used to specify the language identifier to be loaded to the column.
This section shows the possible structure of a DLF document as a tree. Each element is represented as <element_name>
, where element_name
is the name of an element. Attributes have no markup. Each element and attribute is followed by notation indicating its possible occurrence. Table 15-1 describes the occurrence notation.
Table 15-1 Notation for Occurrence of Attributes and Elements
Symbol | Meaning |
---|---|
1 |
one |
+ |
one or more |
? |
zero or one |
* |
zero or more |
(a|b|c) |
exactly one of a, b, and c |
Example 15-1 shows the tree structure of a DLF document. The elements are described in "Elements in DLF." The attributes are described in "Attributes in DLF."
Example 15-1 DLF Tree Structure
<table>1 | +---- lang? | +---- space? | +---- normalize-langtag? | +---- <translation>? | | | +---- <target>+ | | | | | +---- <language ID> | | | +---- <restype>+ | | | +---- name1 | | | +---- expansion? | +---- <lookup-key>1 | | | +---- <column>* | | | +---- name1 | +---- <columns>1 | | | +---- <column>+ | | | +---- name1 | | | +---- type1 | | | +---- translate? | | | +---- translation-note? | | | +---- constant? | | | +---- language? | | | +---- sequence? | | | +---- virtual? | | | +---- useforupdate? | | | +---- maxsize? | | | +---- size-unit? | | | +---- restype? | | | +---- space? | | | +---- (<query>|<sql>)? | | | +---- text1 | | | +---- <parameter>* | | | +---- id1 | | | +---- (col|constant)1 | | | +---- translate? | | | +---- trans-key? | | | +---- translation-note? | | +---- <dataset>1 | +---- <row>+ | +---- space? | +---- <col>* | +---- space? | +---- name1 | +---- trans-key? | +---- translation-note? | +---- <the text element for the data>
The Extensible Markup Language (XML) declaration starts an XML entity. It indicates the XML version. It can also declare the encoding of the file, as in this example:
<?xml version="1.0" encoding="iso-8859-1" ?>
As in all XML files, the default encoding for a DLF file is assumed to be either 8-bit encoding of Unicode (UTF-8), which is a superset of the 7-bit ASCII character set, or 16-bit encoding of Unicode (UTF-16), which is conceptually 2-byte Universal Character Set (UCS-2) with surrogate pairs for code points above 65,535. Thus, for these character sets, the encoding declaration is not necessary. Furthermore, all XML parsers support these character sets. If the encoding is UTF-16, then the first character of the file must be the Unicode Byte-Order-Mark, #xFEFF, which indicates the endianness of the file.
Other character sets supported by Oracle XML parsers include all Oracle character sets and commonly used Internet Assigned Numbers Authority (IANA) character set and Java encodings. The names of these character sets can be found in the parser documentation. You must declare these with encoding declarations if the document does not have an external source of encoding information such as from the execution environment or the network protocol. Therefore, Oracle recommends that you use a Unicode character encoding so that you can dispense with the encoding declaration. The recommended practice is to encode the document in UTF-8 and use this declaration:
<?xml version="1.0" ?>
XML predefines five entity references, which are listed in Table 15-2. You must use the <
and &
entity references in place of the characters they reference.
The DLF elements shown in Example 15-1 are divided into the categories described in Table 15-3. Attributes are shared among them. The attributes are described in "Attributes in DLF."
Type of Element | Tag |
---|---|
|
|
|
|
|
|
|
|
|
Table 15-10 describes the top-level table element.
Table 15-4 Top-Level Table Element
Tag | Description | Required Attributes | Optional Attributes | Contents |
---|---|---|---|---|
Corresponds to a single table. It encloses all the other elements of the document. |
|
|
The order of the elements within
|
Table 15-5 describes the translation elements.
Table 15-5 Translation Elements
Tag | Description | Required Attributes | Optional Attributes | Contents |
---|---|---|---|---|
Contains generic information pertinent to translation. |
None |
None |
Zero or more |
|
Specifies a language to which this document is translated. |
None |
None |
A language identifier as defined by [IETFRFC1766] |
|
Declares a type of resource. |
|
|
Empty element |
Table 15-6 describes the lookup key elements.
Table 15-6 Lookup Key Elements
Tag | Description | Required Attributes | Optional Attributes | Contents |
---|---|---|---|---|
Contains the |
|
None |
Zero or more |
|
A |
|
None |
Empty element |
Table 15-7 describes the metadata elements.
Tag | Description | Required Attributes | Optional Attributes | Contents |
---|---|---|---|---|
Contains data about the data to be loaded. |
None |
None |
One or more |
|
Specifies a column that corresponds to |
The recommended sequence is |
|
Zero or one |
|
Specifies a SQL query whose result is used to fill in the column to which this element belongs. |
text |
None |
Zero or more |
|
Specifies a SQL statement whose result, if any, is used to fill in the column to which this element belongs. |
text |
None |
Zero or more |
|
Specifies a parameter of a |
If |
|
Empty |
Table 15-8 describes the data elements.
Tag | Description | Required Attributes | Optional Attributes | Contents |
---|---|---|---|---|
Contains data to be loaded into the database. |
None |
None |
One or more |
|
Contains data about the data to be loaded |
None |
None |
Zero or more |
|
Specifies an instance of a piece of data to be loaded to a database column, or for a virtual column, a piece of data to be used to get an actual data to be loaded to a database column. |
|
|
Data for use by applications |
This section lists the various attributes used in the DLF elements. An attribute is never specified more than once for each element. Along with some of the attributes are the Recommended Attribute Values. Values for these attributes are case-sensitive.
Type of Attribute | Attributes |
---|---|
|
|
|
Table 15-10 describes the DLF attributes.
Attribute | Description | Value Description | Default Value | Used by Elements |
---|---|---|---|---|
Specifies the language of the document. |
This is equivalent to the The values of the attribute are language identifiers as defined by [IETFRFC4646]. This attribute does not affect data loading operation in any way. |
None; if absent, |
<table> |
|
Specifies how to normalize the case of language tag. |
" The meanings are:
* lowercase for the 2 letter language code * uppercase for the 2 letter country code * titlecase for the 4 letter script code * lowercase for others
|
none |
<table> |
|
Specifies how white spaces (ASCII spaces, tabs and line-breaks) are treated. |
The value |
|
<table>, <column>, <col> |
|
Specifies the name of an object such as table, column, restype, and so forth. |
String: This is a database table name for the |
Not applicable |
<table>, <column>, <col> |
|
The data type of a column in the data set. This attribute specifies the kind of text contained in the Because implicit data type conversion is provided by XSU and Java Database Connectivity (JDBC), TransX does not do its own parsing based on this type information. It uses this attribute to choose appropriate intermediate data types in Java for columns of |
String: possible values are The lexical representation of a value of number type must be supplied in the SQL language syntax, no matter what the current locale is. The SQL syntax uses no digit grouping separator (usually comma), but uses a dot as the decimal separator (usually dot).For the binary data type, the data value specified in a text field between the TransX uses this attribute for:
|
Not applicable |
<column> |
|
Indicates whether to translate the text of this column or parameter. |
Either |
|
<column>, <parameter> |
|
Specifies a constant value for this column or parameter. |
The value of this column for every row |
Not applicable |
<column>, <parameter> |
|
Specifies language identifier for this column |
Language identifier or a placeholder. "%x" gets the value from the |
Not applicable |
<column> |
|
Specifies a sequence in the database used to fill in the value for this column. |
String: The name of a sequence in the database |
Not applicable |
<column> |
|
Indicates that this column provides data used to construct another piece of data, which in turn is loaded into the database. A virtual column does not exist in the database. It is typically used to provide a value of a parameter in a query. A virtual column cannot be a lookup-key column. A virtual column with a query throws the result away. |
Either |
|
<column> |
|
Indicates whether to use the value of this column for the update when uploading seed data. This attribute has no effect unless TransX is in the mode to update duplicate rows. A virtual column cannot have this attribute set to |
Either |
|
<column> |
|
Specifies the maximum size for the data for this column. |
Numeric value in the unit specified by the |
None |
<column> |
|
Specifies the unit of size specified in the |
Units. Recommended values are For supplemental characters, they take two |
|
<column> |
|
Indicates the type of data contained in this column. |
A resource type. The value must match with the name of a |
None |
<column> |
|
Indicates the maximum size up to which translated strings are allowed to become longer for this type of resource. |
A numeric value in percentage of increase. |
|
<restype> |
|
Specifies a SQL query statement to get a value to put in the column to which the query belongs. |
A SQL statement. Zero or more parameters can be specified with an identifier preceded by a colon. The statement returns a single row of a single value. Any excessive result is discarded. |
Not applicable |
<query> |
|
Specifies a placeholder used in a SQL query statement with parameters. The value of the column specified by the sibling |
String: an identifier that appears in the text attribute of the parent query element. |
Empty string |
<parameter> |
|
Specifies a column to be associated with a placeholder in the query specified by the sibling id attribute. |
String: a column name. The column must be other than the column this attribute is a part of. |
Not applicable |
<parameter> |
|
Specifies a key for translation. |
String: a translation key. The value must be unique in a translation domain. |
Not applicable |
<col>, <parameter> |
|
Specifies notes for translation. |
String: Translation notes. |
Not applicable |
<col>, <column>, <parameter> |
Table 15-11 describes the XML namespace attributes.
Table 15-11 XML Namespace Attributes
Attribute | Description | Value Description | Default Value | Used by Elements |
---|---|---|---|---|
|
Specifies how white space (ASCII spaces, tabs and line-breaks) are treated. |
The value |
|
None |
|
Specifies the language of the content. |
A language tag defined by RFC 4646. |
Not applicable |
|
Example 15-2 shows a minimal DLF document.
Example 15-3 shows a sample DLF document that contains seed data for the CLK_STATUS_L
table.
Example 15-3 Sample DLF Document
<!-- - $Header: $ - - Copyright (c) 2001 Oracle Corporation. All Rights Reserved. - - NAME - status.xml - Seed file for the CLK_STATUS_L table - - DESCRIPTION - This file contains seed data for the Status level table. - - NOTES - - MODIFIED (MM/DD/YY) - dchiba 06/11/01 - Adaption to enhancements of data loading tool - dchiba 05/23/01 - Adaption to generic data loading tool - rbolsius 05/07/01 - Created --> <table name="clk_status_l"> <lookup-key> <!--column name="status_id" /--> <column name="status_code" /> </lookup-key> <columns> <column name="status_id" type="number" sequence="clk_status_seq" useforupdate="no"/> <column name="status_code" type="number" /> <column name="status_name" type="string" translate="yes" /> <column name="status_description" type="string" translate="yes" /> <column name="version_created" type="number" constant="0" /> <column name="version_updated" type="number" constant="0" /> <column name="status_type_code" type="string" virtual="yes" /> <column name="status_type_id" type="number" > <query text="select status_type_id from clk_status_type_l where status_type_code = :1" > <parameter id="1" col="status_type_code" /> </query> </column> </columns> <dataset> <row> <col name="status_code" >100</col> <col name="status_name" trans-key="stts-name-1" >Continue</col> <col name="status_description" trans-key="stts-desc-1" > The client should continue with its request.</col> <col name="status_type_code" >INFO</col> </row> <row> <col name="status_code" >101</col> <col name="status_name" trans-key="stts-name-2" >Switching Protocols</col> <col name="status_description" trans-key="stts-desc-2" > The server understands and is willing to comply with the client's request (via the Upgrade message header field) for a change in the application protocol being used on this connection.</col> <col name="status_type_code" >INFO</col> </row> <row> <col name="status_code" >200</col> <col name="status_name" trans-key="stts-name-3" >OK</col> <col name="status_description" trans-key="stts-desc-3" > The request has succeeded.</col> <col name="status_type_code" >SUCCESS</col> </row> <row> <col name="status_code" >201</col> <col name="status_name" trans-key="stts-name-4" >Created</col> <col name="status_description" trans-key="stts-desc-4" > The request has been fulfilled and resulted in a new resource being created.</col> <col name="status_type_code" >SUCCESS</col> </row> <row> <col name="status_code" >202</col> <col name="status_name" trans-key="stts-name-5" >Accepted</col> <col name="status_description" trans-key="stts-desc-5" > The request has been accepted for processing, but the processing has not been completed.</col> <col name="status_type_code" >SUCCESS</col> </row> <row> <col name="status_code" >203</col> <col name="status_name" trans-key="stts-name-6" >Non-Authoritative Information</col> <col name="status_description" trans-key="stts-desc-6" > The returned metainformation in the entity-header is not the definitive set as available from the origin server, but is gathered from a local or a third-party copy.</col> <col name="status_type_code" >SUCCESS</col> </row> <row> <col name="status_code" >204</col> <col name="status_name" trans-key="stts-name-7" >No Content</col> <col name="status_description" trans-key="stts-desc-7" > The server has fulfilled the request but does not need to return an entity-body, and might want to return updated metainformation.</col> <col name="status_type_code" >SUCCESS</col> </row> <!-- ... --> </dataset> </table>
Example 15-4 shows an example of elements and attributes for localization.
Example 15-4 DLF with Localization
<?xml version="1.0"?> <table name="table_name"> <translation> <target>ar</target> <target>bs</target> <target>es</target> <restype name="alt" expansion="50%"/> <restype name="foo" expansion="50%"/> <restype name="bar" expansion="30%"/> </translation> <lookup-key><column name="resid" /></lookup-key> <columns> <column name="resid" type="number" sequence="seq_foo" useforupdate="no"/> <column name="image" type="binary"/> <column name="alt_text" type="string" translate="yes" maxsize="30" size-unit="byte" restype="alt"/> </columns> <dataset> <col name="image">foo1.gif</col> <col name="alt_text">Hello world</col> </dataset> </table>
See these references for further information:
[IETFRFC4646] Tags for the Identification of Languages http://www.ietf.org/rfc/rfc4646