Sql loader
-
Có một số phương pháp để load dữ liệu vào trong tables của Oracle database,có 3 phương pháp phổ biến : Công cụ direct load insert: nạp dữ liệu trực tiếp. SQL*loader: nạp dữ liệu từ file text, khuôn dạng tự do Công cụ Import và Export: nạp dữ liệu từ file lưu trữ với khuôn dạng do Oracle quy định.
32p trinh02 28-01-2013 131 19 Download
-
Là tiện ích được sử dụng để tải dữ liệu từ các nguồn dữ liệu khác vào Oracle.VD: *.dat, *.txt, *.xls, *.mdb, … SQL*Loader đọc data file và mô tả dữ liệu bên trong control file. Sử dụng thông tin này và những tham số được kèm theo để nạp dữ liệu vào database. Control file chứa những thông tin miêu tả cách mà dữ liệu được nạp. Nó bao gồm table name, column datatypes,.. 1 dạng cấu trúc của Control file: LOAD DATAINFILE '' APPEND CONTINUEIF THIS (start_position:end_position) = valueINTO TABLE table_name ( POSITION(:) , POSITION(:)...
21p trinh02 28-01-2013 204 20 Download
-
Data Loading Methods Several methods are available for loading data into tables in an Oracle database. Of the methods available, Direct Load insert and SQL*Loader are discussed here. Export and Import are covered in the Oracle9i Database Administration Fundamentals II course. SQL*Loader SQL*Loader loads data from external files into tables of an Oracle database. It has a powerful data parsing engine that places little limitation on the format of the data in the data file. Direct Load Direct Load insert can be used to copy data from one table to another table within the same database.
40p trinh02 28-01-2013 69 5 Download
-
Loading Data Several methods are available for loading data into tables in an Oracle database. Of the methods available Direct-Load insert and SQL*Loader are discussed here. SQL*Loader SQL*Loader loads data from external files into tables of an Oracle database. It has a powerful data parsing engine that puts little limitation on the format of the data in the datafile. Direct-Load insert Direct-load insert can be used to copy data from one table to another table within the same database.
32p trinh02 28-01-2013 67 4 Download