Message "Error in connection:No result set, result attempts = 100" on VC

Hi,
I am using a JDBC datasource to retrieve, update, insert and delete information from a SQL Server database using executing store procedures from VC.
The selection of the data is perfect but for the deletion, insert or update of any data using store procedures I always get the following message:
"Error in connection:No result set, result attempts = 100"
At the end the information is modified in the database but I get error.
Here is an example of one of my store procedure:
CREATE PROCEDURE [dbo].[DelData]
     @id uniqueidentifier
     -- Add the parameters for the stored procedure here
AS
BEGIN
     -- SET NOCOUNT ON added to prevent extra result sets from
     -- interfering with SELECT statements.
     SET NOCOUNT ON;
    -- Insert statements for procedure here
     delete from data     
       WHERE Rowid=@id;
END
Let me know if somebody knows the reason of this and if there is something that I am doing wrong.
Thanks,
Zareh

Hi,
when you SELECT data, you get a result. So your connection gets a result set. When you DELETE, INSERT,... you have no result, because you didn't select data. So your connection can't get any result sets.
best regards,
Christian

Similar Messages

  • I have a iPhone 5C and a PC with Windows Vista.I did pair my phone thru Bluetooth but when I try to connect I get this message:"error establishing connection" What is the reason of this?

    I have a iPhone 5C and a PC with Windows Vista.I did pair my phone thru Bluetooth but when I try to connect I get this message:"error establishing connection" What is the reason of this?

    Go into Settings>Messages>Send and Receive and make sure that your phone number is checked and iMessage reads as activated. Remove the checkmark from the email address and make sure that only the phone number if checked. It should appear grayed out, but should still have a checkmark. If the phone number does not have a checkmark, then turn off iMessage, wait a few moments and then turn iMessage back on and make sure that it activates.

  • HT4009 I keep getting "ERROR Cannot Connect to iTunes Store" when attempting an in-app purchase.

    I've been trying to complete an in-app purchase within the game "Nemo's Reef" for over a week and repeatedly get the same "ERROR Cannot Connect to iTunes Store"
    I've tried a real close for the app, restarting my device (iPhone 5), enabling and disabling restrictions - I DO NOT have in-app purchases restricted under settings-general - restrictions - in app purchases.
    I purchased a book in iBooks this morning - my card was charged and the item downloaded perfectly. I have tried the purchase on WiFi as well as Cellular but neither work. I've also tried turning off my WiFi completely, still doesn't work.

    Kaitlyn255 wrote:
    I've been trying to complete an in-app purchase within the game "Nemo's Reef"
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • WebService Consuming Message Error: ConnectException: Connection timed out:

    Hi experts,
    I'm using NWDS to consume an external WebSevice and after create an iView on EP6.
    First I created a Deployable WebService and deployed it on the server, so I created a Java Application to call this WS using the following code:
    <i>public class JQSRedirect extends HttpServlet {
         protected void doGet(
              HttpServletRequest request,
              HttpServletResponse response)
              throws ServletException, IOException {
              PrintWriter pw = response.getWriter();
              try{
                   String applicationID = "XXXX";
                   String passwordID = "XXXXX";
                   String userID = "XXXXXX";
                   String redirectURL = "http://XXXXXXX/preportal.aspx?token={";
                   String token = "";
                   InitialContext in = new InitialContext();
                   NJQSService nJQSService = (NJQSService)in.lookup("wsclients/proxies/sap.com/jqsWebService/ng.com.xxxx.jqsWebServiceProxy");
              NJQSServiceSoap njqsPort = nJQSService.getLogicalPort();
                   GetTokenN getTokenN = new GetTokenN();
    +token = njqsPort.getTokenN(userID, applicationID, passwordID);
                   pw.write("token: " + token);
              catch(Exception e) {
                   pw.write(e.toString());
                   e.printStackTrace();
         protected void doPost(
              HttpServletRequest request,
              HttpServletResponse response)
              throws ServletException, IOException {
              //TODO : Implement
    }</i>
    When I'm testing , the system display the follow message: <b>java.rmi.RemoteException: Service call exception; nested exception is: java.net.ConnectException: Connection timed out: connect</b>
    How to correct this error?
    Regards,
    Armando

    Hi,
    I found a reason for the previous error, I setted up the firewall rules and it works, but now we have another error message:
    java.rmi.RemoteException: Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (405) Method Not Allowed. The requested URL was:"http://193.122.30.8/XXXXXXXX/NJQS/njqsservice.wsdl"
    I made some researchs on the SDN and another sites of Internet that suggests a proxy configuration, but I don't have proxy on my server.
    Any Idea that can help me?
    Regards,
    Armando

  • Error message - could not connect to aim - too many attempts to login

    Today when I tried to iChat, I got a message I haven't seen before. The error message reads "You have attempted to lgin too often in a short period of time. Wait a few minutes before trying to login again." I did notice my window continuing to try and login -- not sure why it wouldn't. I did install a new router yesterday and my internet works fine. Would this have some impact on iChat? Or are there certain settings I might need to change?

    Hi,
    If you are on 10.6.x did the port change stick ?
    SSL tends to have to be On and the Enter key needs to be used to "Set" the port.
    On the Netgear access the WNA set up page.
    Turn Off the Port scan and DOS (Or SPI) and Disable the Ping Blocking.
    (Apply/Save Settings)
    9:12 PM Tuesday; May 4, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Very frequently when I click on a link, this message comes up: Connection was re-set. Then I can use Try again button. Annoying and time-waster. How to resolve this once and for all? In simple English only, please - I'm not a techie. Thanks.

    See question above. Think that says it.

    Maybe these will help:
    https://discussions.apple.com/message/17677533#17677533
    https://discussions.apple.com/message/18324129#18324129
    https://discussions.apple.com/message/18203126#18203126

  • How to get the number of records of a streaming result set

    Hi guys.
    So if it wasn't a streaming result set, I would have done this:
    {noformat}myResultSet<code class="jive-code jive-java">.last();
    {color:navy}*int*{color} numResults = </code>myResultSet<code class="jive-code jive-java">.getRow();
    </code>myResultSet<code class="jive-code jive-java">.beforeFirst();
    </code>{noformat}
    but being a streaming result set, beforeFirst() throws an exception...
    So how do you get the number of records in that result set? I wanna avoid an extra count(*) query, so I would appreciate other solutions than that.

    JoachimSauer wrote:
    vanwil wrote:
    you see, for now I just use a count(*) query to get the number of records, but that's adding a lot of extra waiting time...Iterating over the result twice will surely be slower then doing the count(*).great! so what I got now is actually the fastest way there is... awesome...
    If you get an exception, then you surely have a stack trace. That should tell you what happens, or at least where.com.mysql.jdbc.MysqlIO.checkForOutstandingStreamingData(MysqlIO.java:2066)
    Why do you need to know the number of elements beforehand, anyway?I need to know the number of elements because the incoming data goes into a table. Now of course, I could use ArrayList<String[]> or something, but wouldn't that require more memory resources than Object[][] ?
    No one can tell you that, at least not without more information (say, the stack trace for example).Here's the exception message:
    java.sql.SQLException: Streaming result set com.mysql.jdbc.RowDataDynamic@10c0ef2 is still active. Only one streaming result set may be open and in use per-connection. Ensure that you have called .close() on  any active result sets before attempting more queries.

  • I message error will not connect.appears not to accept password, reset FaceTime and messages now says cannot connect to network???

    II message error not connecting, appears not to accept password, reset FaceTime and messages. Now says check network. Do not know what else to do

    Unable to make or receive FaceTime calls after April 16, 2014
    http://support.apple.com/kb/TS5419
    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Text on the iPad
    http://ipad.about.com/od/ipad_tricks/a/How-To-Text-On-The-Ipad.htm
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Error -5000 and: Error when loading the transcode setting

    For a couple of days I've been trying to export my project on a DVD, but on the half way of the transcoding it comes the Error -5000, and then there is such a message, something about the navigation, can't be found etc... I work on a mac OS X, using Encore CS3, all my data I've got on my external harddisk, with space of 80 GB.
    Besides, when I'm trying to export my project on a blu-ray disc, there comes a message: Error when loading the transcode setting! I know that there are only two codecs there - H.264 and MPEG-2, and there are only MPEG-2 movie files there, so I set the MPEG-2 codec. And there comes such a thing! Having set the H.264, there comes the same. What can it be?
    And the last one is the copy protection. I know that it can be activated, with CGMS and Macrovision, only if the CSS option is set on "permit no copies". So I do, and then there comes a message - "for these settings there is no copy protection provided". So what now to do?

    My flash drive PNY comes up with error -5000 and i do not know what to do can you help me with this problems

  • Error in connecting to Visual Administrator

    All of a sudden when I want to connect to the visual admin on my productive EP6 (/usr/sap/<SID>/JC<NR>/j2ee/admin/./go) after when I give my password an click on connect it does a little % connecting to database and than gives me the error:
    ! Error while connecting
    When I click on the right sided ! it comes with the task error message:
    Error while connecting
    java.lang.NullPointerException
    Nothing had been changed and in the night it worked but in the morning I got called by another engineer that he wasn't able to connect to the VA to do some changes SAP had given them to change.
    Hope anyone had had this same strange issue and has a solution on it

    It seemed that the logging of from the VA wasn't done correctly during some time (probably the did not first do a logout and than an exit, but exited right away)
    After a stop and start of the portal I was able to login again without the error.

  • Getting Error message"Result set already closed"

    i am getting java.lang.reflect.InvocationTargetException when i write code as
    rs.clearWarnings();
    rs.close();
    rs = null;
    but i am not getting any exception when write as
    rs.close();
    rs = null;
    java.lang.reflect.InvocationTargetException
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at org.rbi.aas.util.BusinessDelegateBean.service(BusinessDelegateBean.java:119)
      at org.rbi.aas.util.BusinessDelegate_mpm9t2_EOImpl.__WL_invoke(Unknown Source)
      at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
      at org.rbi.aas.util.BusinessDelegate_mpm9t2_EOImpl.service(Unknown Source)
      at org.rbi.aas.util.BusinessDelegate_mpm9t2_EOImpl_CBV.service(Unknown Source)
      at org.rbi.aas.util.CommonWebUtil.processRequest(CommonWebUtil.java:48)
      at org.rbi.aas.trans.actionclass.BankMergerAction.execute(BankMergerAction.java:149)
      at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
      at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
      at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
      at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.sql.SQLException: Result set already closed
      at weblogic.jdbc.wrapper.ResultSet.checkResultSet(ResultSet.java:144)
      at weblogic.jdbc.wrapper.ResultSet.preInvocationHandler(ResultSet.java:97)
      at weblogic.jdbc.wrapper.ResultSet_oracle_jdbc_driver_OracleResultSetImpl.clearWarnings(Unknown Source)
      at org.rbi.aas.util.DAOManagerImpl.resetResultSet(DAOManagerImpl.java:72)
      at org.rbi.aas.trans.dao.BankMergerDAO.getMerger(BankMergerDAO.java:95)
      at org.rbi.aas.trans.model.BankMergerFacadeBean.service(BankMergerFacadeBean.java:73)
      at org.rbi.aas.trans.model.BankMergerFacade_2lp38w_ELOImpl.__WL_invoke(Unknown Source)
      at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
      at org.rbi.aas.trans.model.BankMergerFacade_2lp38w_ELOImpl.service(Unknown Source)
      ... 41 more
    [17.07.2013 16:07:00]-[INFO]-[[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)']-[BusinessDelegateBean]-[[TRC] - service - BusinessDelegateBean:service: Reached at InvocationTargetException class java.sql.SQLException]
    BusinessException Caught
    java.lang.Exception: Result set already closed
      at org.rbi.aas.util.BusinessDelegateBean.service(BusinessDelegateBean.java:137)
      at org.rbi.aas.util.BusinessDelegate_mpm9t2_EOImpl.__WL_invoke(Unknown Source)
      at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
      at org.rbi.aas.util.BusinessDelegate_mpm9t2_EOImpl.service(Unknown Source)
      at org.rbi.aas.util.BusinessDelegate_mpm9t2_EOImpl_CBV.service(Unknown Source)
      at org.rbi.aas.util.CommonWebUtil.processRequest(CommonWebUtil.java:48)
      at org.rbi.aas.trans.actionclass.BankMergerAction.execute(BankMergerAction.java:149)
      at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
      at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
      at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
      at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    rs.clearWarnings();
    rs.close();
    rs = null;
    above code works perfectly well in jdeveoper 10g .....i am facing problem in JDeveloper 11.1.2.4.0...recently we have migrated to new weblogic server

  • Query Error Information: Result set is too large; data retrieval ......

    Hi Experts,
    I got one problem with my query information. when Im executing my report and drill my info in my navigation panel, Instead of a table with values the message "Result set is too large; data retrieval restricted by configuration" appears. I already applied "Note 1127156 - Safety belt: Result set is too large". I imported Support Package 13 for SAP NetWeaver 7. 0 BI Java (BIIBC13_0.SCA / BIBASES13_0.SCA / BIWEBAPP13_0.SCA) and executed the program SAP_RSADMIN_MAINTAIN (in transaction SE38), with the object and the value like Note 1127156 says... but the problem still appears....
    what Should I be missing ??????  How can I fix this issue ????
    Thank you very much for helping me out..... (Any help would be rewarded)
    David Corté

    You may ask your basis guy to increase ESM buffer (rsdb/esm/buffersize_kb). Did you check the systems memory?
    Did you try to check the error dump using ST22 - Runtime error analysis?
    Edited by: ashok saha on Feb 27, 2008 10:27 PM

  • Avoid JDBC sender error: Execute statement did not return a result set

    Hi!
    My JDBC sender adapter towards MS SQL server works fine, with an Execute statement calling a stored procedure that returns the source data needed. The stored procedure itself updates the status of database table records, so that only the unread records are returned each time the stored procedure is called.
    However, the communication channel monitoring sets a red flag for the JDBC sender adapter, when there are no values to fetch from the database table (using the stored procedure). Message says: "Database-level error reported by JDBC driver while executing statement 'EXECUTE FetchMessage 1, 9000'. The JDBC driver returned the following error message: 'com.microsoft.sqlserver.jdbc.SQLServerException: The statement did not return a result set.'. For details, contact your database server vendor."
    This is not an error situation, as I do not expect there to be any values to fetch from the database at all times.
    I do not see how to change the stored procedure to avoid this error.
    Is there a parameter to be set on the JDBC adapter that I can use, so the red flag is avoided?
    Thanks for any input!
    Regards,
    Oeystein Emhjellen

    Hi Oeystein Emhjellen.
    The problem is Store Procedure that has to generate always a ResultSet (or cursor). If it doesn't have a output, you have to generate an Empty ResultSet.
    Like a SELECT Statement:
    If there are data, SELECT get an output result but if it get nothing the SELECT Statement get a empty ResultSet.
    Ask to your database team.
    I hope it helps you.
    Bruno.

  • Result Set(Value set ) Error..URGENT

    Hi Gurus,
             I am facing an issue here. I created a valueset and passed it as a variable to pass the top 10 customer to another query. When we run the second query ( which need top 10 customers as value set)we get message 'ABORT COULD NOT CARRY OUT ALL NORMINGS'
    Also on the RSA1> Reporting Agent> Valueset after scheduling the scheduling package to Immediate, when we check the Scheduling package for Job Over view, we get message saying ' Job List is Empty'. We need your help.
    Thanks and Regards,
    Anil

    What database are you connecting to?
    There is a bug in Oracle 8 that will make all
    your Select * from ... result sets not updatables,
    you need to list the columns name to get around it.

  • Error when creating a saved result set

    Hi all,
    I want to create a saved result set with the marketing tool in OBIEE. I have made a saved result list format. But when I want to create the saved result set, I get this error:
    Error in getting cursor for WorkNode (Id:0)
    Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004. Code: 10018. [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused. [nQSError: 43001] Authentication failed for Administrator in repository Star: invalid user/password. (08004)
    Does anyone know how to solve this?

    Hi,
    You would have to create Credential store values for the Administrator User.
    (Refere to the Chapter 5 – “Oracle BI Presentation Services Credential Store” of the OBIEE Deployment Guide). You would have to include the Credential store info and additional Administrator user tag to overcome this issue.
    Hope this helps!
    Thanks
    Yuvaraj Narayanan

Maybe you are looking for

  • How to process very large internal tables and stop time limit

    Hello Experts, I am currently having a problem on how to fix a certain report where we process more than 500 thousand records in the internal table. I can't think of any solution that can make the below code any faster. I just checked in our prod ser

  • XPath expression for Native Schema (Opaque)

    Hi people, I have a BPEL process that dequeues a message using AQ Adapter, and we are using a Native (Opaque) schema for that, since we do not have the XSD available for this message. The XML Message generated is: <?xml version="1.0" encoding="UTF-8"

  • Install two third party exe's with labview 8 install file

    I am trying to install two thrid party drivers onto a deployment machine. I am using labview 8.0 and am deploying the application on a XP machine. The program was developed on a XP machine so that is not an issue.  I have created a batch file that wo

  • Web page composer (CMS) tool for SAP Netweaver 7.1 CE?

    Hi All, Can some body help me out finding the WPC tool for SAP Netweaver 7.1 CE version? All i can find in SAP portal is for WPC tool for SAP WAS 7.0 (2004s) version. Thanks, Kishore

  • Locked out of e mail

     My e-mail has worked fine now I can not access it nor will my security questions work how do I access my e-mail. I'm a CT customer I called both ATT and Frontier neither can help I find this extremly frustrating. can anyone help