Turn Autocommit off for JDBC Connection

I'd like to control the commit for DBMS_XMLSave operations on my own instead of auto commit. The documentation says to "Turn Autocommit off for JDBC Connection", but I haven't found how to do that yet, any clues?

My apologies for how complicated this is, it was written to be a
generic xml processor for multiple tables. I narrowed it to one
table. It converts a long to clob, parses it, walks the dom to
find rows and processes each row. One InsertXML per row in the
XML.
CREATE OR REPLACE package whl_rtl_xml_pkg as
--Context definitions by table
HUDLINE_CTX_IND char(1) := 'N';
HUDLINE_Ctx DBMS_XMLSave.ctxType := null;
procedure accept_xml (in_long in long, out_sts out char, out_msg
out varchar2);
procedure updt_hudline(in_row_node in xmldom.DOMNode, in_clob
clob, out_sts out char, out_msg out varchar2);
procedure set_context(in_table_name in varchar2, out_sts out
char, out_msg out varchar2);
end whl_rtl_xml_pkg;
CREATE OR REPLACE package body whl_rtl_xml_pkg as
procedure accept_xml (in_long in long, out_sts out char, out_msg
out varchar2) is
begin
declare
-- Long to CLOB and Parse XML variables
v_in_clob clob; -- Entire long converted to clob
v_clob clob; -- One row written to clob from DOM
doc xmldom.domdocument; -- Parsed XML Document
v_long_lnth NUMBER;
v_nbr INTEGER := 500;
bbuf varchar2(500);
p xmlparser.parser;
retval xmldom.domdocument;
--LOANLOCK information
lock_list xmldom.DOMNodeList;
lock_node xmldom.DOMNODE;
lock_loan_nbr WHL_LOAN_TB.LOAN_NBR%TYPE;
lock_rcd_updt_ts WHL_LOAN_TB.RCD_UPDT_TS%TYPE;
lock_rcd_updt_user_id WHL_LOAN_TB.RCD_UPDT_USER_ID%TYPE;
V_RETURN char(2);
-- Rowset Info
rowset_nl xmldom.DOMNodeList;
rowset_len number;
rowset_node xmldom.DOMNode;
rowset_table varchar2(30);
-- Row Info
row_nl xmldom.DOMNodeList;
row_len number;
row_node xmldom.DOMNode;
-- General
v_table_name char(30);
v_time char(10);
v_ret_sts char(2);
v_ret_msg VARCHAR2(200);
function selected_nodes (in_xpath varchar2)
     return xmldom.domnodelist is
     retval xmldom.domnodelist;
begin
retval := xslprocessor.selectnodes (xmldom.makenode
(doc),in_xpath);
     RETURN retval;
end selected_nodes;
begin
--Connection.setAutoCommit(false);
v_long_lnth := length(in_long); -- Determine length of XML Input
-- Create Clob and convert long to CLOB
dbms_lob.createtemporary(v_in_clob,TRUE);
dbms_lob.createtemporary(v_clob,TRUE);
dbms_lob.write(v_in_clob,v_long_lnth,1,in_long);
-- Parse Clob, create DOM
p := xmlparser.newParser;
xmlparser.parseCLOB(p,v_in_clob);
doc := xmlparser.getDocument(p);
-- Loop through ROWSETS
rowset_nl := selected_nodes('/ROOT/ROWSET'); -- Find rowset
nodes
rowset_len := xmldom.getLength(rowset_nl);
for rs in 0..rowset_len-1 loop
rowset_node := xmldom.item(rowset_nl,rs);
rowset_table := xslprocessor.valueof
(rowset_node,'TABLE_NAME'); -- Determine which table the rowset
is for
-- set up context for this table
set_context(rtrim(rowset_table), v_ret_sts, v_ret_msg);
IF V_RET_STS != '00' THEN -- Update failed for row
     OUT_STS := '01';
     OUT_MSG:= 'WHL_RTL_TEMPLATE_SP ERROR from:'||rtrim
(v_ret_msg);
     RETURN;
END IF;
-- Loop through Row Nodes to process individual rows
row_nl := xslprocessor.selectnodes (rowset_node,'ROW');
row_len := xmldom.getLength(row_nl);
for i in 0..row_len-1 loop
row_node := xmldom.item(row_nl,i);
xmldom.writeToClob(row_node, v_clob);
-- DBMS_LOB.READ (v_clob, v_nbr, 1, Bbuf);
-- dbms_output.put_line(substr(bbuf,1,200));
-- Find elements of "ROW" -->Column Names needed for key
processing
     -- call function to process row for the table
     -- pulls column names needed and update row in database
as required
if rowset_table = 'WHL_HUDLINE_TB' then
     updt_hudline(row_node, v_clob, v_ret_sts, v_ret_msg);
          IF V_RET_STS != '00' THEN -- Update failed for
row
     OUT_STS := '01';
     OUT_MSG:= 'WHL_RTL_TEMPLATE_SP ERROR from:'||rtrim
(v_ret_msg);
          RETURN;
          END IF;
     end if;
end loop;
end loop;
-- Clean up
dbms_lob.FREETEMPORARY (v_in_clob);
dbms_lob.FREETEMPORARY (v_clob);
out_sts := '00';
out_msg := 'WHL_RTL_XML_PKG.ACCEPT_XML Finished without errors';
exception
when others then
out_sts := '99';
     out_msg := 'WHL_RTL_XML_PKG uncaught error:'|| SQLERRM;
end;
end accept_xml;
procedure updt_hudline(in_row_node in xmldom.DOMNode, in_clob
clob, out_sts out char, out_msg out varchar2) is
begin
declare
V_LOAN_NBR WHL_LOAN_TB.LOAN_NBR%TYPE;
V_HUDLINE_NBR WHL_HUDLINE_TB.HUDLINE_NBR%TYPE;
V_KEY_EXISTS NUMBER;
v_rows_updt number;
v_nbr number;
v_msg varchar2(200);
begin
v_loan_nbr := xslprocessor.valueof(in_row_node,'LOAN_NBR');
v_hudline_nbr := xslprocessor.valueof
(in_row_node,'HUDLINE_NBR');
select count(*) into v_key_exists from whl_hudline_tb
where loan_nbr = v_loan_nbr
and hudline_nbr = v_hudline_nbr;
if v_key_exists > 0 then
v_rows_updt := DBMS_XMLSave.updateXML
(hudline_Ctx,in_clob);
else
     v_rows_updt := DBMS_XMLSave.insertXML
(hudline_Ctx,in_clob);
     END IF;
     if v_rows_updt = 0 then -- Error no rows were inserted
or updated
out_sts := '01';
     out_msg := 'UPDT_HUDLINE - insert/update did not
update any rows for:'||V_LOAN_NBR||':'||
V_HUDLINE_NBR||':'||V_KEY_EXISTS;
else
out_sts := '00';
end if;
exception
when others then
-- get the original exception
DBMS_XMLQuery.getExceptionContent(HUDLINE_Ctx,v_nbr,
v_msg);
dbms_output.put_line('updt_hudline Exception caught ' ||
TO_CHAR(v_nbr)
|| out_msg );
out_sts := '99';
     out_msg := 'updt_hudline:'||v_msg;
end;
end updt_hudline;
procedure set_context(in_table_name in varchar2, out_sts out
char, out_msg out varchar2) is
begin
declare
v_nbr number;
v_msg varchar2(200);
begin
if in_table_name = 'WHL_HUDLINE_TB' then
if HUDLINE_CTX_IND = 'N' THEN -- Context has not been created
for the table
HUDLINE_Ctx := DBMS_XMLSave.newContext('WHL_HUDLINE_TB');
     DBMS_XMLSave.clearUpdateColumnList(HUDLINE_Ctx); -- To
test
     DBMS_XMLSave.clearKeyColumnList(HUDLINE_Ctx);
     DBMS_XMLSave.setKeyColumn(HUDLINE_Ctx,'LOAN_NBR');
     DBMS_XMLSave.setKeyColumn(HUDLINE_Ctx,'HUDLINE_NBR');
     DBMS_XMLSave.setCommitBatch(HUDLINE_Ctx, 0);
     HUDLINE_CTX_IND := 'Y';
END IF;
END IF;
out_sts := '00';
exception
when others then
-- get the original exception
DBMS_XMLQuery.getExceptionContent(HUDLINE_Ctx,v_nbr,
v_msg);
dbms_output.put_line('set_context Exception caught ' ||
TO_CHAR(v_nbr)
|| out_msg );
out_sts := '99';
     out_msg := 'set_context error:'||v_msg;
end;
end set_context;
end whl_rtl_xml_pkg;
procedure kim_test as
begin
declare
in_long long := '<ROOT>
<ROWSET>
<TABLE_NAME>WHL_HUDLINE_TB</TABLE_NAME>
     <ROW num="3">
          <LOAN_NBR>6000012</LOAN_NBR>
          <HUDLINE_NBR>104.3</HUDLINE_NBR>
          <HUDLINE_AMT>700</HUDLINE_AMT>
          <HUDLINE_PYMNT_MTHD_CD>A</HUDLINE_PYMNT_MTHD_CD>
          <HUDLINE_COMMENT_TXT>THIS IS A
COMMENT</HUDLINE_COMMENT_TXT>
     </ROW>
<ROW num="4">
          <LOAN_NBR>6000012</LOAN_NBR>
          <HUDLINE_NBR>104.4</HUDLINE_NBR>
          <HUDLINE_AMT>700</HUDLINE_AMT>
          <HUDLINE_PYMNT_MTHD_CD>A</HUDLINE_PYMNT_MTHD_CD>
          <HUDLINE_COMMENT_TXT>THIS IS A
COMMENT</HUDLINE_COMMENT_TXT>
</ROWSET>
</ROOT>';
out_err_sts char(2);
out_err_msg varchar2(200);
begin
WHL_rtl_xml_pkg.accept_xml (in_long, out_err_sts, out_err_msg);
dbms_output.put_line(out_err_msg);
end;
end;
Output from running it
SQL> edit
Wrote file afiedt.buf
1 delete from whl_hudline_tb
2* where loan_nbr = '6606665'
SQL> /
2 rows deleted.
SQL> commit;
Commit complete.
SQL> set serveroutput on
SQL> execute kim_test
WHL_RTL_XML_PKG.ACCEPT_XML Finished without errors
PL/SQL procedure successfully completed.
SQL> select loan_nbr, hudline_nbr, hudline_amt
2 from whl_hudline_tb
3 where loan_nbr = '6606665';
LOAN_NB HUDLIN HUDLINE_AMT
6606665 104.3 700
6606665 104.4 700
SQL> rollback;
Rollback complete.
SQL> select loan_nbr, hudline_nbr, hudline_amt
2 from whl_hudline_tb
3 where loan_nbr = '6606665';
LOAN_NB HUDLIN HUDLINE_AMT
6606665 104.3 700
6606665 104.4 700

Similar Messages

  • Mail on my iPhone and iPad no longer works on wifi. If I turn wifi off I can connect over the cellular network. I have tried deleting my AOL account and setting it up again as a new account but I still have the same problem.

    Mail on my iPad and iPhone has stopped connecting using wifi. If I turn wifi off I can connect using cellular. I have tried deleting my AOL account and setting it up again as a new account but that hasn't helped.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    Setting up and troubleshooting Mail
    http://www.apple.com/support/ipad/assistant/mail/
    Using a POP account with multiple devices
    http://support.apple.com/kb/ht3228
    iOS: Adding an email account
    http://support.apple.com/kb/HT4810
    iOS: Setting up an Outlook.com, Hotmail, Live, or MSN email account
    http://support.apple.com/kb/ht1694
    iPhone, iPad, iPod touch: Microsoft Outlook 2003, Outlook 2007, Outlook 2010 may not display contacts and calendars after sync
    http://support.apple.com/kb/TS1944
    Server does not allow relaying email error, fix
    http://appletoolbox.com/2012/01/server-does-not-allow-relaying-email-error-fix/
    Why Does My iPad Say “Cannot Connect to Server”?
    http://www.ehow.co.uk/info_8693415_ipad-say-cannot-connect-server.html
    Gmail Account Will Not Connect to Gmail Server
    http://support.apple.com/kb/ts3058
    How to Delete Email on the iPad
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Delete-Email-On-The-Ipad.htm
    How to Mass Delete Emails from iPhone and iPad Inbox (with video)
    http://suiteminute.com/how-to-mass-delete-emails-from-iphone-and-ipad-inbox/
    How to add, send and open iPad email attachments
    http://www.iskysoft.com/apple-ipad/ipad-email-attachments.html
    How to Sync Contacts with Your iPad Using iTunes
    http://www.dummies.com/how-to/content/how-to-sync-contacts-with-your-ipad-using- itunes.html
    Importing a Contact List CSV to the iPad
    http://techchannel.radioshack.com/importing-contact-list-csv-ipad-2235.html
    iOS: ‘Mailbox Locked’, account is in use on another device, or prompt to re-enter POP3 password
    http://support.apple.com/kb/ts2621
    iCloud: Create a group and add contacts to it
    http://support.apple.com/kb/PH2667
    eMail Groups - You can use a third party app that many users recommend.
    MailShot -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    Group Email -  https://itunes.apple.com/us/app/mailshot-pro-group-email-done/id445996226?mt=8
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Configuration problems with IMAP e-mail on iOS with a non-standard SSL port.
    http://colinrobbins.me/2013/02/09/configuration-problems-with-imap-e-mail-on-ios -with-a-non-standard-ssl-port/
    Try this first - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
    Or this - Delete the account in Mail and then set it up again. Settings->Mail, Contacts, Calendars -> Accounts   Tap on the Account, then on the red button that says Remove Account.
    How to delete an email account on your iPad
    http://www.shoppepro.com/support/knowledgebase/228/How-to-delete-an-email-accoun t-on-your-iPad.html
     Cheers, Tom 

  • HT201412 my iphone just turn it off for no reason, when i turn it on after 2or3 min it just shutdown by it self, and even when i charge my iphone it works, but once i take it off then it shutdown again.

    my iphone just turn it off for on reason, when i turn it on after 2or3 min it just shutdown by it self, and even when i charge my ipjone it works, but once i take off the charge then it shut down by it self again

    Hello there, queen168.
    The following Knowledge Base article provides some good steps for troubleshooting your particular issue:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Particularly:
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • So the left side of my iPhone isn't working at all and I even tried turning it off for 5 minutes about 10 million times but nothing is working. Any suggestions on what to do I need help like ASAP!?

    So the left side of my iPhone isn't working at all and I even tried turning it off for 5 minutes about 10 million times but nothing is working. Any suggestions on what to do I need help like ASAP!?

    Have you performed a reset? Tap and hold the Home button and the On/Off button for approximately 10-15 seconds, until the Apple logo appears. Release both buttons and await restart.

  • My new iPod touch won't let me view my pictures. It lets me open the app but then crashes when I try to open an album. I've tried resetting and turning it off for a while but nothing has worked. What can I do?

    My new 4th generation iPod touch won't let me view my pictures.. It lets me get into the app but when I try to look at an album it crashes. I've tried resetting and turning it off for a while and nothing has worked. What do I do?

    - Try restoring the iPod from backup
    - Next restore to factory defaults/new iPod.

  • I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    I've been sent a scan of a document as an attachment. Clicking on it, I get the message, "Pixel aspect ration correction is for preview purposes only. Turn it off for maximum image quality." What is pixel aspect ration and how do I turn it off?

    It's "aspect ratio", not aspect "ration". 
    It's what determines whether you have square pixels ("normal") or, if rectangular pixels, what the aspect ratio (width : length)  of that rectangle is.
    It's explained in the Help files.  I cannot go into more detail because you have neglected to provide information about your platform and exact version of Photoshop.
    Example in next post

  • Turn logging off for a roll off job

    Hi Everyone,
    We are running into an issue in one of our bw production systems.  Once a week we run a chain that deletes data that is past our required retention period. The infoproviders we are doing the data roll off on are quite large.  Most contain two years worth of transactional data.  We have been running into issues with this process because the transaction log keeps filling and the job gets rolled back.  In sm21 the errors are as follows:
    Database error -964 requires intervention by the database administrator
    Database error -964 at UPD access to table BTCCTL                      
    > SQL0964C The transaction log for the database is full.               
    > SQLSTATE=57011 row=1                                                 
    Perform rollback                                                       
    I am wondering if there is a way to turn logging off for this particular job.  We do not require the logging. I realize the rollback cannot occur without the logs, but we don't need the rollback to happen, because we want the data deleted.
    Any suggestions?
    Thanks
    Charla

    Hi Charla,
    I don't think turn logging off is the best way to resolve this problem. I'd suggest you contact your DBA/BASIS for the root cause of this issue. They will correct it with the most professional way
    Generally once we see SQL error or DB error we just ask for their help.
    Regards,
    Frank

  • Can we set an Alert  for JDBC Connection Failures ?

    Hi friends ,
                      Can we set an alert for JDBC Connection failure as mail as well as Alert ?
                      I am using JDBC Sender adapter to read the data from sql server table.
                      I am not using BPM .
                      I want to set an alert and mail to respective person when JDBC Connection failure .
                      If XI trying to read a database if  connection failure or connection properties lost it won't come ti Integration engine itself  right ?
                     I assume as we have to set alert at system level .
                    Can you please give me the step by step details  to set this kind of alerts ?    
                      Expecting your reply asap .
    Best Regards.,
    V.Rangarajan

    Renga rajan,
    This is what I tried to explain in yuor previous threads.
    >>>If XI trying to read a database if connection failure or connection properties lost it won't come ti Integration engine itself right ?
    In such cases, you will get <b>an error at adapter level</b> and the msg wont come into IE.
    >>>I assume as we have to set alert at system level .
    If you are above SP 14 in XI3.0, then you can raise alerts for adapter errors also.
    No special config required for this.
    To understand this, give it a try and you will get the concept.
    Regards,
    Jai Shankar

  • Can you turn Faces off for specific Projects?

    I do photography just for myself normally, and for my pictures I like to use Faces. However, I've also done some photography for groups. I don't want Faces to try and tag these people, because I don't even know them! Is there a way to turn Faces off for certain projects, but not turn it off totally?

    I have a similer thing since I use aperture for my work and for personal things. I use seperate libraries. Create a seperate library from the file menue. (File->switch library->other/new) make one for work (no faces) and one for personal (faces enabled) It's not as simple as setting it on or off for each project but it does work for me.

  • My Ipad turned itself off for no reason and I can't turn it on. Not even when I'm charging it. What can I do??

    My Ipad turned itself off for no reason and I can't turn it on. Not even when I'm charging it. What can I do??

    iPad: Not responding or does not turn on

  • All my contacts use iPhones but one doesn't use iMessage because it uses data. I want to use iMessage for other contacts but i have to turn off for just one contact. Can i turn iMessage off for just one contact?

    All my contacts use iPhones but one doesn't use iMessage because it uses data. I want to use iMessage for other contacts but i have to turn off for just one contact. Can I turn iMessage off for just one contact?

    You need to delete here conversation and start another one using her phone number and not her Apple ID. You cannot delete iMessage, you can disable it. If the Apple server still sees her iPod with iMessage on and using her Apple ID, then it will continue to appear to your phone that she has iMessage. She needs to take a look at this support document about permanently disabling iMessage for her account. Can’t receive text messages on a non-Apple phone

  • Cannot reconnect iphone 3G to itunes after turning it off for 2 hours

    i turned my iphone 3G off for 2 hours and when i turned it back on it was telling me to connect to itunes. i have done this and the phone will not reactivate itself rendering it useless. how do i get my phone to work again?? please! thanks.

    Have you put your phone into DFU mode and tried to restore?

  • Create a view in the database based off a jdbc connection

    I have some data in a DB2 database that I would like to union with a table in an Oracle Database in the Oracle Database.
    Can I create a jdbc connection in the Oracle database that points to the DB2 database and then create a view based off of the jdbc connection?
    I've never done anything like this , but if this a no brainer please just post a link or something that points me in the right direction thanks...
    I've searched...

    Mark,
    I was going to suggest the same thing as Jan did when she answered this question that you also posted to the Union DB2 and Oracle data in a view and display in a form using jdbc? forum.
    Good Luck,
    Avi.

  • How to increase the per-process file descriptor limit for JDBC connection 15

    If I need JDBC connection more that 15, the only solution is increase the per-process file descriptor limit. But how to increase this limit? modify the oracle server or JDBC software?
    I'm using JDBC thin driver connect to Oracle 806 server.
    From JDBC faq:
    Is there any limit on number of connections for jdbc?
    No. As such JDBC drivers doesn't have any scalability restrictions by themselves.
    It may be it restricted by the no of 'processes' (in the init.ora file) on the server. However, now-a-days we do get questions that even when the no of processes is 30, we are not able to open more than 16 active JDBC-OCI connections when the JDK is running in the default (green) thread model. This is because the no. of per-process file descriptor limit exceeded. It is important to note that depending on whether you are using OCI or THIN, or Green Vs Native, a JDBC sql connection can consume any where from 1-4 file descriptors. The solution is to increase the per-process file descriptor limit.
    null

    maybe it is OS issue, but the suggestion solution is from Oracle document. However, it is not provide a clear enough solution, just state "The solution is to increase the per-process file descriptor limit"
    Now I know the solution, but not know how to increase it.....
    pls help.

  • ABAP statement for JDBC connection to SQL server

    Hi Gurus,
    i need to connect a WebDynpro abap to a SQL server.
    My OS is Unix so i cannot use a ODBC connection.
    Can anyone help me to know if it's possible to write an abap statement to connect the SQL server by JDBC connection?
    thanks a lot
    Regards
    Claudio.

    Hi,
          ELSEIF SCREEN-GROUP2 = 'PRO'.
          clear: list.
          if screen-name = 'ZAVBAK-ZZPROMO_ID'.
            exec sql.
       commit
              set connection :'CBREPOSITORYPRD'
            endexec.
            exec sql.
              CONNECT TO :'CBREPOSITORYPRD'
            endexec.
            exec sql.
              COMMIT
            endexec
          EXEC SQL.
              OPEN C1 FOR
              SELECT CutterRewardsUserListid,
                     SAPAccountNumber,
                     PromoID,
                     FirstName,
                     LastName
                     FROM CutterRewardsUserList
                     WHERE SAPAccountNumber = :XVBPA-KUNNR ORDER BY PromoID
            ENDEXEC.
            DO.
              EXEC SQL.
                FETCH NEXT C1 INTO :WA5
              ENDEXEC.
              IF SY-SUBRC = 0.
                PERFORM UPDATE_LIST.
              ELSE.
                EXIT.
              ENDIF.
            ENDDO.
            EXEC SQL.
              CLOSE C1
            ENDEXEC.

Maybe you are looking for

  • Place video and images in different folder? N73

    Hi All, Once I go: gallery/images and video, all images and video will display together. There is no way to create new folder so that I can put, or hide some private images there. I've try using PC to do the job, created new folder and place some ima

  • Linux_iFS_901_Disk1.cpio.gz

    hello all i have a problem with this archive file. My download server is download-uk.oracle.com. File size is correct: 113,053,132 bytes. Gunzip works fine. But when i run the cpio command cpio -idcmv < Linux_iFS_901_Disk1.cpio i have the following e

  • Things to be concern when company being take over by new company

    Dear SAP gurus and expert, I am new in SD module, would like to seek for your professional consultation on what should be done. Currently the client company is being bought over by another company, and some configuration need to be done. However, not

  • Looking for a feature like IE Favorites Bar

    IE has a feature that allows you to have a bar at the top of saved locations. For example, I have sites I visit regularly. These sites would have a tab at the top of my page. This would allow me to click on them, without having to access them from my

  • Reading an html file?

    How would you go about opening a page such as http://www.google.com/ and then reading the source and passing this into a string or buffer of some sort?