Defining external tables
To define an external table, you use SQL statements to describe the data file, define the table, and then specify the data to load or unload.
About this task
- CREATE EXTERNAL TABLE to describe the data file to load or unload
- CREATE TABLE to define the table to load
- INSERT...SELECT to load and unload
The following steps outline the load process:
Procedure
Results
When you load data into the database, the FROM table portion of the SELECT clause is the external table that the CREATE EXTERNAL statement defined. When you unload data to an external file, the SELECT clause controls the retrieval of the data from the database.
Unlike a TEMP table, the external table has a definition that remains in the catalog until it is dropped. When you create an external table you can save the external description of the data for reuse. This action is particularly helpful when you unload a table into the HCL® OneDB® internal data representation because you can later use the same external table description to reload that data.
On Windows™ systems, if you use the DB-Access utility or the dbexport utility to unload a database table into a file and then plan to use the file as an external table datafile, you must define RECORDEND as '\012' in the CREATE EXTERNAL TABLE statement.
- The description of the fields in the external data.
- The DATAFILES clause.This clause specifies:
- Whether the data file is located on disk or a named pipe.
- The path name of the file.
- The FORMAT clause.
This clause specifies the type of data formatting in the external data file. The database server converts external data from several data formats, including delimited and fixed ASCII, and HCL OneDB internal.
- Any global parameters that affect the format of the data.
If you map the external table directly into the internal database table in delimited format, you can use the CREATE EXTERNAL TABLE statement to define the columns and add the clause SAMEAS internal-table instead of enumerating the columns explicitly.