SQL * LOADER is a utility tool which comes inbulit with any versions of Oracle. it is used to load data (.txt,.xls, tables, Doc ...) any flat files of this type can be loaded into Oracle database tables.
It can take one single flat file and load data into one table in Oracle DB or many tables at a single load or it can also take multiple flat files and load data too. in SQL LOADER main are
Control file , Data file , badlog file,discard file
control file is the key file which contains info about remaining files DATA<BADLOG,discard
it also contains info about which table is going to be populated with this flat files and datatypes....
Data file--which containd data in the form of a simple lines comma separated, delimiters...
so far this must be give you some idea. Good luck
bye Mala
Above answer was rated as good by the following members: pratap5655
SQL*Loader is a tool used to load flat files quickly into Oracle Tables. Using this a single flat file can be loaded into multiple tables during the same load.
SQL * LOADER is a utility tool which comes inbulit with any versions of Oracle. it is used to load data (.txt .xls tables Doc ...) any flat files of this type can be loaded into Oracle database tables.
It can take one single flat file and load data into one table in Oracle DB or many tables at a single load or it can also take multiple flat files and load data too. in SQL LOADER main are
Control file Data file badlog file discard file
control file is the key file which contains info about remaining files DATA<BADLOG discard
it also contains info about which table is going to be populated with this flat files and datatypes....
Data file--which containd data in the form of a simple lines comma separated delimiters...