SybSQLException

I am trying to call a stored procedure(sybase) and getting the below exception stack trace
com.sybase.jdbc2.jdbc.SybSQLException: Cannot run this command because Java services are not enabled. A user with System Administrator (SA) role must reconfigure the system to enable Java.
please help me out in debug this
thanks
GG

Hello GG,
This is an odd error that doesn't seem related to TopLink, so you may want to check with Sybase. I did find one reference that seemed to suggest that it could be caused by a lack of user connections and increasing them will resolve it:
http://www.essbase.com/techdocs/perfsuite8/installation80.pdf
Hope this helps,
Chris

Similar Messages

  • Error while updating JDBD table

    Hi all,
    Am getting the error at the receiver JDBC CC. I have checked the conceren mapping also . i t is working under test tab.
    Error while parsing or executing XML-SQL document: Error processing request in sax parser: Error when executing statement for table/stored proc. 'SAP_STG_AP_SAP_REF' (structure 'Statement'): com.sybase.jdbc3.jdbc.SybSQLException: Attempt to insert duplicate key row in object 'SAP_STG_AP_SAP_REF' with unique index 'SAP_STG_AP_SAP_REF_IX1'
    Any sugestion?
    Thanks,
    kanan

    ya issue is while updating the jdbc table ..duplicate entries are coming...I have check the maping xml also with the same data..I think I need to change the mapping -to remove the duplicate (entry in that field) using some function. Any idea which will be the function?? + please let me know how to find out which field is the error refering to in the jdbc table-- with unique index 'SAP_STG_AP_SAP_REF_IX1'
    In my scenario Action is INSERT. At the mapping output, there are some entries (5-6 ACCESS) where all the fields under the ACCESS are similar
    kanan

  • Unable to find table

    Hi,
    I get the following exception while trying to execute a query
    com.sybase.jdbc2.jdbc.SybSQLException: Table_name not present.
    Specify owner.objectname....
    However the table does exist in the database.
    Also, this problem does not manifest always. After I shut down and restart the
    server/machine couple of times, it seems to work fine.
    Does anyone have an idea what the problem may be?
    Thanks,
    Priya

    Priya wrote:
    >
    Hi,
    Its doing neither.
    Simple preparedstatements (just select columns call involving joins) are executed.
    Thanks,
    PriyaOk, then it sounds like a Sybase driver/DBMS bug. Try to duplicate it with a simple
    standalone program using just the sybase driver.
    Joe
    >
    Joseph Weinstein <[email protected]> wrote:
    Priya wrote:
    Hi,
    I get the following exception while trying to execute a query
    com.sybase.jdbc2.jdbc.SybSQLException: Table_name not present.
    Specify owner.objectname....
    However the table does exist in the database.
    Also, this problem does not manifest always. After I shut down andrestart the
    server/machine couple of times, it seems to work fine.
    Does anyone have an idea what the problem may be?
    Thanks,
    PriyaIt may be that some of your code is either sending SQL like 'use tempdb'
    etc,
    to change the database context from what you expect, or the code is calling
    setCatalog(), which does the same thing.
    Joe

  • Urgent: UDC Issue

    Hi All,
    My requirement is to extract the data from the legacy system i.e. Sybase 12.5 using UDC to SAP BI 7.0. We have established UDC connection, created view and BI 7.0 datasource. The user has all the access i.e. select, dbo access for the view. While datasource creation I have selected UDC source object from the Sybase, used default system proposed fields and activated the datasource. When I try to check the data in the preview, I am getting following message in the status bar:
    S:RSSDK:300 Query execution failed: "DB name"."dbo"."VIEW1" not found. Specify owner.objectname or use sp help to check whether the object exists (sphelp may produce lots of output). I have checked in the URL http://<hostname>:port/TestJDBC_Web/TestJDBCPage.jsp before preview, it worked fine and showed all the table names and data in tables.
    J2EE Visual Admin Logfile Data:
    Error: com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean$MsgException: Query execution failed: "DBSctlg"."dbo"."view_tbl_xref_1" not found.
    Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output).
    Error#1#/Applications/BI/UDI#Java###com.sybase.jdbc3.jdbc.SybSQLException: "DBSctlg"."dbo"."colores" not found.
    Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output)
    By same username I have logged in Sybase and ran created view, which extracted data without any problems.
    We have followed same procedure for creation of connections, views and datasources for SQL server, it is working fine without any issues. We have problem only with Sybase system. Would anyone help me in resolving this issue. ******Gurantee of award points********
    Regards
    Eric.

    I don't use the new CF tags, but I've been using Extjs 1.1
    for a recent project. While there may be some internal limit
    imposed by CF, I think that 20 is way too many grids for a page and
    I think the web page will choke trying to display everything. I'm
    finding that the extjs grid really bogs down the browser when
    handling large grids and seems to consume large amounts of
    resources in general.

  • Problem in calling nested stored procedure

    Hi,
    I am using execute(), getMoreResults() and getResultSet() methods to call sybase stored proc. It is working fine when calling a simple stored proc. But it is giving following error when this stored proc calls another stored proc inside it.
    <<
    Error connecting: com.sybase.jdbc2.jdbc.SybSQLException: Implicit conversion from datatype 'INT' to 'CHAR' is not allowed. Use the CONVERT function to run this query
    >>
    It will be very helpful if somebody shares the experience of nested stored procs calls using JDBC.
    -Subhendu

    Vinay,
    Thanks for replying...
    Following is the excerpts from the parent procedure
    create proc TEST_PARENT_sp
    (@fundID char(5) = NULL)
    as
    begin
    exec TEST_CHILD_sp @fundID
    end
    The code for CHILD proc is attached
    create procedure TEST_CHILD_sp
    (@fundID char(5) = NULL)
    as
    begin
    insert #PV_funds_curr
    (fundID,
    curr_id,
    curr_type,
    tcurr_id,
    in_xrate_id,
    out_xrate_id,
    display_seq)
    select
    pv.fund_id,
    rl.curr_id,
    rl.curr_type,
    rl.curr_id,
    null,
    null,
    pv.display_seq
    from
    #PV_funds pv,
    RL_currencies rl,
    #PV_currencies tmp_c
    where
    @fundID in (pv.fund_id, 'ALL') and
    pv.fund_id = rl.fund_id and
    tmp_c.curr_id in (rl.curr_id, 'ALL') and
    tmp_c.curr_type in (rl.curr_type, 'ALL')
    end
    Regards,
    Subhendu.
    PS.- The Parent Stored proc works fine while calling from other applications,e.g., Rapid SQL, isql.

  • Problem with UDCONNECT with DB2 Z/OS

    We want to make a connection BW  to DB2 Z/OS through UDConnect,  it connects to the computer z / os 390 but unable to find  any tables.
    This is the log:
    #1.5#000B5DE015BF00AB000000600000201D00043F65701D2270#1195604812045#com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean#sap.com/com.sap.ip.bi.sdk.datasource.fields#com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean#J2EE_GUEST#0##NWD#A3075133                        #4741E79CC7D61F4CE10000000F80018D#SAPEngine_Application_Thread[impl:3]_37##0#0#Error#1#/Applications/BI/UDI#Java###com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean$MsgException: Table: t_cred not found
    [EXCEPTION]
    #1#com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean$MsgException: Table: t_cred not found
            at com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean.processFieldsRemoteGet(BI_SDK_Bean.java:1508)
            at com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean.processFunction(BI_SDK_Bean.java:596)
            at com.sap.ip.bi.sdk.datasource.beans.IBI_SDK_LocalLocalObjectImpl0_0.processFunction(IBI_SDK_LocalLocalObjectImpl0_0.java:102)
            at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:249)
            at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:215)
            at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156)
            at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7785)
            at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405)
            at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728)
            at com.sap.mw.jco.JCO$Server.listen(JCO.java:8145)
            at com.sap.mw.jco.JCO$Server.work(JCO.java:8265)
            at com.sap.mw.jco.JCO$Server.loop(JCO.java:8212)
            at com.sap.mw.jco.JCO$Server.run(JCO.java:8128)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Please advise.
    Thanks,
    Irvin

    Hi Irvin,
       I am also stuck with same issue. I am on BI 7.0, created UDC connection, UDC data source, view created and user has all the access to extract the data from the view. But when I preview the view data in data source preview tab there is an message. RSSDK 300 Query Execution failed. I checked the J2EE log I found the following information:
    Error: com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean$MsgException: Query execution failed: "DBSctlg"."dbo"."view_tbl_xref_1" not found.
    Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output).
    [EXCEPTION]
    com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean$MsgException: Query execution failed: "DBSctlg"."dbo"."view_tbl_xref_1" not found.
    Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output).     
    at com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean.getDataRead(BI_SDK_Bean.java:898)     
    at com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean.processDataRemoteGetRead(BI_SDK_Bean.java:751)     
    at com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean.processDataRemoteGet(BI_SDK_Bean.java:711)     
    at com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean.processFunction(BI_SDK_Bean.java:589)     
    at com.sap.ip.bi.sdk.datasource.beans.IBI_SDK_LocalLocalObjectImpl0_0.processFunction(IBI_SDK_LocalLocalObjectImpl0_0.java:102)
    at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:253)
         at com.sap.engine.services.rfc
    com.sap.ip.bi.sdk.datasource.beans.BI_SDK_Bean$MsgException: Query execution failed: "DBSctlg"."dbo"."view_tbl_xref_1" not found.
    Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output).
    Error#1#/Applications/BI/UDI#Java###com.sybase.jdbc3.jdbc.SybSQLException: "DBSctlg"."dbo"."colores" not found.
    Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output)
    Please send me the procedure you followed to resolve this issue.
    Thanks and Regards
    Eric.

  • AniServer Campus Manager problem

    Hi I recently ran a Device patch update and ever since I have had major problems with Campus Manager.
    I figured it was Aniserver related So i have done the following so far:
    1- I reinitialised the ANI Database
    2 - I replaced the aniserv.properties with the .orig file.
    Still the problems exist even if i managed to get the Aniserver started campus manager data collection would have problems and intermittent error messages when trying to access Campus Manager admin pages.
    3 - I decided to upgrade to LMS3.2 SP1
         It seemed to be ok with data collection but then when I came in to work today it hadnt run any scheduled aquistions when i went tinto the admin pages I had the error messages again unable to get properties from server.
    4 I decided to try a complete restore of the database to a date before the initial device package update.
    But I still have problems with the aniserver Failed to run.
    Please Help!!
    Kind regards Dean
    Here is the Ani log
    2011/06/23 13:11:10 main ani ERROR ServiceModule: Failed to instantiate com.cisco.nm.ani.server.dfmpoller.NoServiceModule
    2011/06/23 13:11:10 main ani MESSAGE DBConnection: Created new Database connection [hashCode = 6164599]
    2011/06/23 13:11:12 main ani MESSAGE PartialSMFCommit: Partial Commit is enabled for DataCollection
    2011/06/23 13:11:16 main ani ERROR POStore: Exception caught: com.cisco.nm.ani.server.frontend.AniStaticConfigException: AniStaticConfigException: Failed (sql) to verify/construct schema for PO com.cisco.nm.ani.server.topo.PagpPortChannel because: com.sybase.jdbc2.jdbc.SybSQLException: SQL Anywhere Error -116: Table must be empty
    2011/06/23 13:11:16 main ani ERROR AniLoadConfiguration: AniStaticConfigException: Failed to construct or verify database

    Seems to be working fine now I used the info in the following link to reinitialise the ani.db  https://supportforums.cisco.com/thread/2083513
    Using this alone did not fix it opt/CSCOpx/bin/perl /opt/CSCOpx/bin/dbRestoreOrig.pl dsn=ani dmprefix=ANI
    But doing this as well seemed to sort it:
    First, set the CiscoWorks Daemon Manager service to Manual, and reboot the server.  When the server reboots, delete NMSROOT\databases\ani\ani.log if it exists.  Then run:
    NMSROOT\objects\db\win32\dbsrv9 -f NMSROOT\databases\ani\ani.db
    After that, set the Daemon Manager service back to Automatic, and reboot again
    Regards Dean

  • Maximum length of identifier in insert query

    Hi,
    I am using Sybase 12.0 with JConnect 5.
    I am facing some problem with insert query.
    It gives exception like " identitifer is too long maximum length is 30"
    If i run then same query on winSql its working fine but with JDBC not working.
    Pls help me reagrding this.

    Hi,
    this is the error message i am getting
    com.sybase.jdbc2.jdbc.SybSQLException: The identifier that starts with '"T3211PU,,insert into Illustr' is too long. Maximum length is 28.
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.tds.Tds.processEed(Tds.java:2408)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.tds.Tds.nextResult(Tds.java(Compiled Code))
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.jdbc.ResultGetter.nextResult(ResultGetter.java:69)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:201)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:182)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.jdbc.SybStatement.executeLoop(SybStatement.java:1535)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.jdbc.SybStatement.execute(SybStatement.java:1527)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.sybase.jdbc2.jdbc.SybStatement.execute(SybStatement.java:742)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.dcx.catl.macscompiler.util.CommonDataAccessManager.execQueryRetState(CommonDataAccessManager.java:759)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.dcx.catl.macscompiler.bo.RemoveIllustrationJavaBean.execute(RemoveIllustrationJavaBean.java:414)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.dcx.catl.macscompiler.ao.RemoveIllustrationAction.execute(RemoveIllustrationAction.java:219)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:446)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:266)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1292)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R      at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    [4/27/05 17:02:50:031 IST] 575ee900 SystemErr R [4/27/05 17:02:50:031 IST] 575ee900 SystemOut O SQLException: The identifier that starts with '"T3211PU,,insert into Illustr' is too long. Maximum length is 28.

  • RICS0001:Internal Error,unable to process the collected data from the device.

    Hi all,
    I've got the following error in Inventory Collection: 'RICS0001:Internal Error,unable to process the collected data from the device.'
    System is CW LMS 2.6
    If I search the web I get the following Cisco document:
    http://www.cisco.com/en/US/products/sw/cscowork/ps2073/prod_troubleshooting_guide09186a008036dff2.html
    '...in the log directory look for IC_Server.log.'
    IC_Server.log:
    [ Di Nov 16  15:54:27 CET 2010 ],INFO ,[Thread-25],com.cisco.nm.rmeng.inventory.ics.core.ICSCore,173,Got Async Request, User Name :admin
    [ Di Nov 16  15:54:27 CET 2010 ],INFO ,[Thread-25],com.cisco.nm.rmeng.inventory.ics.core.ICSCore,179,Request ID is : 1289919235488
    [ Di Nov 16  15:54:27 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.inventory.ics.core.CollectionController,309,Started processing device ID: 3341
    [ Di Nov 16  15:54:27 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.RMELogger,724,com.cisco.nm.rmeng.util.db.DatabaseConnectionPool,getConnection,59,Inside ICSDatabaseConnection, MAX_COUNT =20
    [ Di Nov 16  15:54:28 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.inventory.ics.core.CollectionController,387,Started processing device Name: 9.152.255.101
    [ Di Nov 16  15:54:28 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,g$eval,103,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:g$eval:populating ContainmentAG attributes, begins...
    [ Di Nov 16  15:54:28 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,populatingTheChassis,110,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:populatingTheChassis:ContainmentAG attributes,collection from the device begins...
    [ Di Nov 16  15:54:29 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,populatingTheChassis,147,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:populatingTheChassis:ContainmentAG attributes,collection from the device successful...
    [ Di Nov 16  15:54:29 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,populatingTheChassis,149,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:populatingTheChassis:ContainmentAG attributes,population begins...
    [ Di Nov 16  15:54:29 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,populatingTheChassis,216,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:populatingTheChassis:Before method getSlotsConfiguredStatistics
    [ Di Nov 16  15:54:29 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,populatingTheChassis,225,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:populatingTheChassis:After method getSlotsConfiguredStatistics
    [ Di Nov 16  15:54:29 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,populatingTheChassis,245,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:populatingTheChassis:ContainmentAG attributes,population completed...
    [ Di Nov 16  15:54:29 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.util.logger.XDILogger,77,com.cisco.nm.xms.xdi.pkgs.SharedInventoryCatIOS.ContainmentAGI_ENTITY_Mib_Non_Modular,g$eval,105,com.cisco.nm.xms.xdi.pkgs.SharedInventoryRouter:ContainmentAGI_ENTITY_Mib_Non_Modular:g$eval:populating ContainmentAG attributes, ends...
    [ Di Nov 16  15:54:43 CET 2010 ],INFO ,[Thread-14],com.cisco.nm.rmeng.inventory.ics.core.CollectionController,477,DP time is 15 seconds for 9.152.255.101
    [ Di Nov 16  15:54:44 CET 2010 ],ERROR,[Thread-14],com.cisco.nm.rmeng.util.logger.RMELogger,770,com.cisco.nm.rmeng.inventory.ics.invchange.AddInvChange,effect,33,Unexpected error :com.sybase.jdbc2.jdbc.SybSQLException: ASA Fehler -193: Primärschlüssel für Tabelle 'PhysicalElement' ist nicht eindeutig
        at com.sybase.jdbc2.tds.Tds.processEed(Tds.java:2834)
        at com.sybase.jdbc2.tds.Tds.nextResult(Tds.java:2156)
        at com.sybase.jdbc2.jdbc.ResultGetter.nextResult(ResultGetter.java:69)
        at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:220)
        at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:203)
        at com.sybase.jdbc2.jdbc.SybStatement.executeLoop(SybStatement.java:1766)
        at com.sybase.jdbc2.jdbc.SybStatement.execute(SybStatement.java:1758)
        at com.sybase.jdbc2.jdbc.SybPreparedStatement.execute(SybPreparedStatement.java:619)
        at com.cisco.nm.rmeng.inventory.ics.dbrep.DBRecord.insert(DBRecord.java:50)
        at com.cisco.nm.rmeng.inventory.ics.util.ICSDatabaseConnection.insert(ICSDatabaseConnection.java:91)
        at com.cisco.nm.rmeng.inventory.ics.invchange.AddInvChange.effect(AddInvChange.java:29)
        at com.cisco.nm.rmeng.inventory.ics.server.InvDataProcessor.processInvData(InvDataProcessor.java:394)
        at com.cisco.nm.rmeng.inventory.ics.core.CollectionController.run(CollectionController.java:849)
        at java.lang.Thread.run(Thread.java:534)
    [ Di Nov 16  15:54:44 CET 2010 ],ERROR,[Thread-14],com.cisco.nm.rmeng.inventory.ics.server.InvDataProcessor,448,ASA Fehler -193: Primärschlüssel für Tabelle 'PhysicalElement' ist nicht eindeutig
    com.sybase.jdbc2.jdbc.SybSQLException: ASA Fehler -193: Primärschlüssel für Tabelle 'PhysicalElement' ist nicht eindeutig
        at com.sybase.jdbc2.tds.Tds.processEed(Tds.java:2834)
        at com.sybase.jdbc2.tds.Tds.nextResult(Tds.java:2156)
        at com.sybase.jdbc2.jdbc.ResultGetter.nextResult(ResultGetter.java:69)
        at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:220)
        at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:203)
        at com.sybase.jdbc2.jdbc.SybStatement.executeLoop(SybStatement.java:1766)
        at com.sybase.jdbc2.jdbc.SybStatement.execute(SybStatement.java:1758)
        at com.sybase.jdbc2.jdbc.SybPreparedStatement.execute(SybPreparedStatement.java:619)
        at com.cisco.nm.rmeng.inventory.ics.dbrep.DBRecord.insert(DBRecord.java:50)
        at com.cisco.nm.rmeng.inventory.ics.util.ICSDatabaseConnection.insert(ICSDatabaseConnection.java:91)
        at com.cisco.nm.rmeng.inventory.ics.invchange.AddInvChange.effect(AddInvChange.java:29)
        at com.cisco.nm.rmeng.inventory.ics.server.InvDataProcessor.processInvData(InvDataProcessor.java:394)
        at com.cisco.nm.rmeng.inventory.ics.core.CollectionController.run(CollectionController.java:849)
        at java.lang.Thread.run(Thread.java:534)
    [ Di Nov 16  15:54:44 CET 2010 ],ERROR,[Thread-14],com.cisco.nm.rmeng.inventory.ics.core.CollectionController,861, Exception occured in process method while processing: 9.152.255.101 ASA Fehler -193: Primärschlüssel für Tabelle 'PhysicalElement' ist nicht eindeutig
    ICSException :: ASA Fehler -193: Primärschlüssel für Tabelle 'PhysicalElement' ist nicht eindeutig
        at com.cisco.nm.rmeng.inventory.ics.server.InvDataProcessor.processInvData(InvDataProcessor.java:463)
        at com.cisco.nm.rmeng.inventory.ics.core.CollectionController.run(CollectionController.java:849)
        at java.lang.Thread.run(Thread.java:534)
    I don't know where the German error message comes from. The whole system is English. Translation is: "ASA error -192: primary key for table 'PhysicalElement' isn't distinct'
    Thanks for your help!
    Alex

    Well known issue in LMS 2.6. Most likely you are hitting CSCsm97530. As a temporary solution you could remove and re-add problematic device from CS. To get a permanent fix you need a patch (provided by TAC).

  • Access Databases LMS 4.2 with jython script ( Integration with HP uCMDB )

    Questions / Integration Adapter Cisco Prime.
    There is an integration adapter for HP uCMDB to get CI information from Cisco Works (Prime whatever ….).
    We set up a user for CW according to “Open Database Schema Support in Cisco Prime LAN Management Solution 4.2” , page 1ff.
    According to this document we created a user lmsdatafeed. If we run this integration from HP uCMDB / DDM we can connect to rmeng database using jmx to port 43455, but we have not sufficient privileges to get all the needed information.
    We tried to connect with a user that has full rights (Admin User), but we cannot connect at all with this user.
    We use Cisco Prime LMS 4.2 and we want to have our network devices as Configuration Items (CI's) in our HP uCMDB
    Our question:
    Would it be save to give more privileges to the user lmsdatafeed ?
    And if yes: How can this be done ?
    Is it possible to give an admin user the rights to connect by jmx/jdbc ?
    Below I post the communication protocol of the adapter, connection is OK and the first select statement to, but them this user doesn't have enough privileges. The error messages are in german for some reason ... (means: "User has not sufficient privileges to selet from DM_Dev_State")
    Any help is appreciated !
    ==== snip =====
    execution jobId="DS_CiscoPrime_CiscoWorks NetDevices" destinationid="e6ac2661c751b23929fb1cf4f97a536f">
                    <destination>
                                   <destinationData name="id">e6ac2661c751b23929fb1cf4f97a536f</destinationData>
                                   <destinationData name="ip_address">172.28.193.55</destinationData>
                                   <destinationData name="db_port">43455</destinationData>
                    </destination>
                    <protocol name="sql" cm_credential_id="20_1_CMS">
                                   <object id="8c1f2739bad14d0bd6242574005249dd" id_type="CmdbObjectID" isReference="false" is_anchor="false">
                                                   <attribute name="protocol_username" type="String">lmsdatafeed</attribute>
                                                   <attribute name="protocol_netaddress" type="String">DEFAULT</attribute>
                                                   <attribute name="sqlprotocol_encryption_method" type="String">None</attribute>
                                                   <attribute name="protocol_port" type="String">43455</attribute>
                                                   <attribute name="sqlprotocol_dbsid" type="Unknown" />
                                                   <attribute name="sqlprotocol_truststore" type="Unknown" />
                                                   <attribute name="protocol_timeout" type="String">20000</attribute>
                                                   <attribute name="user_label" type="String">CW RME</attribute>
                                                   <attribute name="cm_credential_id" type="String">20_1_CMS</attribute>
                                                   <attribute name="protocol_index" type="Integer">2</attribute>
                                                   <attribute name="protocol_type" type="String">sqlprotocol</attribute>
                                                   <attribute name="sqlprotocol_dbname" type="Unknown" />
                                                   <attribute name="sqlprotocol_dbtype" type="String">Sybase</attribute>
                                   </object>
                    </protocol>
                    <params>
                                   <param param_name="ignoreNodesWithoutIP" param_value="true" />
                                   <param param_name="allowDnsLookup" param_value="false" />
                                   <param param_name="rmeDbName" param_value="rmengdb" />
                                   <param param_name="queryChunkSize" param_value="250" />
                                   <param param_name="JOB_ID" param_value="DS_CiscoPrime_CiscoWorks NetDevices" />
                    </params>
                    <CONNECT start="9:43:6" duration="766" CMD="client_connect" RESULT="success" type="sql" credentialsId="20_1_CMS">
                                   <ClientProperties>
                                                   <prop name="protocol_index" value="2" />
                                                   <prop name="protocol_timeout" value="20" />
                                                   <prop name="credentialsId" value="20_1_CMS" />
                                                   <prop name="sqlprotocol_dbname" value="" />
                                                   <prop name="sqlprotocol_dbsid" value="" />
                                                   <prop name="cm_credential_id" value="20_1_CMS" />
                                                   <prop name="sqlprotocol_dbtype" value="Sybase" />
                                                   <prop name="protocol_type" value="sqlprotocol" />
                                                   <prop name="preurl" value="jdbc:sybase:Tds:%%ipaddress%%:%%protocol_port%%/%%sqlprotocol_dbname%%?CHARSET=cp1252" />
                                                   <prop name="driver" value="com.sybase.jdbc2.jdbc.SybDriver" />
                                                   <prop name="protocol_netaddress" value="DEFAULT" />
                                                   <prop name="protocol_port" value="43455" />
                                                   <prop name="sqlprotocol_encryption_method" value="None" />
                                                   <prop name="user_label" value="CW RME" />
                                                   <prop name="protocol_username" value="lmsdatafeed" />
                                                   <prop name="sqlprotocol_truststore" value="" />
                                   </ClientProperties>
                    </CONNECT>
                    <log start="9:43:6" severity="debug">[CiscoWorks_NetDevices.py:DiscoveryMain] Connected to CiscoWorks LMS Resource Manager Essentials database at port &lt;43455&gt;...</log>
                    <EXEC start="9:43:6" duration="16" CMD="SELECT db_name()" RESULT="success" />
                    <EXEC start="9:43:6" duration="0" CMD="next" RESULT="true" />
                    <EXEC start="9:43:6" duration="0" CMD="getStringByIndex:1" RESULT="rmengdb" />
                    <EXEC start="9:43:6" duration="0" CMD="next" RESULT="false" />
                    <EXEC start="9:43:6" duration="359" CMD="SELECT COUNT(1) FROM lmsdatagrp.NETWORK_DEVICES" RESULT="success" />
                    <EXEC start="9:43:6" duration="0" CMD="next" RESULT="true" />
                    <EXEC start="9:43:6" duration="0" CMD="getStringByIndex:1" RESULT="214" />
                    <EXEC start="9:43:6" duration="0" CMD="next" RESULT="false" />
                    <log start="9:43:6" severity="debug">[CiscoWorks logger] [CiscoWorks_NetDevices.py:getNetworkDevices] Got &lt;214&gt; Network Devices...</log>
                    <log start="9:43:6" severity="debug">[CiscoWorks logger] [CiscoWorks_NetDevices.py:getNetworkDevices] Got &lt;1&gt; chunks...</log>
                    <EXEC start="9:43:6" duration="16">
                                   <CMD>[CDATA: SELECT TOP 250 START AT 1 netdevices.Device_Id, deviceState.NetworkElementID, netdevices.Device_Display_Name, netdevices.Host_Name, netdevices.Device_Category, netdevices.Device_Model, netdevices.Management_IPAddress, deviceState.Global_State FROM lmsdatagrp.NETWORK_DEVICES netdevices JOIN dba.DM_Dev_State deviceState ON netdevices.Device_Id=deviceState.DCR_ID]</CMD>
                                   <RESULT IS_NULL="Y" />
                                   <ERROR class="com.sybase.jdbc2.jdbc.SybSQLException">
                                                   <message>[CDATA: SQL Anywhere-Fehler -121: Berechtigung verweigert: Sie haben nicht die Berechtigung, aus "DM_Dev_State" auszuwählen]</message>
                                                   <stacktrace>
                                                                   <frame class="com.sybase.jdbc2.tds.Tds" method="processEed" file="Tds.java" line="2884" />
                                                                   <frame class="com.sybase.jdbc2.tds.Tds" method="nextResult" file="Tds.java" line="2206" />
                                                                   <frame class="com.sybase.jdbc2.jdbc.ResultGetter" method="nextResult" file="ResultGetter.java" line="69" />
                                                                   <frame class="com.sybase.jdbc2.jdbc.SybStatement" method="nextResult" file="SybStatement.java" line="220" />
                                                                   <frame class="com.sybase.jdbc2.jdbc.SybStatement" method="nextResult" file="SybStatement.java" line="203" />
                                                                   <frame class="com.sybase.jdbc2.jdbc.SybStatement" method="queryLoop" file="SybStatement.java" line="1596" />
                                                                   <frame class="com.sybase.jdbc2.jdbc.SybStatement" method="executeQuery" file="SybStatement.java" line="1581" />
                                                                   <frame class="com.sybase.jdbc2.jdbc.SybStatement" method="executeQuery" file="SybStatement.java" line="419" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.clients.agents.DatabaseAgent" method="getTable" file="DatabaseAgent.java" line="267" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.clients.query.SqlClient$3" method="executePrivate" file="SqlClient.java" line="246" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.clients.executors.Executor" method="execute" file="Executor.java" line="26" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.clients.BaseClient" method="exec" file="BaseClient.java" line="365" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.clients.query.SqlClient" method="getTable" file="SqlClient.java" line="258" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.clients.query.SqlClient" method="executeQuery" file="SqlClient.java" line="209" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.clients.query.SqlClient" method="executeQuery" file="SqlClient.java" line="195" />
                                                                   <frame class="sun.reflect.NativeMethodAccessorImpl" method="invoke0" file="NativeMethodAccessorImpl.java" line="-2" />
                                                                   <frame class="sun.reflect.NativeMethodAccessorImpl" method="invoke" file="NativeMethodAccessorImpl.java" line="57" />
                                                                   <frame class="sun.reflect.DelegatingMethodAccessorImpl" method="invoke" file="DelegatingMethodAccessorImpl.java" line="43" />
                                                                   <frame class="java.lang.reflect.Method" method="invoke" file="Method.java" line="601" />
                                                                   <frame class="org.python.core.PyReflectedFunction" method="__call__" file="PyReflectedFunction.java" line="-1" />
                                                                   <frame class="org.python.core.PyMethod" method="__call__" file="PyMethod.java" line="-1" />
                                                                   <frame class="org.python.core.PyObject" method="__call__" file="PyObject.java" line="-1" />
                                                                   <frame class="org.python.core.PyInstance" method="invoke" file="PyInstance.java" line="-1" />
                                                                   <frame class="org.python.pycode._pyx33" method="doQuery$2" file="ciscoworks_utils" line="60" />
                                                                   <frame class="org.python.pycode._pyx33" method="call_function" file="ciscoworks_utils" line="-1" />
                                                                   <frame class="org.python.core.PyTableCode" method="call" file="PyTableCode.java" line="-1" />
                                                                   <frame class="org.python.core.PyTableCode" method="call" file="PyTableCode.java" line="-1" />
                                                                   <frame class="org.python.core.PyFunction" method="__call__" file="PyFunction.java" line="-1" />
                                                                   <frame class="org.python.core.PyObject" method="invoke" file="PyObject.java" line="-1" />
                                                                   <frame class="org.python.pycode._pyx42" method="getNetworkDevices$1" file="CiscoWorks_NetDevices" line="65" />
                                                                   <frame class="org.python.pycode._pyx42" method="call_function" file="CiscoWorks_NetDevices" line="-1" />
                                                                   <frame class="org.python.core.PyTableCode" method="call" file="PyTableCode.java" line="-1" />
                                                                   <frame class="org.python.core.PyTableCode" method="call" file="PyTableCode.java" line="-1" />
                                                                   <frame class="org.python.core.PyFunction" method="__call__" file="PyFunction.java" line="-1" />
                                                                   <frame class="org.python.core.PyObject" method="__call__" file="PyObject.java" line="-1" />
                                                                   <frame class="org.python.pycode._pyx42" method="DiscoveryMain$6" file="CiscoWorks_NetDevices" line="480" />
                                                                   <frame class="org.python.pycode._pyx42" method="call_function" file="CiscoWorks_NetDevices" line="-1" />
                                                                   <frame class="org.python.core.PyTableCode" method="call" file="PyTableCode.java" line="-1" />
                                                                   <frame class="org.python.core.PyTableCode" method="call" file="PyTableCode.java" line="-1" />
                                                                   <frame class="org.python.core.PyFunction" method="__call__" file="PyFunction.java" line="-1" />
                                                                   <frame class="org.python.core.PyObject" method="invoke" file="PyObject.java" line="-1" />
                                                                   <frame class="org.python.pycode._pyx47" method="f$0" file="&lt;string&gt;" line="2" />
                                                                   <frame class="org.python.pycode._pyx47" method="call_function" file="&lt;string&gt;" line="-1" />
                                                                   <frame class="org.python.core.PyTableCode" method="call" file="PyTableCode.java" line="-1" />
                                                                   <frame class="org.python.core.PyCode" method="call" file="PyCode.java" line="-1" />
                                                                   <frame class="org.python.core.Py" method="runCode" file="Py.java" line="-1" />
                                                                   <frame class="org.python.core.Py" method="exec" file="Py.java" line="-1" />
                                                                   <frame class="org.python.util.PythonInterpreter" method="exec" file="PythonInterpreter.java" line="-1" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.execution.impl.ExecutionEngineImpl" method="executeScript" file="ExecutionEngineImpl.java" line="214" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.execution.impl.ExecutionEngineImpl" method="executeScript" file="ExecutionEngineImpl.java" line="189" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.execution.impl.ExecutionEngineImpl" method="executeScript" file="ExecutionEngineImpl.java" line="185" />
                                                                   <frame class="com.hp.ucmdb.discovery.library.execution.impl.ExecutionEngineImpl" method="execute" file="ExecutionEngineImpl.java" line="102" />
                                                                   <frame class="com.hp.ucmdb.discovery.probe.services.dynamic.core.TablesProcessorUtil" method="processDestinationTables" file="TablesProcessorUtil.java" line="119" />
                                                                   <frame class="com.hp.ucmdb.discovery.probe.services.dynamic.core.DynamicService" method="discover" file="DynamicService.java" line="71" />
                                                                   <frame class="com.hp.ucmdb.discovery.probe.agents.probemgr.taskexecuter.JobExecuter" method="launchTask" file="JobExecuter.java" line="1238" />
                                                                   <frame class="com.hp.ucmdb.discovery.probe.agents.probemgr.taskexecuter.JobExecuter$JobExecuterWorker" method="launch" file="JobExecuter.java" line="993" />
                                                                   <frame class="com.hp.ucmdb.discovery.probe.agents.probemgr.taskexecuter.JobExecuter$JobExecuterWorker" method="executeTask" file="JobExecuter.java" line="930" />
                                                                   <frame class="com.hp.ucmdb.discovery.probe.agents.probemgr.taskexecuter.JobExecuter$JobExecuterWorker" method="run" file="JobExecuter.java" line="836" />
                                                   </stacktrace>
                                   </ERROR>
                    </EXEC>
                    <log start="9:43:6" severity="error">Failed executing query: &lt;SELECT TOP 250 START AT 1 netdevices.Device_Id, deviceState.NetworkElementID, netdevices.Device_Display_Name, netdevices.Host_Name, netdevices.Device_Category, netdevices.Device_Model, netdevices.Management_IPAddress, deviceState.Global_State FROM lmsdatagrp.NETWORK_DEVICES netdevices JOIN dba.DM_Dev_State deviceState ON netdevices.Device_Id=deviceState.DCR_ID&gt; on &lt;172.28.193.55&gt; Exception: Traceback (most recent call last): File "ciscoworks_utils", line 60, in doQuery com.sybase.jdbc2.jdbc.SybSQLException: com.sybase.jdbc2.jdbc.SybSQLException: SQL Anywhere-Fehler -121: Berechtigung verweigert: Sie haben nicht die Berechtigung, aus "DM_Dev_State" auszuwählen</log>
                    <log start="9:43:6" severity="warn">[CiscoWorks_NetDevices.py:getNetworkDevices] No Network Devices found in chunk &lt;0&gt;</log>
                    <log start="9:43:6" severity="debug">Closing JDBC connections...</log>
                    <DISCONNECT start="9:43:6" duration="0" CMD="client_disconnect" RESULT="" IS_NULL="Y" type="sql" credentialsId="20_1_CMS" />
                    <results>
                                   <results_for_add_or_update>
                                                   <vector />
                                   </results_for_add_or_update>
                                   <results_for_delete>
                                                   <vector />
                                   </results_for_delete>
                    </results>
    </execution>
    ===== snip ======

    Reading a database can DOS your LMS, but no permanent damage done. 
    This doc will tell you about the databases available
    https://supportforums.cisco.com/docs/DOC-8796
    You can set a password for each database, or one password for all using
    \CSCOpx\bin\dbpasswd.pl
    Each databse has it's own  SA  user
    if ($dsn eq 'ani'   ){$uid = 'cwsiSA'     ; }
    if ($dsn eq 'cmf'   ){$uid = 'cmfDBA'     ; }
    if ($dsn eq 'rmeng' ){$uid = 'DBA'        ; }
    if ($dsn eq 'dfmEpm'){$uid = 'itemEpmUser'; }
    if ($dsn eq 'dfmInv'){$uid = 'itemInvUser'; }
    if ($dsn eq 'dfmFh' ){$uid = 'itemFhUser' ; }
    if ($dsn eq 'opsxml'){$uid = 'DBA'        ; }
    if ($dsn eq 'upm'   ){$uid = 'dba'        ; }
    This should allow you to get the data
    Do keep in mind that all tables (except the views defined for lmsdatafeed) are subject to change.
    Cheers,
    Michel

  • Sup Error While Sending Date Parameter to SUP server?

    Hi Every one,
       I am developing an iOS app using Sybase Unwired Platform 2.1.3 I am getting error While sending Date parameter to Database. How to send DATE format to the sales_order table for order_date column  from iOS.
    I tried like this..
    @try {
            SUP105Sales_order *insertRow =[[SUP105Sales_order alloc]init];
            int32_t idValue =2671;
            int32_t custID =103;
            int32_t sales =506;
            insertRow.id_=idValue;
            insertRow.cust_id=custID;
            insertRow.order_date=[NSDate date];
            insertRow.fin_code_id=@"r1";
            insertRow.region=@"Hyd";
            insertRow.sales_rep=sales;
            [insertRow save];
            [insertRow submitPending];
            [SUP105SUP105DB synchronize];
        @catch (NSException *exception) {
            NSLog(@"Exception---%@",exception.description);
    In server log:
    2014-02-28 16:39:41.833 WARN Other Thread-182 [SUP105.server.SUP105DB]{"_op":"C","level":5,"code":412,"eisCode":"257","message":"com.sybase.jdbc3.jdbc.SybSQLException:SQL Anywhere Error -157: Cannot convert '' to a timestamp","component":"Sales_order","entityKey":"3210004","operation":"create","requestId":"3210005","timestamp":"2014-02-28 11:09:41.646","messageId":0,"_rc":0}
    I strongly believe the above error for because of Date format..i have tried different ways to send Date to Sup server ..but i didn't get any solution.. Can any one help me me how to send date to database in SUP in iOS??
    Message was edited by: Michael Appleby

    Hi Jitendra,
    Thanks for your Quick reply..Any way i have tried what you said,but i didn't get any solution.
    Here is my Code:
        NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
        [formatter setDateFormat:@"dd-MM-YYYY HH:mm:ss"];
        NSDate *tempDate =(NSDate *) [formatter stringFromDate:[NSDate date]];
        NSLog(@"%@",tempDate);
    @try {
            SUP105Sales_order *insertRow =[[SUP105Sales_order alloc]init];
            int32_t idValue =2671;
            int32_t custID =103;
            int32_t sales =506;
            insertRow.id_=idValue;
            insertRow.cust_id=custID;
            insertRow.order_date =tempDate;
            insertRow.fin_code_id=@"r1";
            insertRow.region=@"Hyd";
            insertRow.sales_rep=sales;
            [insertRow save];
            [insertRow submitPending];
            [SUP105SUP105DB synchronize];
        @catch (NSException *exception) {
            NSLog(@"Exception---%@",exception.description);
    Error is :
    Exception---SUPPersistenceException: exception is in createCore: unexpected null value for 'order_date'

  • Node-to-node test with CUOM

    Hi guys,
    I've a problem with my CUOM. When I try to create a node-to-node test, the CUOM shows me the next message:
    "Cannot add IP SLA Test. Please see the SM.log file for more information. Make sure IP SLA responder is enabled in the destination."
    In the file SM.log there are the next errors:
    "26-Jul-2010|12:35:48.083|ERROR|SMLogCat_Log|Thread-29|WPUStudyCache|add|RunOnce:-;Mon Jul 26 12:35:48 CEST 2010|com.cisco.nm.wpu.plib.utils.PLibException: com.sybase.jdbc2.jdbc.SybSQLException: SQL Anywhere Error -194: No primary key value for foreign key 'STUDY_SOURCE' in table 'WPUStudy'
    at com.cisco.nm.wpu.plib.utils.JDBCUtils.processUpdate(JDBCUtils.java:103)
    at com.cisco.nm.wpu.plib.pos.DbPOStore.saveObject(DbPOStore.java:482)
    at com.cisco.nm.wpu.plib.pos.DbPOStore.saveObject(DbPOStore.java:181)
    at com.cisco.nm.wpu.plib.PersistenceLayer.saveObject(PersistenceLayer.java:131)
    at com.cisco.nm.wpu.plib.PersistentObject.save(PersistentObject.java:37)
    at com.cisco.nm.wpu.sm.study.WPUStudyCache.add(WPUStudyCache.java:91)
    at com.cisco.nm.wpu.sm.server.WPUStudyManager.addStudy(WPUStudyManager.java:836)
    at com.cisco.nm.wpu.sm.service.SMAddStudyService.execute(SMAddStudyService.java:63)
    at com.cisco.nm.wpu.sm.server.WPUSMServer.handleServiceRequest(WPUSMServer.java:315)
    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 com.cisco.nm.xms.ctm.common.CTMRequestProcessor.executeCall(CTMRequestProcessor.java:546)
    at com.cisco.nm.xms.ctm.common.CTMRequestProcessor.handleRequest(CTMRequestProcessor.java:240)
    at com.cisco.nm.xms.ctm.server.CTMServer.execute(CTMServer.java:401)
    at com.cisco.nm.xms.ctm.server.TCPChannel.executeTask(TCPChannel.java:87)
    at com.cisco.nm.xms.ctm.server.ThreadPool.run(ThreadPool.java:72)
    at java.lang.Thread.run(Thread.java:619)
    26-Jul-2010|12:35:48.083|ERROR|SMLogCat_Log|Thread-29|WPUStudyManager|addStudy|RunOnce:-;Mon Jul 26 12:35:48 CEST 2010|com.cisco.nm.wpu.sm.util.SMException: Could not save study
    at com.cisco.nm.wpu.sm.study.WPUStudyCache.add(WPUStudyCache.java:102)
    at com.cisco.nm.wpu.sm.server.WPUStudyManager.addStudy(WPUStudyManager.java:836)
    at com.cisco.nm.wpu.sm.service.SMAddStudyService.execute(SMAddStudyService.java:63)
    at com.cisco.nm.wpu.sm.server.WPUSMServer.handleServiceRequest(WPUSMServer.java:315)
    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 com.cisco.nm.xms.ctm.common.CTMRequestProcessor.executeCall(CTMRequestProcessor.java:546)
    at com.cisco.nm.xms.ctm.common.CTMRequestProcessor.handleRequest(CTMRequestProcessor.java:240)
    at com.cisco.nm.xms.ctm.server.CTMServer.execute(CTMServer.java:401)
    at com.cisco.nm.xms.ctm.server.TCPChannel.executeTask(TCPChannel.java:87)
    at com.cisco.nm.xms.ctm.server.ThreadPool.run(ThreadPool.java:72)
    at java.lang.Thread.run(Thread.java:619)
    26-Jul-2010|12:35:48.083|ERROR|SMLogCat_Log|TP-Processor13|SMAddStudyWizardProxy|addStudy|null|com.cisco.nm.wpu.util.WPUException: Could not save study
    at com.cisco.nm.wpu.util.WPUService.processRequest(WPUService.java:77)
    at com.cisco.nm.wpu.application.SMAddStudyWizardProxy.addStudy(SMAddStudyWizardProxy.java:153)
    at com.cisco.nm.wpu.action.SMAddIpSlaTestAction.perform(SMAddIpSlaTestAction.java:449)
    at org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1786)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1585)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:509)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at com.cisco.nm.cmf.util.AccessLogFilter.doFilter(AccessLogFilter.java:100)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)
    at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)
    at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:754)
    at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:684)
    at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:876)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    26-Jul-2010|12:35:48.099|ERROR|SMLogCat_Log|TP-Processor13|SMAddIpSlaTestAction|perform()|null|com.cisco.nm.wpu.sm.util.SMException: Could not save study
    at com.cisco.nm.wpu.application.SMAddStudyWizardProxy.addStudy(SMAddStudyWizardProxy.java:156)
    at com.cisco.nm.wpu.action.SMAddIpSlaTestAction.perform(SMAddIpSlaTestAction.java:449)
    at org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1786)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1585)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:509)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at com.cisco.nm.cmf.util.AccessLogFilter.doFilter(AccessLogFilter.java:100)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)
    at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)
    at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:754)
    at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:684)
    at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:876)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)"
    I have enabled the IP SLA responder in the destination router. The version of the CUOM is 2.3, and the version of the CUCM is 7.1.5. Can anyone help me with this issue?
    Regards

    Note: 230672.1 - Cloning Oracle Applications Release 11i with Rapid Clone
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=230672.1
    Note: 217368.1 - Advanced Configurations and Topologies for Enterprise Deployments of E-Business Suite 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=217368.1
    Adding an Additional Node to an existing Oracle Applications Instance
    http://appsdbablog.com/blog/2006/10/adding_an_additional_node_to_a.html

  • Problem creating schema/tables on sybase

    Running the schematool or using the SynchronizeSchema feature, I get the
    following exception on sybase:
    com.sybase.jdbc.SybSQLException: The 'CREATE TABLE' command is not allowed
    within a multi-statement transaction in the 'MEDIA' database.
    The same application deploys fine using SQL-server or Oracle.
    I'm using kodo 2.4.0.
    Any ideas?
    Detailed exception included in attachment.
    Regards
    Jesper
    begin 666 exception.txt
    M<V-H96UA=&]O;#H-"EMS8VAE;6%T;V]L72 H:V]D;RY2=6YT:6UE(" @(" @
    M(" @(" @(" @(" @(" @(" @,3,U("D@4W1A<G1I;F<@2V]D;R!*1$\@=F5R
    M<VEO;B R+C0N," H:V]D;VID;RTR+C0N,"TR,# R,3(Q,BTQ-S,P*2!W:71H
    M(&-A<&%B:6QI=&EE<SH@6T5N=&5R<')I<V4@161I=&EO;B!&96%T=7)E<RP@
    M4W1A;F1A<F0@161I=&EO;B!&96%T=7)E<RP@3&ET92!%9&ET:6]N($9E871U
    M<F5S+"!1=65R>2!%>'1E;G-I;VYS+"!$871A8V%C:&4@4&QU9RUI;BP@4W1A
    M=&5M96YT($)A=&-H:6YG+"!';&]B86P@5')A;G-A8W1I;VYS+"!$979E;&]P
    M97(@5&]O;',L($-U<W1O;2!$871A8F%S92!$:6-T:6]N87)I97,L($5N=&5R
    M<')I<V4@1&%T86)A<V5S70T*6W-C:&5M871O;VQ=("AK;V1O+DUE=&%$871A
    M(" @(" @(" @(" @(" @(" @(" @(" X-B @*2!C;VTN<V]L87)M971R:6,N
    M:V]D;RYM971A+DI$3TUE=&%$871A4&%R<V5R0&$X,V$Q,SH@<&%R<VEN9R!S
    M;W5R8V4Z(&9I;&4Z1#HO8FQA8VMW:61O=R]W;W)K87)E82]E;F%C=&UE;G0O
    M8G5I;&0O8VQA<W-E<R]D:R]P:6YE+V5N86-T;65N="]S97)V:6-E<R]087)A
    M;65T97)$969,:7-T+FID;PT*6W-C:&5M871O;VQ=("AK;V1O+DUE=&%$871A
    M(" @(" @(" @(" @(" @(" @(" @(" X-B @*2!C;VTN<V]L87)M971R:6,N
    M:V]D;RYM971A+DI$3TUE=&%$871A4&%R<V5R0#=C9#,W83H@<&%R<VEN9R!S
    M;W5R8V4Z(&9I;&4Z1#HO8FQA8VMW:61O=R]W;W)K87)E82]E;F%C=&UE;G0O
    M8G5I;&0O8VQA<W-E<R]D:R]P:6YE+V5N86-T;65N="]S97)V:6-E<R]087)A
    M;65T97)$968N:F1O#0I;<V-H96UA=&]O;%T@*&MO9&\N365T841A=&$@(" @
    M(" @(" @(" @(" @(" @(" @(#@V(" I(&-O;2YS;VQA<FUE=')I8RYK;V1O
    M+FUE=&$N2D1/365T841A=&%087)S97) ,C R9#8Y.B!P87)S:6YG('-O=7)C
    M93H@9FEL93I$.B]B;&%C:W=I9&]W+W=O<FMA<F5A+V5N86-T;65N="]B=6EL
    M9"]C;&%S<V5S+V1K+W!I;F4O96YA8W1M96YT+T%C=&EV:71Y+FID;PT*6W-C
    M:&5M871O;VQ=("AK;V1O+DUE=&%$871A(" @(" @(" @(" @(" @(" @(" @
    M(" X-B @*2!C;VTN<V]L87)M971R:6,N:V]D;RYM971A+DI$3TUE=&%$871A
    M4&%R<V5R0#@U-34V,CH@<&%R<VEN9R!S;W5R8V4Z(&9I;&4Z1#HO8FQA8VMW
    M:61O=R]W;W)K87)E82]E;F%C=&UE;G0O8G5I;&0O8VQA<W-E<R]D:R]P:6YE
    M+V5N86-T;65N="]!8W1I=FET>4EN<W1A;F-E+FID;PT*6W-C:&5M871O;VQ=
    M("AK;V1O+DUE=&%$871A(" @(" @(" @(" @(" @(" @(" @(" X-B @*2!C
    M;VTN<V]L87)M971R:6,N:V]D;RYM971A+DI$3TUE=&%$871A4&%R<V5R0&$X
    M.6-E,SH@<&%R<VEN9R!S;W5R8V4Z(&9I;&4Z1#HO8FQA8VMW:61O=R]W;W)K
    M87)E82]E;F%C=&UE;G0O8G5I;&0O8VQA<W-E<R]D:R]P:6YE+V5N86-T;65N
    M="].;V1E+FID;PT*6W-C:&5M871O;VQ=("AK;V1O+DUE=&%$871A(" @(" @
    M(" @(" @(" @(" @(" @(" X-B @*2!C;VTN<V]L87)M971R:6,N:V]D;RYM
    M971A+DI$3TUE=&%$871A4&%R<V5R0#)B-V1B,3H@<&%R<VEN9R!S;W5R8V4Z
    M(&9I;&4Z1#HO8FQA8VMW:61O=R]W;W)K87)E82]E;F%C=&UE;G0O8G5I;&0O
    M8VQA<W-E<R]D:R]P:6YE+V5N86-T;65N="]0<F]C97-S+FID;PT*6W-C:&5M
    M871O;VQ=("AK;V1O+DUE=&%$871A(" @(" @(" @(" @(" @(" @(" @(" X
    M-B @*2!C;VTN<V]L87)M971R:6,N:V]D;RYM971A+DI$3TUE=&%$871A4&%R
    M<V5R0#0X9CAC.#H@<&%R<VEN9R!S;W5R8V4Z(&9I;&4Z1#HO8FQA8VMW:61O
    M=R]W;W)K87)E82]E;F%C=&UE;G0O8G5I;&0O8VQA<W-E<R]D:R]P:6YE+V5N
    M86-T;65N="]0<F]C97-S26YS=&%N8V4N:F1O#0I;<V-H96UA=&]O;%T@*&MO
    M9&\N365T841A=&$@(" @(" @(" @(" @(" @(" @(" @(#@V(" I(&-O;2YS
    M;VQA<FUE=')I8RYK;V1O+FUE=&$N2D1/365T841A=&%087)S97) 8S4T-C9B
    M.B!P87)S:6YG('-O=7)C93H@9FEL93I$.B]B;&%C:W=I9&]W+W=O<FMA<F5A
    M+V5N86-T;65N="]B=6EL9"]C;&%S<V5S+V1K+W!I;F4O96YA8W1M96YT+T5V
    M96YT2&%N9&QE<BYJ9&\-"EMS8VAE;6%T;V]L72 H:V]D;RY-971A1&%T82 @
    M(" @(" @(" @(" @(" @(" @(" @.#8@("D@8V]M+G-O;&%R;65T<FEC+FMO
    M9&\N;65T82Y*1$]-971A1&%T85!A<G-E<D X,34S,S@Z('!A<G-I;F<@<V]U
    M<F-E.B!F:6QE.D0Z+V)L86-K=VED;W<O=V]R:V%R96$O96YA8W1M96YT+V)U
    M:6QD+V-L87-S97,O9&LO<&EN92]E;F%C=&UE;G0O1F%U;'1(86YD;&5R+FID
    M;PT*6W-C:&5M871O;VQ=("AK;V1O+DUE=&%$871A(" @(" @(" @(" @(" @
    M(" @(" @(" X-B @*2!C;VTN<V]L87)M971R:6,N:V]D;RYM971A+DI$3TUE
    M=&%$871A4&%R<V5R0#=E.#0U83H@<&%R<VEN9R!S;W5R8V4Z(&9I;&4Z1#HO
    M8FQA8VMW:61O=R]W;W)K87)E82]E;F%C=&UE;G0O8G5I;&0O8VQA<W-E<R]D
    M:R]P:6YE+V5N86-T;65N="]-97-S86=E2&%N9&QE<BYJ9&\-"EMS8VAE;6%T
    M;V]L72 H:V]D;RY-971A1&%T82 @(" @(" @(" @(" @(" @(" @(" @.#8@
    M("D@8V]M+G-O;&%R;65T<FEC+FMO9&\N;65T82Y*1$]-971A1&%T85!A<G-E
    M<D R,S8X9&8Z('!A<G-I;F<@<V]U<F-E.B!F:6QE.D0Z+V)L86-K=VED;W<O
    M=V]R:V%R96$O96YA8W1M96YT+V)U:6QD+V-L87-S97,O9&LO<&EN92]E;F%C
    M=&UE;G0O4V5R=FEC92YJ9&\-"EMS8VAE;6%T;V]L72 H:V]D;RY-971A1&%T
    M82 @(" @(" @(" @(" @(" @(" @(" @.#8@("D@8V]M+G-O;&%R;65T<FEC
    M+FMO9&\N;65T82Y*1$]-971A1&%T85!A<G-E<D!B83!F,S8Z('!A<G-I;F<@
    M<V]U<F-E.B!F:6QE.D0Z+V)L86-K=VED;W<O=V]R:V%R96$O96YA8W1M96YT
    M+V)U:6QD+V-L87-S97,O9&LO<&EN92]E;F%C=&UE;G0O06-T:6]N+FID;PT*
    M6W-C:&5M871O;VQ=("AK;V1O+DUE=&%$871A(" @(" @(" @(" @(" @(" @
    M(" @(" X-B @*2!C;VTN<V]L87)M971R:6,N:V]D;RYM971A+DI$3TUE=&%$
    M871A4&%R<V5R0&0P,C(P8SH@<&%R<VEN9R!S;W5R8V4Z(&9I;&4Z1#HO8FQA
    M8VMW:61O=R]W;W)K87)E82]E;F%C=&UE;G0O8G5I;&0O8VQA<W-E<R]D:R]P
    M:6YE+V5N86-T;65N="]4:6UE;W5T2&%N9&QE<BYJ9&\-"EMS8VAE;6%T;V]L
    M72 H:F1B8RY*1$)#(" @(" @(" @(" @(" @(" @(" @(" @(" @,S P("D@
    M6R!#.C(S-C,V-S0[(%0Z-#(T-# Y-SL@1#HQ-#8P,#,W,2!=(&]P96XZ(&ID
    M8F,Z<WEB87-E.E1D<SIS;F]W8F%L;#HU,# P+TU%1$E!/U-E<G9I8V5.86UE
    M/4U%1$E!/U5315(]<V$F4$%34U=/4D0])DQ)5$5204Q?4$%204U3/71R=64@
    M*'-A*0T*6W-C:&5M871O;VQ=("AJ9&)C+DI$0D,@(" @(" @(" @(" @(" @
    M(" @(" @(" @(" S,# @*2!;($,Z,C,V,S8W-#L@5#HT,C0T,#DW.R!$.C$T
    M-C P,S<Q(%T@8F5G:6X@<F]L;&)A8VL-"EMS8VAE;6%T;V]L72 H:F1B8RY*
    M1$)#(" @(" @(" @(" @(" @(" @(" @(" @(" @,S P("D@6R!#.C(S-C,V
    M-S0[(%0Z-#(T-# Y-SL@1#HQ-#8P,#,W,2!=(&5N9"!R;VQL8F%C:R Q,&US
    M#0I;<V-H96UA=&]O;%T@*&ID8F,N2D1"0R @(" @(" @(" @(" @(" @(" @
    M(" @(" @(#,P," I(%L@0SHR,S8S-C<T.R!4.C0R-#0P.3<[($0Z,30V,# S
    M-S$@72!R971U<FX@6V-O;2YS;VQA<FUE=')I8RYD871A<V]U<F-E+E!O;VQ#
    M;VYN96-T:6]N0#(T,3$Q85M;<F5Q=65S=',],#MS:7IE/3 [;6%X/3<P.VAI
    M=',],#MC<F5A=&5D/3 [<F5D=6YD86YT/3 [;W9E<F9L;W<],#MN97<],#ML
    M96%K960],#MU;F%V86EL86)L93TP75U=('1O(%MC;VTN<V]L87)M971R:6,N
    M9&%T87-O=7)C92Y$871A4V]U<F-E26UP;"13;W)T86)L95!O;VQ;;6EN/3 [
    M(&UA>#TQ,#L@875T;W)E='5R;CTQ,#L@<VEZ93TP.R!T86ME;CTP75T-"EMS
    M8VAE;6%T;V]L72 H:F1B8RY*1$)#(" @(" @(" @(" @(" @(" @(" @(" @
    M(" @,S0X("D@57-I;F<@9&EC=&EO;F%R>2!C;&%S<R B8V]M+G-O;&%R;65T
    M<FEC+FMO9&\N:6UP;"YJ9&)C+G-C:&5M82YD:6-T+E-Y8F%S941I8W1I;VYA
    M<GDB('1O(&-O;FYE8W0@=&\@(D%D87!T:79E(%-E<G9E<B!%;G1E<G!R:7-E
    M(B H=F5R<VEO;B B061A<'1I=F4@4V5R=F5R($5N=&5R<')I<V4O,3(N-2XP
    M+C$O14)&(#$P-#,P($531",R+U O3E0@*$E8.#8I+T]3(#0N,"]R96PQ,C4P
    M,2\Q+S,R+6)I="]/4%0O5'5E($IU;" S," R,SHT-3HU-R R,# R(BD@=VET
    M:"!*1$)#(&1R:79E<B B:D-O;FYE8W0@*%1-*2!F;W(@2D1"0R H5$TI(B H
    M=F5R<VEO;B B:D-O;FYE8W0@*%1-*2!F;W(@2D1"0RA432DO-"XR*$)U:6QD
    M(#$R-C<I+U O14)&.3DY.2]*1$LQ,2]&<FD@1&5C(#$T(#$Q.C(U.C(P(#(P
    M,#$B*0T*6W-C:&5M871O;VQ=("AJ9&)C+E-C:&5M82 @(" @(" @(" @(" @
    M(" @(" @(" @(" Y-S(@*2!2969R97-H:6YG('-C:&5M82!F;W(@='EP92 B
    M8VQA<W,@9&LN<&EN92YE;F%C=&UE;G0N4')O8V5S<R(@86YD(&%L;"!K;F]W
    M;B!S=6)C;&%S<V5S#0I;<V-H96UA=&]O;%T@*&ID8F,N2D1"0R @(" @(" @
    M(" @(" @(" @(" @(" @(" @(#DY-2 I(&IA=F$N<W%L+E-13%=A<FYI;F<Z
    M(&IA=F$N<W%L+E-13%=A<FYI;F<Z(# Q,$U8.B!-971A9&%T82!A8V-E<W-O
    M<B!I;F9O<FUA=&EO;B!W87,@;F]T(&9O=6YD(&]N('1H:7,@9&%T86)A<V4N
    M(%!L96%S92!I;G-T86QL('1H92!R97%U:7)E9"!T86)L97,@87,@;65N=&EO
    M;F5D(&EN('1H92!J0V]N;F5C="!D;V-U;65N=&%T:6]N+B!%<G)O<B!E;F-O
    M=6YT97)E9"!W:&EL92!A='1E;7!T:6YG('1O(')E=')I979E(&UE=&%D871A
    M(&EN9F]R;6%T:6]N.B!C;VTN<WEB87-E+FID8F,N4WEB4U%,17AC97!T:6]N
    M.B!);F-O<G)E8W0@<WEN=&%X(&YE87(@)TU%1$E!)RX-"EMS8VAE;6%T;V]L
    M72 H:F1B8RY*1$)#(" @(" @(" @(" @(" @(" @(" @(" @(" @.3DU("D@
    M:F%V82YS<6PN4U%,5V%R;FEN9SH@:F%V82YS<6PN4U%,5V%R;FEN9SH@,#$P
    M1% Z($1U<&QI8V%T92!C;VYN96-T:6]N('!R;W!E<G1Y(%!!4U-73U)$(&EG
    M;F]R960N#0I;<V-H96UA=&]O;%T@*&ID8F,N4V-H96UA(" @(" @(" @(" @
    M(" @(" @(" @(" @(#DW,B I($-214%412!404),12!04D]#15-36" H1$53
    M0U)8(%9!4D-(05(H,C4U*2!.54Q,+"!*1$]#3$%34U@@5D%20TA!4B@R-34I
    M($Y53$PL($I$3TE$6"!.54U%4DE#($Y/5"!.54Q,+"!*1$],3T-+6"!)3E1%
    M1T52($Y53$PL($Y!3458(%9!4D-(05(H,C4U*2!.54Q,+"!04DE-05)9($M%
    M62 H2D1/2418*2D-"EMS8VAE;6%T;V]L72 H:F1B8RY344P@(" @(" @(" @
    M(" @(" @(" @(" @(" @(" @,S P("D@6R!#.C(S-C,V-S0[(%0Z-#(T-# Y
    M-SL@1#HQ-#8P,#,W,2!=($-214%412!404),12!04D]#15-36" H1$530U)8
    M(%9!4D-(05(H,C4U*2!.54Q,+"!*1$]#3$%34U@@5D%20TA!4B@R-34I($Y5
    M3$PL($I$3TE$6"!.54U%4DE#($Y/5"!.54Q,+"!*1$],3T-+6"!)3E1%1T52
    M($Y53$PL($Y!3458(%9!4D-(05(H,C4U*2!.54Q,+"!04DE-05)9($M%62 H
    M2D1/2418*2D-"EMS8VAE;6%T;V]L72 H:F1B8RY38VAE;6$@(" @(" @(" @
    M(" @(" @(" @(" @(" @.3<R("D@0U)%051%(%1!0DQ%(%!23T-%4U-8("A$
    M15-#4E@@5D%20TA!4B@R-34I($Y53$PL($I$3T-,05-36"!605)#2$%2*#(U
    M-2D@3E5,3"P@2D1/2418($Y5345224,@3D]4($Y53$PL($I$3TQ/0TM8($E.
    M5$5'15(@3E5,3"P@3D%-15@@5D%20TA!4B@R-34I($Y53$PL(%!224U!4ED@
    M2T59("A*1$])1%@I*0T*6W-C:&5M871O;VQ=("AJ9&)C+DI$0D,@(" @(" @
    M(" @(" @(" @(" @(" @(" @(" S,# @*2!;($,Z,C,V,S8W-#L@5#HT,C0T
    M,#DW.R!$.C$T-C P,S<Q(%T@8VQO<V4@*#$@97)R;W)S*3H@8V]M+G-O;&%R
    M;65T<FEC+F1A=&%S;W5R8V4N4&]O;$-O;FYE8W1I;VY ,C0Q,3%A6UMR97%U
    M97-T<STP.W-I>F4],#MM87@]-S [:&ET<STP.V-R96%T960],#MR961U;F1A
    M;G0],#MO=F5R9FQO=STP.VYE=STP.VQE86ME9#TP.W5N879A:6QA8FQE/3!=
    M70T*6W-C:&5M871O;VQ=("AJ9&)C+DI$0D,@(" @(" @(" @(" @(" @(" @
    M(" @(" @(" S,# @*2!;($,Z,C,V,S8W-#L@5#HT,C0T,#DW.R!$.C$T-C P
    M,S<Q(%T@8VQO<V4@8V]N;F5C=&EO;@T*6W-C:&5M871O;VQ=(&-O;2YS>6)A
    M<V4N:F1B8RY3>6)344Q%>&-E<'1I;VXZ(%1H92 G0U)%051%(%1!0DQ%)R!C
    M;VUM86YD(&ES(&YO="!A;&QO=V5D('=I=&AI;B!A(&UU;'1I+7-T871E;65N
    M="!T<F%N<V%C=&EO;B!I;B!T:&4@)TU%1$E!)R!D871A8F%S92X-"@T*6W-C
    M:&5M871O;VQ=(" @(&%T(&-O;2YS>6)A<V4N=&1S+E1D<RYP<F]C97-S165D
    M*%1D<RYJ879A*0T*6W-C:&5M871O;VQ=(" @(&%T(&-O;2YS>6)A<V4N=&1S
    M+E1D<RYN97AT4F5S=6QT*%1D<RYJ879A*0T*6W-C:&5M871O;VQ=(" @(&%T
    M(&-O;2YS>6)A<V4N:F1B8RY297-U;'1'971T97(N;F5X=%)E<W5L="A297-U
    M;'1'971T97(N:F%V82D-"EMS8VAE;6%T;V]L72 @("!A="!C;VTN<WEB87-E
    M+FID8F,N4WEB4W1A=&5M96YT+FYE>'1297-U;'0H4WEB4W1A=&5M96YT+FIA
    M=F$I#0I;<V-H96UA=&]O;%T@(" @870@8V]M+G-Y8F%S92YJ9&)C+E-Y8E-T
    M871E;65N="YU<&1A=&5,;V]P*%-Y8E-T871E;65N="YJ879A*0T*6W-C:&5M
    M871O;VQ=(" @(&%T(&-O;2YS>6)A<V4N:F1B8RY3>6)3=&%T96UE;G0N97AE
    M8W5T955P9&%T92A3>6)3=&%T96UE;G0N:F%V82D-"EMS8VAE;6%T;V]L72 @
    M("!A="!C;VTN<WEB87-E+FID8F,N4WEB4W1A=&5M96YT+F5X96-U=&55<&1A
    M=&4H4WEB4W1A=&5M96YT+FIA=F$I#0I;<V-H96UA=&]O;%T@(" @870@8V]M
    M+G-O;&%R;65T<FEC+F1A=&%S;W5R8V4N4&]O;$-O;FYE8W1I;VXD4&]O;%-T
    M871E;65N="YE>&5C=71E57!D871E*%!O;VQ#;VYN96-T:6]N+FIA=F$Z,3$R
    M*0T*6W-C:&5M871O;VQ=(" @(&%T(&-O;2YS;VQA<FUE=')I8RYK;V1O+FEM
    M<&PN:F1B8RYS8VAE;6$N4V-H96UA5&]O;"YE>&5C=71E4U%,*%-C:&5M851O
    M;VPN:F%V83HX.3DI#0I;<V-H96UA=&]O;%T@(" @870@8V]M+G-O;&%R;65T
    M<FEC+FMO9&\N:6UP;"YJ9&)C+G-C:&5M82Y38VAE;6%4;V]L+F-R96%T951A
    M8FQE*%-C:&5M851O;VPN:F%V83HX,S I#0I;<V-H96UA=&]O;%T@(" @870@
    M8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+G-C:&5M82Y38VAE;6%4
    M;V]L+F%D9%1A8FQE*%-C:&5M851O;VPN:F%V83HT,S<I#0I;<V-H96UA=&]O
    M;%T@(" @870@8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+G-C:&5M
    M82Y38VAE;6%4;V]L+F%D9%1A8FQE<RA38VAE;6%4;V]L+FIA=F$Z-#0X*0T*
    M6W-C:&5M871O;VQ=(" @(&%T(&-O;2YS;VQA<FUE=')I8RYK;V1O+FEM<&PN
    M:F1B8RYS8VAE;6$N4V-H96UA5&]O;"YR969R97-H*%-C:&5M851O;VPN:F%V
    M83HS-C,I#0I;<V-H96UA=&]O;%T@(" @870@8V]M+G-O;&%R;65T<FEC+FMO
    M9&\N:6UP;"YJ9&)C+G-C:&5M82Y38VAE;6%4;V]L+G)E9G)E<V@H4V-H96UA
    M5&]O;"YJ879A.C,R,2D-"EMS8VAE;6%T;V]L72 @("!A="!C;VTN<V]L87)M
    M971R:6,N:V]D;RYI;7!L+FID8F,N<V-H96UA+E-C:&5M851O;VPN;6%I;BA3
    M8VAE;6%4;V]L+FIA=F$Z,3$S,BD-"EMS8VAE;6%T;V]L72 @("!A="!C;VTN
    M<V]L87)M971R:6,N:V]D;RYI;7!L+FID8F,N<V-H96UA+E-C:&5M851O;VPN
    M;6%I;BA38VAE;6%4;V]L+FIA=F$Z,3 V.2D-"EMS8VAE;6%T;V]L72 @("!A
    M="!C;VTN<V]L87)M971R:6,N;6]D=6QE<RYI;G1E9W)A=&EO;BYA;G0N4V-H
    M96UA5&]O;%1A<VLN97AE8W5T94]N*%-C:&5M851O;VQ487-K+FIA=F$Z-30I
    M#0I;<V-H96UA=&]O;%T@(" @870@8V]M+G-O;&%R;65T<FEC+FUO9'5L97,N
    M:6YT96=R871I;VXN86YT+E1A<VM"87-E+F5X96-U=&4H5&%S:T)A<V4N:F%V
    M83HQ,3@I#0I;<V-H96UA=&]O;%T@(" @870@;W)G+F%P86-H92YT;V]L<RYA
    M;G0N56YK;F]W;D5L96UE;G0N97AE8W5T92A5;FMN;W=N16QE;65N="YJ879A
    M.C$V-BD-"EMS8VAE;6%T;V]L72 @("!A="!O<F<N87!A8VAE+G1O;VQS+F%N
    M="Y487-K+G!E<F9O<FTH5&%S:RYJ879A.C,Q-RD-"EMS8VAE;6%T;V]L72 @
    M("!A="!O<F<N87!A8VAE+G1O;VQS+F%N="Y487)G970N97AE8W5T92A487)G
    M970N:F%V83HS,#DI#0I;<V-H96UA=&]O;%T@(" @870@;W)G+F%P86-H92YT
    M;V]L<RYA;G0N5&%R9V5T+G!E<F9O<FU487-K<RA487)G970N:F%V83HS,S0I
    M#0I;<V-H96UA=&]O;%T@(" @870@;W)G+F%P86-H92YT;V]L<RYA;G0N4')O
    M:F5C="YE>&5C=71E5&%R9V5T*%!R;VIE8W0N:F%V83HQ,S V*0T*6W-C:&5M
    M871O;VQ=(" @(&%T(&]R9RYA<&%C:&4N=&]O;',N86YT+E!R;VIE8W0N97AE
    M8W5T951A<F=E=',H4')O:F5C="YJ879A.C$R-3 I#0I;<V-H96UA=&]O;%T@
    M(" @870@;W)G+F%P86-H92YT;V]L<RYA;G0N36%I;BYR=6Y"=6EL9"A-86EN
    M+FIA=F$Z-C$P*0T*6W-C:&5M871O;VQ=(" @(&%T(&]R9RYA<&%C:&4N=&]O
    M;',N86YT+DUA:6XN<W1A<G0H36%I;BYJ879A.C$Y-BD-"EMS8VAE;6%T;V]L
    M72 @("!A="!O<F<N87!A8VAE+G1O;VQS+F%N="Y-86EN+FUA:6XH36%I;BYJ
    *879A.C(S-2D-"@``
    `
    end

    This is a bug in our 2.4.0 release. It has been resolved internally, and
    a fix will be available in 2.4.1.
    In the mean time, use the -outfile option to schematool to output a DDL,
    and manually run this DDL against your schema.
    -Patrick
    On Wed, 22 Jan 2003 05:22:56 -0500, Jesper Ladegaard wrote:
    Running the schematool or using the SynchronizeSchema feature, I get the
    following exception on sybase:
    com.sybase.jdbc.SybSQLException: The 'CREATE TABLE' command is not
    allowed within a multi-statement transaction in the 'MEDIA' database.
    The same application deploys fine using SQL-server or Oracle.
    I'm using kodo 2.4.0.
    Any ideas?
    Detailed exception included in attachment.
    Regards
    Jesper--
    Patrick Linskey
    SolarMetric Inc.

  • Error!!!! Please Help me

    Hi, Someone know how can I resolve or what means this problem....?
    com.sybase.jdbc2.jdbc.SybSQLException: escritorio not found. Specify owner.objectname or use sp_help to check whether the object exists (sp_help may produce lots of output).
         at com.sybase.jdbc2.tds.Tds.processEed(Tds.java:2542)
         at com.sybase.jdbc2.tds.Tds.nextResult(Tds.java:1947)
         at com.sybase.jdbc2.jdbc.ResultGetter.nextResult(ResultGetter.java:69)
         at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:204)
         at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:187)
         at com.sybase.jdbc2.jdbc.SybStatement.queryLoop(SybStatement.java:1510)
         at com.sybase.jdbc2.jdbc.SybStatement.executeQuery(SybStatement.java:1495)
         at com.sybase.jdbc2.jdbc.SybStatement.executeQuery(SybStatement.java:402)
         

    Hi, I have not worked with Sybase, but this looks like you
    are trying to query a table which is not reachable with
    the sintaxis you used.
    If "escritorio" is your table, I also recommend you to try
    changing your query to read something like
    "select * from something.escritorio" where something could
    be an owner or a database name.
    Hope this helps.

  • RICS0001 error for 7206VXR

    Hi,
    I am having trouble  with gathering inventory for  7206 XVR devices. I got this error:
    RICS0001:Internal Error,unable to process the collected data from the device
    How can I  make the inventory work for these devices ?
    Thanks,
    Akos
    Here's an excerpt from IC_Server.log:
    [ Tue Nov 29  16:24:53 CET 2011 ],ERROR,[Thread-31],com.cisco.nm.rmeng.inventory.ics.server.InvDataProcessor,458,SQL Anywhere Error -193: Primary key for table 'MemoryPool' is not unique
    com.sybase.jdbc2.jdbc.SybSQLException: SQL Anywhere Error -193: Primary key for table 'MemoryPool' is not unique
            at com.sybase.jdbc2.tds.Tds.processEed(Tds.java:2884)
            at com.sybase.jdbc2.tds.Tds.nextResult(Tds.java:2206)
            at com.sybase.jdbc2.jdbc.ResultGetter.nextResult(ResultGetter.java:69)
            at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:220)
            at com.sybase.jdbc2.jdbc.SybStatement.nextResult(SybStatement.java:203)
            at com.sybase.jdbc2.jdbc.SybStatement.executeLoop(SybStatement.java:1766)
            at com.sybase.jdbc2.jdbc.SybStatement.execute(SybStatement.java:1758)
            at com.sybase.jdbc2.jdbc.SybPreparedStatement.execute(SybPreparedStatement.java:630)
            at com.cisco.nm.rmeng.inventory.ics.dbrep.DBRecord.insert(DBRecord.java:61)
            at com.cisco.nm.rmeng.inventory.ics.util.ICSDatabaseConnection.insert(ICSDatabaseConnection.java:92)
            at com.cisco.nm.rmeng.inventory.ics.invchange.AddInvChange.effect(AddInvChange.java:29)
            at com.cisco.nm.rmeng.inventory.ics.server.InvDataProcessor.processInvData(InvDataProcessor.java:404)
            at com.cisco.nm.rmeng.inventory.ics.core.CollectionController.run(CollectionController.java:462)
            at java.lang.Thread.run(Thread.java:595)
    [ Tue Nov 29  16:24:53 CET 2011 ],ERROR,[Thread-31],com.cisco.nm.rmeng.inventory.ics.core.CollectionController,468, Exception occured in process method while processing: 192.168.147.170 SQL Anywhere Error -193: Primary key for table 'MemoryPool' is not unique
    ICSException :: SQL Anywhere Error -193: Primary key for table 'MemoryPool' is not unique
            at com.cisco.nm.rmeng.inventory.ics.server.InvDataProcessor.processInvData(InvDataProcessor.java:473)
            at com.cisco.nm.rmeng.inventory.ics.core.CollectionController.run(CollectionController.java:462)
            at java.lang.Thread.run(Thread.java:595)
    [ Tue Nov 29  16:24:53 CET 2011 ],DEBUG,[Thread-31],com.cisco.nm.rmeng.util.logger.RMELogger,734,com.cisco.nm.rmeng.common.notification.Notification,refreshPrefsCache,233,Obtained Notification Configuration values from CCR
    [ Tue Nov 29  16:24:53 CET 2011 ],DEBUG,[Thread-31],com.cisco.nm.rmeng.util.logger.RMELogger,734,com.cisco.nm.rmeng.common.notification.Notification,getCCRValue,88,is_notification_enabled  CfgDisabled:InvDisabled
    [ Tue Nov 29  16:24:53 CET 2011 ],INFO ,[Thread-31],com.cisco.nm.rmeng.inventory.ics.core.CollectionController,596,No Trap
    [ Tue Nov 29  16:24:53 CET 2011 ],INFO ,[Thread-31],com.cisco.nm.rmeng.inventory.ics.core.CollectionController,602,CALLING SELF TEST
    [ Tue Nov 29  16:24:53 CET 2011 ],DEBUG,[Thread-31],com.cisco.nm.rmeng.inventory.ics.core.DevMgmtStatusUtil,95,QQQWQQ:   select count(NetworkElementId) from Dev_Mgmt_Status where NetworkElementId = 749
    [ Tue Nov 29  16:24:53 CET 2011 ],DEBUG,[Thread-31],com.cisco.nm.rmeng.inventory.ics.core.DevMgmtStatusUtil,52,INSERT CHECK DONE
    [ Tue Nov 29  16:24:53 CET 2011 ],DEBUG,[Thread-31],com.cisco.nm.rmeng.inventory.ics.core.DevMgmtStatusUtil,234,QQQWQQ2:         update Dev_Mgmt_Status set Sys_Object_Id = '.1.3.6.1.4.1.9.1.222',Dev_Status = -1,Inventory_Collection_Status = 2,AG_Collected = '',Failure_Reason = 'RICS0001:Internal Error,unable to process the collected data from the device.',Corrective_Action = '',Last_Updated_Time = '2011-11-29 16:24:53.634' where NetworkElementID = 749

    Hi Akos,
    it is a bug in RME 4.3.1 - "CSCta05277 - Inventory collection fails with RICS0001". The bug is fixed in RME 4.3.2 but you will need to delete and re-add the device in RME.
    Svetlana

Maybe you are looking for

  • New AMD x2 3800

    Planning to upgrade my CPU. Would like help in proceeding -- OP sys is Win XpPro. 1. Which BIOS should I flash? Understand that 1.9 BIOS has given problems. Have scanned Syar's    7025 listings, but would appreciate help in deciding the one to use. 2

  • How do I get rid of "Open All In Tabs" from the Bookmarks dropdown menu? [STUPIDITY] Also, my bookmarks run off the bottom of the screen and I can't see them all.

    The bottom of my bookmarks in one subcategory extends beyond the screen on my TV and I can't see them all. I can't see where any arrow to extend the bookmarks to the bottom of the list is so I've been clicking below the last visible bookmark in that

  • In pse8 create outline of vague pattern in grayscale form?

    i have some hand painted images in color, which i import and then change to grayscale.  I want to then get an outline (thin black line) based on the perimeter of the objects (so I could then smooth the lines and then recolor the objects).  I think I

  • BW Guide required

    Hi All, i need a SAP BW Manual Guide that describes the logical procedures (e.g:  creat infoobjects, infocubes......,ETL) to create datawarehouse with examples Acually i found this book: Addison_Wesley.SAP_BW_-_A_Step-By-Step_Guide but unfortunatly i

  • Audio levels when exporting a video.

    Hi, I am not really a video person (hence the reason for this question) so please ignore my ignorance.  With new broadcast standards introduced as of the 1st Jan 2013 in Australia we are providing all our audio to video production houses with the cor