System Exception:OSoftResSvrAdm.Handle Creat ActiveX Object Error at Admin

Hi Experts,
While logging into the BPC admin client, we are facing the following errors:
System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Exception: OSoftResSvrAdm.Handle Creat ActiveX Object Error at Admin Server
   at OSoft.Services.Webservice.AdminMainService.AdminMainService.GetText(Int64 intStringNum, String& strReturnString, String sParam1, String sParam2, String sParam3, String sParam4, String sParam5)
   at OSoft.Services.Webservice.AdminMainService.AdminMainService.LoadRes()
   at OSoft.Services.Webservice.AdminMainService.AdminMainService..ctor()
   --- End of inner exception stack trace ---}
We have been facing this issue since the time the server was restarted after changing the admin password.
Please help us in resolving this issue.
Thanks in advance.
Meera

So you changed the pwd for installation user of SAP BPC.
After you performed this change did you open Server Manager and go to Reset Credential link?
There you have to input the new pwd for installation user.
After that try to login again using BPC client.
Regards
Sorin Radulescu

Similar Messages

  • OSoftResSvrAdm.Handle Creat ActiveX Object Error at Admin Server

    Hi,
    We are working on BPC 7.0NW. Recently we encountered the below error while we login to BPC for Admin. Earlier it was working fine. We didnt do any major configuration or changes to the system. Not sure why we are getting this error suddenly. Please suggest how we can resolve this error.
    Error popup- 'OSoftResSvrAdm.Handle Creat ActiveX Object Error at Admin Server'
    thanks/regards,
    Lokesh Nandula

    Hi Lokesh,
    Please try out the following option. Not sure whether it will work or not.
    Go to Server manager on the app box.
    delete the encryption key. (backup first if you like)
    re-create the encryption key
    register msolap90.dll on both servers
    I don't have the text for this handy. I think it's: regsvr32 "C:\xxx\xxx\xxxx\xxx\msolap90.dll"
    Note: you must use the quotes!
    reboot the DB box
    reboot the App box
    or
    To register the DLL Follow the below steps:
    1) From the Application server go to the run option in the start menu and enter the below command
    2) regsvr32 "c:\program files\common files\system\ole db\msolap90.dll"
    3) Hit Enter
    4) You should get a confirmation that the Dll was registered
    Hope this helps.

  • How to create Activex object for my Visual C++ object

    Hi,
    I am working on development on Acrobat 9.0 SDK. I am facing problem is that I can compiled Visual C++ source code to an api. I can test functions on this api on Acrobat 9.0 windows, but I could not test it on IE web browser, because I don't know how to create Activex object from my Visual C++ source code or its api.
    I read Acrobat 9 SDK document and found under C:\Acrobat 9 SDK\Version 1\PluginSupport\Tools\Visual Studio App Wizard has two files: Acro9PIWizInstaller.msi and setup.exe. I am not very sure those file are the key to help me to create Activex objects for my api.  Are they the one I need to create Activex object? If not, could you please advise me how to create Activex object for my api or C++ codes.
    Thanks a lot for any of your comments or advices.
    Thai

    Hi lrosenth,
    Thanks a lot for your information.
    My question is, on Javascript how do I call a function from .api. Below is my very simple test.
    I got a function on BasicPlugin.cpp under C:\Acrobat 9 SDK\Version 1\PluginSupport\Samples\BasicPlugin. See below.
    I added BasicPlugin.api on C:\Program Files\Adobe\Acrobat 9.0\Acrobat\plug_ins
         ACCB1 int ACCB2 MyPluginCommand() {
              int num = 5;
              return num;
    On my HTML file, I create an <Object> below:
        <OBJECT id="acrobatapp"
                classid="clsid:85DE1C45-2C66-101B-B02E-04021C009402">
        </OBJECT>
        <OBJECT id="acrobatpdf"
                classid="clsid:CA8A9780-280D-11CF-A24D-444553540000"   >
            <Param name="SRC" value="http://www.adobe.com/devnet/acrobat/pdfs/acrobat_digital_signature_appearances_v9.pdf">
       </OBJECT>
    On my Javascript. I call function MyPluginCommand() as below, but it is not working. How do I call function MyPluginCommand() on Javascript?
         var acrobatapp= document.getElementById("acrobatapp");
         var num= acrobatapp.MyPluginCommand();
         alert(num);
    Thanks for your support,
    Thai

  • Exception: cx_fp_runtime_usage  when creating pdf object

    Hi, experts,
      i found out that every time we call the method create_pdf_object to get an reference of a pdf object, there always a exception occurs, any way to  get ride of it?
    somehow , the pdfobj work even the exception occurs.
      l_fp = cl_fp=>get_reference( ).
      TRY.
          l_pdfobj = l_fp->create_pdf_object( connection = 'ADS' ).
          l_pdfobj->execute( ).
        CATCH cx_fp_runtime_internal
        cx_fp_runtime_system
        cx_fp_runtime_usage INTO l_fpex.
      endtry.

    Hi ,
    I am getting this exception too!
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
        CHANGING
        file_table = lt_file_table
        rc = lv_rc
    USER_ACTION =
    FILE_ENCODING =
        EXCEPTIONS
        file_open_dialog_failed = 1
        cntl_error = 2
        error_no_gui = 3
        not_supported_by_gui = 4
        OTHERS = 5.
        READ TABLE lt_file_table
        INTO lv_filename
        INDEX 1.
        cl_gui_frontend_services=>gui_upload(
        EXPORTING
        filename = lv_filename
        filetype = 'BIN' "Binary
        IMPORTING
        filelength = lv_filelength
        CHANGING
        data_tab = lt_rawtab
        EXCEPTIONS
        file_open_error = 1
        file_read_error = 2
        no_batch = 3
        gui_refuse_filetransfer = 4
        invalid_type = 5
        no_authority = 6
        unknown_error = 7
        bad_data_format = 8
        header_not_allowed = 9
        separator_not_allowed = 10
        header_too_long = 11
        unknown_dp_error = 12
        access_denied = 13
        dp_out_of_memory = 14
        disk_full = 15
        dp_timeout = 16
        not_supported_by_gui = 17
        error_no_gui = 18
        OTHERS = 19 ).
    Get FP reference
        DATA: lo_fp TYPE REF TO if_fp VALUE IS INITIAL.
        lo_fp = cl_fp=>get_reference( ).
    For handling exceptions
        DATA: lo_fpex TYPE REF TO cx_fp_runtime VALUE IS INITIAL.
        TRY.
    Create PDF Object using destination 'ADS' (<-- this is how it is
    defined in SM59)
            DATA: lo_pdfobj TYPE REF TO if_fp_pdf_object VALUE IS INITIAL.
            lo_pdfobj = lo_fp->create_pdf_object( connection = 'ADS' ).
    FIELD-SYMBOLS: <ls_rawtab> LIKE LINE OF lt_rawtab.
    Move to XSTRING
    LOOP AT lt_rawtab ASSIGNING <ls_rawtab>.
      CONCATENATE pdf_data <ls_rawtab>-data INTO pdf_data IN BYTE MODE.
    ENDLOOP.
    Set document
            lo_pdfobj->set_document(
            EXPORTING
           pdffile = lv_filename
          pdfdata = PDF_DATA
    Tell PDF object to extract data
            lo_pdfobj->set_task_extractdata(
            EXPORTING
            xsltdata = pdf_data
    Execute the call to ADS
            lo_pdfobj->execute( ).
          CATCH cx_fp_runtime_system.
        ENDTRY.
    Any idea what could be wrong? The ADS connection, when tested with report seems to work fine!
    Regards,
    Poonam

  • Is LabVIEW able to create ActiveX Object for other sw to use?

    I would like to create some ActiveX object from LabVIEW that VB could use it. How do I do it? I only find info about labVIEW use ActiveX created by other SW. Please let me know if LabVIEW has such ability. Thanks.

    You cannot create a new kind of ActiveX object in LabVIEW, but you can use ActiveX to control LabVIEW (or a LabVIEW-built EXE) and run your VIs programmatically from other development environments.
    Below is a modified excerpt from an example provided by NI on running a LabVIEW VI from Visual Basic:
    Dim lvapp As Object
    Dim vi As Object
    Dim paramNames(4), paramVals(4)
    Set lvapp = CreateObject("LabVIEW.Application")
    viPath = lvapp.AppDir + "\examples\apps\freqresp.llb\Frequency Response.vi"
    Set vi = lvapp.GetVIReference(viPath)
    vi.FPWinOpen = True
    paramNames(0) = "Amplitude"
    paramNames(1) = "Number of Steps"
    paramNames(2) = "Low Frequency"
    paramNames(
    3) = "High Frequency"
    paramNames(4) = "Response Graph"
    paramVals(0) = cwnAmplitude
    paramVals(1) = cwnNumSteps
    paramVals(2) = cwnLowFreq
    paramVals(3) = cwnHighFreq
    ' paramVals(4) will contain the value of Response Graph after running the vi.
    Call vi.Call(paramNames, paramVals)

  • Task TS16900003 - Create NB object Error

    Hi                                                                               
    We are using the Extended Requisition Request form - SRQ2, Notification.  The Hiring Manager sends the form successfully with a notification number. The approver approves the form. After this step, the workflow generates an error on the Task - TS16900003.     
    Error message:           
    CL_HRMSS_RECRUITING_WF method CREATENBOBJECT cannot be executed.  "Requisition object NB has been created in EREC System for form".  However, this statement is incorrect as the requisition object NB is not created. 
    WF-Batch user has a CP & NA created and has the correct authorisations.
    We are on SAP ECC 6.0
    Your assistance will be highly appreciated.
    Regards.
    Bongisa

    Hi Divya
    Thank you for your response.
    WF-BATCH has a BP, CP, NA & P linked. The error is still generated.
    "Object CL_HRMSS_RECRUITING_WF method CREATENBOBJECT cannot be executed"
    Hope you can assist further.
    Regards.
    Bongisa

  • Problem in creating the ADODB.Connection object Error Number returned:-2147024770

    Hi,
    We are migrating our applications from Windows 2003 to 2008 application server. We have vbs script in a job which is invoked from Tivoli Workload Scheduler (Windows)/JOBLNCH 8.5.1. We are getting the error while creating ADOBD object (Error Number returned:-2147024770).
    The error does not occur when we directly run the job on the 2008 server, but only when invoked throught the TWS scheduler. Also, this error is not occurring on 2003 server when run through the TWS.
    Here is the code snippet used to create object.
    set oSrcConnect = CreateObject("ADODB.Connection")
    Could you please help us identify if any settings need to be changed to avoid this error. Many Thanks for looking into the question.

    Hi,
    Error -2147024770 = hex 8007007E
    Least significant 32 bits are hex 7E = decimal 126
    C:\>net helpmsg 126
    The specified module could not be found.
    This usually indicates that the COM object you're using is trying to load a DLL that is not installed.
    Based on only this error message, there's no way we can tell you how to fix your script.
    Bill

  • BPC 7.5 - Cannot create ActiveX component

    Hi all,
    I am installed BPC 7.5M on win2003x64, 32bit IIS, 32bit MSSQL
    when go to http://hostname/OSoft  at server side or client side
    it will have following error.
    Anyone have any idea? i am new to BPC
    thx
    John
    Event Type:     Warning
    Event Source:     ASP.NET 2.0.50727.0
    Event Category:     Web Event
    Event ID:     1309
    Date:          8/19/2010
    Time:          2:14:37 PM
    User:          N/A
    Computer:     hostname
    Description:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 8/19/2010 2:14:37 PM
    Event time (UTC): 8/19/2010 6:14:37 AM
    Event ID: 8292453043e140608735e4750f8d08d8
    Event sequence: 34
    Event occurrence: 11
    Event detail code: 0
    Application information:
    Application domain: /LM/W3SVC/1/root/OSoft-1-129266712148491238
    Trust level: Full
    Application Virtual Path: /OSoft
    Application Path: D:\Program Files\BPC\Websrvr\Web\
    Machine name: hostname
    Process information:
    Process ID: 9848
    Process name: w3wp.exe
    Account name: NT AUTHORITY\NETWORK SERVICE
    Exception information:
    Exception type: Exception
    Exception message: Cannot create ActiveX component.
    Request information:
    Request URL: http://hostname/OSoft/Launch.aspx
    Request path: /OSoft/Launch.aspx
    User host address: IP
    User: domain\user
    Is authenticated: True
    Authentication Type: Basic
    Thread account name: NT AUTHORITY\NETWORK SERVICE
    Thread information:      Thread ID: 7
    Thread account name: NT AUTHORITY\NETWORK SERVICE
    Is impersonating: False
    Stack trace:    at Microsoft.VisualBasic.Interaction.CreateObject(String ProgId, String ServerName)
       at OSoft.Consumers.ZFP.WebBase.PageBase.InitComLib()
       at OSoft.Consumers.ZFP.WebBase.PageBase.MakeSecurity(String strUserID)
       at OSoft.Consumers.ZFP.WebBase.PageBase.Page_Init(Object sender, EventArgs e)
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at System.Web.UI.Control.OnInit(EventArgs e)
       at System.Web.UI.Page.OnInit(EventArgs e)
       at OSoft.Consumers.ZFP.WebBase.PageBase.OnInit(EventArgs e)
       at System.Web.UI.Control.InitRecursive(Control namingContainer)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    Hi,
    This might be because of:
    1. Missing or disabled Osoft.Services.Platform.YukonAdmin.Olap9Manager component from the Component Services>OsoftSQL2005Admin.
    2. Installation pre-requisite for Application Server, SQLServer2005_ADOMD.msi  has not been correctly installed or corrupted.
    Would suggest you to implement the following:
    1. Install the newly installed BPC Application server
    2. Reboot Server
    3. Install SQLServer2005_ADOMD.msi from Microsoft
    4. Reinstall BPC Application Server
    5. Reinstall applicable patches
    Hope this helps in resolving your issue.
    Regards,
    Poonam

  • Can not create temp file---- Error code:-2147215357 [CRSDK00000615] Error code name:internal

    Hello,
    While exporting Export reporting from BI4 getting exception
    Can not create temp file---- Error code:-2147215357 [CRSDK00000615] Error code name:internal
    In Trace Log I am getting
    com.crystaldecisions.xml.serialization.XMLWriter||Failed to create an object instance for CrystalReports.TextObjectFormat
    java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key CrystalReports.TextObjectFormat
      at java.util.ResourceBundle.getObject(ResourceBundle.java:374)
      at java.util.ResourceBundle.getString(ResourceBundle.java:334)
    I tried following solution according to the all forums but still issue exist.
    Done changes mention in KB article In <Installation-dir-of-BO>\Common\4.0\java\CRConfig.XML we have to increase the JAVA heap MIN and Max size
              <JVMMaxHeap>64000000</JVMMaxHeap>          <JVMMinHeap>32000000</JVMMinHeap>
    Increase the value in the ReportApplicationServer Services in the CMC for "Number of database records to read when previewing or refreshing a report". The value -1 is for unlimited records but not recommended for performance.
    Check for temporary read write permission on server
    Using SDK library from C:\Program Files (x86)\SAP Business Objects\SAP BusinessObjects Enterprise XI 4.0\java\lib
    Can you please let me know is there anything missing.

    Hi,
    We face the same problem with some BI4 reports.
    The same report works well with the "Crystal Reports Viewers API", as used in Infoview, but not with the "Report Application Server (RAS) API".
    This error appears after some time working on a report. If we reproduce the same report, but from zero, no problem.
    Hope it can help.
    Ludovic.

  • Problem in creating new objects in ABAP workbench

    Hi ,
        I am getting error in a newly installed SAP system when try to create new objects in ABAP workbench. The error is like'No changes for the user allowed'.
    Can you tell me what the error is here? What can be done for this so that I can create new object.
    Thanks,
    Manas

    Hi,
    Run tcode SU01. (Provided if u hav authorization to run this Tcode)
    Enter SAP* as user and click on the Copy button.
    Enter the name for your new user in the dialog box and click Continue
    Enter a password for your new user.
    Goto Profile sheet and adjust the profiles to be SAP_ALL and SAP_NEW.
    Save the user and logon with it.
    Now you'll be able to do your changes.
    Reward Points if useful.
    Regards
    Rose
    Edited by: Rose Preethi on Mar 31, 2008 5:20 PM

  • IDOC Negative acknowledge not triggering system Exception

    Hi guys,
    I've a send step in my BPM which sends an IDOC and waits for the application acknowledge.  After watching several threads, and specially SAP Note 837285, we can read that:
    "Permanent negative acknowledgements: If the BPE receives a
    permanent negative system or application acknowledgment, the
    asynchronous send step waiting for it triggers a system error for
    which you can define an exception handling."
    Well, in my send step I've placed a system exception for handling this negative acknowledges but eventough I'm getting the negative application acknowlege from R3 (in SXMB_MONI I get the ack figure with a red cross indicating 'Ackonwledgment contains applic. errors'), the BPE doesn't trigger the system exception. Instead it enters in my deadline branch after quite a long time, ending the process....
    Can you guys give me a hand?

    Hi Ravi,
    What is happening is:
    After the idoc reaches R3, the Send step begins waiting for the ALEAUD ack from R3. I've got a System Exception for handling negative acks and a deadline branch for communication errors during the sending step... Meanwhile, the negative ack reaches XI (I can see it on the SXMB_MONI of XI) but the send step still waits for the ack. Of course, after the timeframe which was set for the deadline branch, the bpm will be completed because it jumps to that branch.
    I can't figure it out why isn't the BPM catching the negative acknowledges..... :S If the acknowledge is error-free, the send step catches it and proceeds to the next step....
    Any ideas? suggestions....? crazy attempts....?
    The only point possible is the acknowledge received not being a permanent negative ack but a transient negative ack.... How can I check this IMPORTANT point.... ?
    Message was edited by:
            Gonçalo Mouro Vaz

  • Lock Object error during batch load

    Batch load was delayed about an hour. First error message in the Server Log said "Object is already locked by user""Error 1053010 processing request [Lock Object]-Disconnecting"Then it went through a series of "Object locked by user admin" and "received client request: create Temporary Object(from user admin)"It did this several times until connection.Although from time to time we have had problems with Objects getting locked and preventing maintenance in the Application Manager. This is the first time that is has prevented a batch load. Does anyone know what could have triggered this during the load process?

    This happened to us a lot, I think it's due to people opening objects, then letting their session time out, leaving a phantom lock.We solved the problem by calling the UNLOCKOBJECT function before any dimbuilds. 99.9% of the time this raises an error, "..object x is not locked..", but the rare time that the otl is inadvertently locked, it prevents the script from failing.<br><br>HTH,<br><br>Jeff McAhren<br>Dallas, Texas<br><br>ex to unlock the outline for app/db flash:<br><br>UNLOCKOBJECT 1, "FLASH" "FLASH" "FLASH"

  • Exception in handler thread. in BI Presentation Services

    Hi
    We are revicing following error in OBIEE 11g presentation services
    Dose anyone know the reason?
    +Exception in handler thread. An error occurred during execution of "send". Broken pipe [Socket:82]^M+
    Error Codes: ETI2U8FA^M
    Location: saw.rpc.variablemos.finalize, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads^M
    +[[+
    File:socketrpcserver.cpp
    Line:565
    Location:
    saw.rpc.server.handleConnection
    saw.rpc.server.dispatch
    saw.threadpool

    Hi ,
    By any chance have you changed anything in socketrpcserver.cpp ??
    looks like the file has changed or not copied propelry.
    Open the socketrpcserver.cpp in vi editor and check if it contains any control M charatcers (^M).
    Or
    It can be because of the JavaHost process not running. Check instanceconfig.xml (check the port number)
    If you have changed the JavaHost Port Number (default is 9810), you need to update it in instanceconfig.xml.
    <JavaHostProxy>
    <Hosts><Host address="myhost.domain.com" port="newport>" /></Hosts>
    </JavaHostProxy>

  • System Exception in Message Wait Activity

    I have process A which sends a message to process B upon its completion.
    What happens when the instance is at a Message Wait Activity of process B , process A sends a message successfully to process B but process B enters into a system exception at that point of time?
    What happens to this message? Is it lost or recovered?
    Lets assume that the System Exception is handled and the instance returns back to the Message Wait Activity.
    Then will process B will still receive the message sent by process A after resumption from the System Exception or is the message lost ?

    If we're talking about notifications, not messages, and process A and B are running in the same engine, then Process A should be configured to send a notification to process B. The instance in process B can be sitting at a notification wait. Equally process B could have an instance sitting in any activity as long as the process has a notification wait in an interrupt mode. Processes with notification waits in an interrupt mode are waits that run alongside a process. The Wait is part of the process but interrupts the instance sitting anywhere in the process. After the execution the wait activity, the instance can return to the process with an Action = BACK statement. This statement is located in some automatic activity following the notification wait interrupt flow.
    Process A has a notification activity located before the end of the process. If process B cannot process the notification, the engine will retry the notification again in Process A at a latter time. So messages are not lost because the notification activity in process A is not complete until it successfully sends the notification to process B and process B receives it. Process A doesn't end until this activity is successful.
    HTH
    Mark

  • Cannot Create Automation Object

    Hi All,
    I have essentially two problems are occuring the first is with Crystal
    Reports 8.5 whereby running reports simeltaneously, one after the other
    after the other, will intermittently after the 3rd or 4th report cause
    windows to lock up and Notes 8 client will start to consume upwards of 100mb
    of ram (in a minimum 1.25gb ram machine) and then 98-99% CPU Usage.
    Assuming this was a problem with an older version of Crystal Reports, we
    have upgraded and tested both Crystal Reports 9 Professional and Crystal
    Reports 12 and thats where the "cannot create automation object" has
    occured - this particular error will happen whenever we attempt to run any
    report what so ever
    Now that we've upgraded to Crystal Reports 9.0 Pro, we'd like to try and solve
    the "cannot create automation object" error message we receive.
    Have tried to communicate this problem with IBM, they insist the problem is crystal
    related and not a problem with lotus notes.
    Environment:
    1. Lotus Domino Server, Release 8.0 for Windows/32
    2. Windows 2003 Server (x86 edition) Service Pack 2
    3. IBM Lotus Notes Version 8
    4. Windows XP w/Service Pack 3
    5. Symantec AntiVirus Full Version 10.1.5.5000
    5a. Crystal Reports 9 for Reporting
    Fault:
    1. First Observed 18/07/2008
    2. See above description
    3. For the first problem with Crystal Reports version 8.5 - we upgraded our
    client and server in test environment to Domino 8 and Notes 8 from Domino
    6.5 and Notes 6.5, for the second problem it occured after we upgraded from
    Crystal Reports 8.5 to Crystal Reports 9 & 12 versions.
    4.  Reinstalled Crystal Reports 8.5, no effect on first problem, installed
    version 12 (from IBM website), second error, un-installed, reinstalled 8.5,
    first error reappeared, reinstalled version 12 complete installation, same
    problem (second error) uninstalled and installed version 9 trial and same
    problem (second error)
    Any help would be greatly appreciated.

    Is this happening in the Report Designer or in an application?
    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

Maybe you are looking for

  • Unit of measure for Stock and Non-stock Item in CJ20N

    When I attach Material to an activity (item Category N   Non-stock item) in Project Builder (CJ20N), It is peaking its Base unit of Measure as unit. Now when I try to change it, it is showing an error Item category N: Only base unit of measure M allo

  • Install Leopard beside Snow Leopard

    In my company we need to do testing against Snow Leopard and variations as well as retro testing with Leopard, Panther, etc... My 21" iMacs 500GB HDD has been partitioned into different drives. Snow Leopard on Fixed (aka don't erase). And different v

  • My iPad2 Playlists "Drop" Songs

    Using an iPad 2, whenever I connect to my PC (note: not syncing or using sync for music or playlists) iTunes and/or my iPad automatically "deletes duplicate" tracks from my playlists, even though the tracks aren't duplicates. It deletes the same song

  • Why a max of 50 snapshots with Hyper-V?

    I realize the more snapshots Hyper-V has the more inefficient the machine gets - by the time you get to 50 it must be crawling. I was wondering, however, why is the limit 50? Is this an arbitrary number for the sake of efficiency, or is the limit due

  • Parsing a column

    I am using 11g I have the following data_set. Table consits of seq_no, order_key, model and sr_no. For Each order_key, there can be multiple seq_no, model and sr_no. with data_Set as ( SELECT 105 SEQ_NO,    1240077 ORDER_KEY,    7018572 MODEL,    'AB