Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> AW: UTL_FILE pkg related issue
The term of NUMBER OF ROWS is not quite appliable in case of binary file. Anyway wc -l yourfilename (i suggest you are in unix shell , otherwise you can compile the '\n' counter like this
int counter=0,c; while((c=getchar())!=EOF) if(c=='\n') counter++; printf("%d\n",counter);
-----Ursprüngliche Nachricht-----
Von: Vikas Kawatra [mailto:VKawatra_at_innoventry.com]
Gesendet: Montag, 4. Juni 2001 21:32
An: Multiple recipients of list ORACLE-L
Betreff: UTL_FILE pkg related issue
I use the UTL_FILE pkg to read a bin file and load the data into our database tables (insert or update) . The program works fine - but since we do updates too- we would like to protect out table - by checking the no of rows in the input file - The file has a Header and Tail - CAn someone suggest - how I can scan the binary file - and count the no of rows - before - processing the file ?
thanks
vikas
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Vikas Kawatra INET: VKawatra_at_innoventry.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Maxim Demenko INET: Maxim.Demenko_at_loyaltypartner.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Tue Jun 05 2001 - 11:11:12 CDT