In interface process we have 1000 records i want to commit
every 100 records how? How i can commit every 100 records?
Answers were Sorted based on User's Feedback
Answer / prasad t
there is an option in sqlldr scott/tiger rows=100
rows menas it will commit the rows
rows=100 meands it commits the 100 rows after the insertion
| Is This Answer Correct ? | 15 Yes | 1 No |
Answer / prasad reddy
BEGIN
IF l_return_status = 'Y'
THEN
UPDATE xxdc_inv_mtl_item_stg_t
SET process_status = 2
WHERE ROWID = cur_rec.ROWID;
l_txn_validated := l_txn_validated + 1;
ELSIF l_return_status = 'E'
THEN
UPDATE xxdc_inv_mtl_item_stg_t
SET process_status = 3,
error_message = error_message ||
l_error_msg
WHERE ROWID = cur_rec.ROWID;
l_txn_failed := l_txn_failed + 1;
END IF;
IF MOD (l_txn_inserted, p_commit_point) = 0
THEN
COMMIT;
END IF;
Pls look at the above code it may help you out.
Any how here i am giving explanation
take the count of inserted rows and mod by 100 or 1000 or
2000 wat ever you want and do commit;
simple
code
IF MOD (l_txn_inserted, p_commit_point) = 0
THEN
COMMIT;
END IF;
Regards,
-Prasad.
| Is This Answer Correct ? | 2 Yes | 2 No |
in sql loader,i have 100 records in my flatefile, i want to skip the 80 to 90 records .please help me
In SQL Loader i have 100 Records to be loaded into my table. How do i load the first 30 Records and skip the last 10 Records within a single .ctl file ? So my total no.of records to be loaded would be 60. Could anybody help me in this ?
Hi Friends this is preetham, i am searching for job on oracle apps(technical) i put 3 years fake exp, so any one please could you help me for realtime interview questions and 9739782164 this is my no srpsrp777@gmail.Com please guys please provide your no for contact i have a doubts i want to clarify
What is SET-OF-BOOKS?
What is the autonomous transaction?give me example?
What is instead of trigger in where we will use?
How to generate XML Report with out using rdf?
6 Answers BirlaSoft, Patni, UST,
in order to run utl_file package we need to give any specific path? if yes what is that?where u will run utl_package?
1. when we r doing interface/conversion which things u will take care to improve the perfrmonce?(except bulk collect) 2. In conversion,u r loading the data using sql*loader,I dnt want to use sql*loader,& i have millions of records,Id der any way to load the data withing fraction of time considering best performance. 3. When u r doing conversion,taht using sql*loader u r loading data into staging table,u r writing control file bt I dnt want to use sql*loader,when u r creating con prog that time can we pass all values from flat file using paramere,valuset?how? 4. In flat file u got 50 records,out of 50 ,30 records are proceesed & inserted into base table,after taht clien understood that 1 item having wrong name e.g insted of ABC he given DCE, so can we delete?hw?(client permission is der) i have lot of wrong item name randomly spreaded,can we delete it?hw? 5.after doing validation hw u will follow approach to error out records?if i want to send all the error out records to client daily,whats ur approach? 6. In outbound interface is der any way to load the data(large data-millions of records) except UTL_FILE package? 7. what is parsing? 8. In technical doc.s which section will mention?except code? 9. Do u have any idea about code depository tool? 10.whats is performance tunning,DB link? 11, How u will do RMA?
In support project one ticket alloted which steps follows manualy tell me ?
How to know the number of invoices generated for one PO from front end (navigation)?
wheather discard file is automatically created or explicty created?can u mention it?