0% found this document useful (0 votes)
53 views

Oracle App

Oracle app's document discusses ERP systems, SQL Loader, dumping data to flat files using PL/SQL, and set-of-books. It defines ERP as a packaged business software system that automates and integrates business processes and data across a company. It describes SQL Loader as a bulk loading utility that can load data into Oracle from external files using conventional or direct path loading. It also explains how the UTL_FILE package can be used in PL/SQL to dump data to flat files. Finally, it defines set-of-books as a collection of chart of accounts, currencies, and calendars and notes that an interface table transfers data between systems.

Uploaded by

Supratik Dey
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
53 views

Oracle App

Oracle app's document discusses ERP systems, SQL Loader, dumping data to flat files using PL/SQL, and set-of-books. It defines ERP as a packaged business software system that automates and integrates business processes and data across a company. It describes SQL Loader as a bulk loading utility that can load data into Oracle from external files using conventional or direct path loading. It also explains how the UTL_FILE package can be used in PL/SQL to dump data to flat files. Finally, it defines set-of-books as a collection of chart of accounts, currencies, and calendars and notes that an interface table transfers data between systems.

Uploaded by

Supratik Dey
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

Oracle app’s document

1) What is ERP? Architecture of apps?


A packaged business software system that lets a company automate and integrate
the majority of its business processes; share common data and practices across the
enterprise; [and] produce and access information in a real-time environment.
2) Tell me some thing about SQL-LOADER.
Sql * loader is a bulk loader utility used for moving data from external files into the
oracle database.
Sql * loader supports various load formats, selective loading, and multi-tables loads.
1) conventional
--The conventional path loader essentially loads the data by using standard ‘insert’
statement.
2) direct
-- the direct path loader (direct = true) by possess of logic involved with that,
and loads directly in to the oracle data files.
EX:-
My data.csv file
1001, “scott tiger”,1000,40
1002,”gvreddy”,2345,50
Load data
Infile ‘c:\data\mydata.csv’
Into table emp
Fields terminated by “,” optionally enclosed by ‘”’
(empno, empname,sal,deptno)
>sqlldr scott/tiger@vis
control=loader.ctl log= gvlog.log bad=gvbad.bad discard=gvdis.dsc .
3) how do u dump data from pl/sql block to flat files?
Using utl_file package, we can dump data from pl/sql block to flat file.
PRE-REQUIREMENTS for UTL_FILE is specify the accessible directories for the
UTL_FILE function in the initialization file (INIT.ORA) Using the UTL_FILE_DIR parameters.
Ex: UTL_FILE_DIR = <Directory name>

EX:-
--remember to update INITSID.ORA,
--utl_file_dir = ‘c:\oradata’
Declare
Fp utl_file.file_type;
Begin
Fp := utl_file.fopen(c:\oradata’,tab1.txt’,’w’);
Utl_file.putf(fp,’%s %s \n ‘text field’, 55);
Utl_file.fclose(fp);
End;
4) What is SET-OF-BOOKS?
Collection of Chat of Accounts and Currency and Calendars is called SOB
What is the interface?
Interface Table is a table which is used as medium for transfer of data between two
systems.
What is invoice?
Send you a request for payment

You might also like