DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: set cursor_sharing=force caused the app break

Threaded View

  1. #1
    Join Date
    Jan 2005
    Posts
    221

    set cursor_sharing=force caused the app break

    Hi all,

    when I set cursor_sharing=force, some of the functionality of the app break and I am runnning on 9i, below is the statement that would break on the app:

    Code:
    SELECT sum(PCT_INT) TOTRI FROM PARTY_INTERESTS WHERE GROUNP_NUM = @GROUP " + _
                " AND PIP_TYPE_CODE IN ('RI', 'ROI') "
    
     
    
     
    
    "SELECT GROUNP_NUM, SUM(PCT_INT) TOTRI FROM PARTY_INTERESTS" + _
                "WHERE GROUNP_NUM IN (SELECT GROUNP_NUM FROM TEAM WHERE AGMT_NUM = @AGMT_NUM AND SUBS_NUM <> '000') " + _
                "AND PIP_TYPE_CODE IN ('RI', 'ROI') " + _
                "GROUP BY GROUNP_NUM"
    the statement executed ok from SQLPLUS; however, it will brek from the app. why????
    Last edited by hannah00; 04-25-2005 at 02:03 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width