Load Utility in DB2
The load utility is capable of efficiently moving large quantities of data into tables. The utility can handle all data types, including large objects (LOBs) and user-defined types (UDTs). The load utility is faster than the import utility, because it writes formatted pages directly into the database, while the import utility performs SQL INSERTs. The load utility does not fire triggers, and does not perform referential or table constraints checking (other than validating the uniqueness of the indexes). db2 "load from data.ixf of ixf insert into abc.data" Syntax Load from filename | pipename | device Of filetype Lobs from lobpath modified by filetype_mod method load_method [Savecount n] [Rowcount n] [Warningcount n] [Messages message_file] Insert | Replace | Restart | Terminate into table_name [(column {, column})] -- Difference between Load and Import in DB2 IMPORT 1. Inserts one record at a time. 2. ...