![]() |
![]() |
|
|
![]() |
![]() |
ALLBASE/ISQL Reference Manual: HP 9000 Computer Systems > Chapter 3 Using ISQL for Database Tasks![]() Unloading and Loading Tables |
|
ISQL provides the following commands for loading and unloading data:
Like the other ISQL commands, these commands cannot be used from within an application program. You can unload all of a table to an output file by specifying a table name, or you can unload selected data by specifying a SELECT statement with the UNLOAD command. Also, the data can be unloaded in sorted order if you use the GROUP BY or ORDER BY clause as part of the SELECT statement. For complete information on the SELECT statement, refer to the ALLBASE/SQL Reference Manual. You specify the format of the output file as either external or internal. You unload a table to an external data file using the external format for the following reasons:
When you use the EXTERNAL option of the UNLOAD command, ISQL creates an external file and a description file. The external file contains the data; the description file describes the location, length, and format of the data in the external file. The external and description files can be read by an editor, an application program, or ISQL (when you use the LOAD command with the EXTERNAL option). Application programs and ISQL use the description file to interpret the format of the data in the external data file.
You can unload data from a table in the following ways:
When you are using prompting mode as shown below, ISQL displays the attributes of each column you are unloading and prompts you to describe how values from this column should appear in the external file.
In the case of LONG columns, you should enter the length of the output device name in response to the prompt for output length. To unload the same file as in the example above, you can also enter the necessary information directly on the command line:
Note that the keywords TO and FROM are necessary in addition to the responses given if you had been prompted. Similarly, you could create a command file containing the following lines:
To execute the command file, use the START command. For example, if the file is named MyFile, issue the following command:
The description file is automatically created and contains a record for each column unloaded. The record describes where and in what format the data exists in the external file. You can use your editor to view this file. The description file has seven columns containing the following information about the external data file:
You may unload the TID (tuple identifier) data by specifying the SELECT statement:
The internal format specified in the following example is understandable only by ALLBASE/SQL. It is faster than the EXTERNAL option, because the data is not converted from internal to ASCII format. Files in internal format are read by ISQL when you use the LOAD command with the INTERNAL option.
You cannot use the INTERNAL option to unload LONG column data. You load data stored in a file into a table by using the LOAD command. The file is a data file in external or internal format. The EXTERNAL option of the LOAD command is used to load external data files into a database table. The external data file can be one of the following:
You can load data into a table in the following ways:
To load the data, which was unloaded with the EXTERNAL option in the previous example, you specify the external data file name, the table where the data is to be loaded, and the description file name in the LOAD FROM EXTERNAL command as follows:
If you want to load data that was not produced with the EXTERNAL option of the UNLOAD command, you need to create the external data file and provide a description of the data to be loaded as part of the LOAD command. You can create the external data file with the editor as shown below:
String data does not need to be enclosed in quotation marks. You do not need to align numeric values within a column, and you can extend beyond column 72. To provide a description of the data file, you can use the LOAD command in prompting mode to provide ISQL with the location and length of the data, and the character used for the null indicator. To obtain this information you can use the INFO command. For example:
In the example above, you can only load data from records that contain a specific character string (Select field pattern) beginning at a specific location (Starting location of select field) in the input records. In this example, only parts having numbers that start with 1 are loaded. You can also specify only a range of records using the PARTIAL option. Refer to the LOAD command in chapter 4, "ISQL Commands," for a description of the PARTIAL option. To load the above data into a table, you enter the LOAD FROM EXTERNAL command and include the following information:
For example:
The indicated column name, starting location, length, and the character used as the null character are specified. The command is terminated by the word END, a semicolon, and a Y or N. The N response to the question indicates that you want to load all the rows in the external data file. A Y response requires that you include the pattern location (the column number where the pattern begins) and the pattern. Similarly, if you want to use a command file, it would look like this:
To execute the command file use the START command as follows:
If you used the INTERNAL option of the the UNLOAD command, you specify it again when loading the data. For example:
Modified or newly loaded data is written to the log buffer. When a COMMIT WORK is processed, the data is moved from the log buffer to the log file and the changes to the DBEnvironment are made permanent. When nonarchive mode (the default) is set, the nonarchive log file space is reclaimed. As in the case of the INPUT command, ISQL processes the COMMIT WORK statement based on the AUTOCOMMIT option value of the SET command. If AUTOCOMMIT is ON, ISQL will continue to accept rows for input until the load buffer is filled, even if the number of rows specified in the AUTOSAVE option has been exceeded. Once the load buffer is full, a check is made to see if the number of rows specified in the AUTOSAVE option has been reached or exceeded. If this is the case ISQL processes a COMMIT WORK statement. If AUTOCOMMIT is OFF (the default setting), the rows are committed only when you enter the COMMIT WORK statement. When using nonarchive mode, use the AUTOCOMMIT command with the option value set to ON to ensure that the nonarchive log file (a circular file) is not overwritten before you process the COMMIT WORK statement. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|