FRM-41213 Unable to connect to the report server

I am converting an app from 6i to 9i. There are many reports, and I am trying, rather unsuccessfully, to get them to work. I have run the report server setup, and have the service started on my laptop. I am trying to use the following code to run a report attached as an object to my form, but I am getting the above 'cannot connect to report server' error. Can anyone point me in the right direction to resolve this problem??
declare
plistid          paramlist;
pl_name     varchar2(20) := 'report_params';
rep_id REPORT_OBJECT;
v_rep varchar2(100);
begin
plistid := create_parameter_list(pl_name);
     add_parameter(plistid, 'p_rpt_catg', text_parameter, v_rpt_hdr1);
     add_parameter(plistid, 'p_rpt_name', text_parameter, 'REPORT80');
     add_parameter(plistid, 'p_db_ver', text_parameter, 'V33');
rep_id := find_report_object('REPORT80');
set_report_object_property(rep_id, REPORT_EXECUTION_MODE, RUNTIME);
set_report_object_property(rep_id, REPORT_DESTYPE, SCREEN);
set_report_object_property(rep_id, REPORT_COMM_MODE, SYNCHRONOUS);
set_report_object_property(rep_id, REPORT_SERVER, 'dvlpserver');
v_rep := run_report_object(rep_id,plistid);
Thanks -- Jean.

1) destype=screen is not allowed
2) Please refer this forms-reports integration document which explains in detail about the integration
http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
3) In particular refer the pages 41-43 which explains some common errors and troubleshooting
4) Also look at info provided on things to take care while migrating from 6i -> 9i
Thanks
The Oracle Reports Team

Similar Messages

  • Unable to connect to the report server

    I have a problem with run_report_object to call a report within a form. I am using 9ias Rel 2 and report server on the same machine. The test.rdf report can be executed using the URL in the browser.
    I get the "Unable to connect to the report server" when I use the run_report_object in a form. Is it a configuration problem or is the code incorrrect?
    My code is as follows:
    Declare
    repid report_object;
    report_job_id VARCHAR2(200);
    PL_ID PARAMLIST;
    rep_status varchar2(100);
    Begin
    repid := FIND_REPORT_OBJECT('OP201P');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_SERVER,'repsrv');
    PL_ID := CREATE_PARAMETER_LIST('TEMP');
    ADD_PARAMETER(pl_id, 'p_ref1', TEXT_PARAMETER,:toolbar.ref1 );
    ADD_PARAMETER(pl_id, 'p_ref2', TEXT_PARAMETER,:toolbar.ref2 );
    ADD_PARAMETER(pl_id, 'p_sort', TEXT_PARAMETER,:toolbar.p_sort );
    report_job_id := RUN_REPORT_OBJECT(repid, pl_id);
    rep_status := REPORT_OBJECT_STATUS(report_job_id);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')LOOP
    rep_status := REPORT_OBJECT_STATUS(report_job_id);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    Web.show_document('http://portal.domain_name.com:7778/getjobid='||
    substr(report_job_id,9) || '?server=repsrv', '_blank');
    ELSE
    message('Report failed with error message '|| rep_status);
    END IF;
    end;
    For the show_document, I have tried both ' .. getjobid='|| substr(report_job_id,9)' and
    ' .. getjobid'|| substr(report_job_id,9)' .
    Any help would be greatly appreciated.
    Thank You.
    Rgds
    Edwin

    Hi ,
    Did you check if TCP/IP is enabled for the SQL Server service.
    If Disable you may need to enable it.
    To resolve this error, you can either modify the connection string to use the server name or you can enable TCP/IP for the service. Follow these steps to enable TCP/IP:
    1) Start SQL Server Configuration Manager.
    2) Expand SQL Server Network Configuration.
    3) Select Protocols for MSSQLSERVER.
    4) Right-click TCP/IP, and select Enable.
    5) Select SQL Server Services.
    6) Right-click SQL Server (MSSQLSERVER), and select Restart.
    Also Check the below link.
    Hi ,
    Did you check if TCP/IP is enabled for the SQL Server service.
    If Disable you may need to enable it.
    To resolve this error, you can either modify the connection string to use the server name or you can enable TCP/IP for the service. Follow these steps to enable TCP/IP:
    1) Start SQL Server Configuration Manager.
    2) Expand SQL Server Network Configuration.
    3) Select Protocols for MSSQLSERVER.
    4) Right-click TCP/IP, and select Enable.
    5) Select SQL Server Services.
    6) Right-click SQL Server (MSSQLSERVER), and select Restart.
    Also Check the below link if doesn't work from above.
    http://msdn.microsoft.com/en-us/library/ms365170.aspx
    Regards, PS

  • Unable to connect to the report server 9iAS

    I have a similar problem to the FRM-41213 when trying to initiate a      Report_Job_Id := RUN_REPORT_OBJECT(Report_Id, pl_id) through a form.
    I have tested everything on my LOCAL 9iDS environment which goes through a LOCAL report server (rwserver -install myserver) and it works.
    Now, I am trying to deploy it to the 9iAS server on a Windows 2000 server. When I call my form everything appears to be working fine, however, I never get a connection to the report server and the applet hangs.
    Any one have any idea what I should check to insure that I have my 9iAS server setup to run Reports though 9iAS or what this problem might be?
    Thanks
    Hyman

    Check if the reports server on 9ias is up and running. You might check out metalink note 212551.1 if it is not. The "Second Solution for Issue 1" solved the problem for me.
    Begin quotation:
    "This can be accomplished by removing the <security> tagging from the <repserver>.conf file, where <repserver> represents the reports server name. This file is found in the Developer ORACLE_HOME/reports/conf directory."
    End quotation.
    Hope this helps
    Gerald Krieger

  • Unable to connect to the report server error

    Hi all,
    I have formula.jsp file, in that i have all the parameters to connect with the Crystal Report server. I have Crystal Report Server 2008. While executing this jsp i got the following error,
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to connect to the server: 192.168.1.92. --- Connection refused: connect
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.ServletException: Unable to connect to the server: 192.168.1.92. --- Connection refused: connect
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:843)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:776)
         org.apache.jsp.formula_jsp._jspService(formula_jsp.java:143)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: 192.168.1.92. - Connection refused: connect-- Error code:-2147217387 Error code name:connectServer
         com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.connect(Unknown Source)
         com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ClientDocument.new(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.new(Unknown Source)
         com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         org.apache.jsp.formula_jsp._jspService(formula_jsp.java:93)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    But, in Crystal Report Server XI Relese 2, the formula.jsp file connecting with server and display the reports.
    Why it is not working for 2008 server alone? Please help for this. If you need the jsp i will update.
    Thanks,
    shiva

    Hi,
    We are facing a similar kind of issue, when trying to access/ view crystal report using JAVA sdks.
    Please find the below error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: Software caused connection abort: socket write error
    Error code:- 2147217387 Error code name: connectServer
    Please let us know if you were able to resolve this.
    Thanks in advance,
    Krishnam

  • Unable to connect to the report server from FORM in 10g

    Just I start to create Forms and Reports .
    Final step I try to put Button in Form Report to call Report but this job I have not do it before just I try it by my seftstudy to do.
    However, i get message error i will show you to see which mistake i have done.
    this picture error message:
    http://img136.imageshack.us/img136/5830/errr11ex.gif
    this picture paht of Report after import it in Form builder:
    http://img146.imageshack.us/img146/4381/tree9eb.gif
    this picture show the setting of properties in Report:
    http://img501.imageshack.us/img501/3999/agent4nz.gif
    this is my code :
    declare
    report_id report_object;
    report_message varchar2(1000);
    p_id paramlist;
    v_rep VARCHAR2(100);
    begin
    report_id:=find_report_object('agent');
    v_rep := RUN_REPORT_OBJECT(report_id);
    report_message := run_report_object(report_id , p_id);
    web.show_document('http://orcl:8889/reports/rwservlet/getjobid'|| substr(report_message, length('svr')+2)||'?server=svr');
    end;
    Can any one try to tell me what the mistake in my code and how to solve it?
    My best regards;
    Message was edited by:
    ExplOrer

    Hello !
    You can try to use only the web.show_document call
    WEB.SHOW_DOCUMENT('/reports/rwservlet?report=agent.rdf&destype=cache&desformat=htmlcss&server=srv&userid=you have to enter your username/passwort@database net name here,'_blank');
    Have you defined the path for the stored reports ?
    Try to locate the registy key REPORTS_PATH in the registry and add the root C:\project\reports . to the key
    Katharina

  • Error calling report FRM-41213 unable to connect to Report Server

    Hi,
    I have installed Oracle Database 10g R2 and Oracle Developer 10gR2.
    I installed it in both Windows 2000 SP4 and Windows XP SP2.
    I would like to call a Report using a button inside Oracle Form.
    I create my own Report Server, using : rwserver server=repsrv
    A Java-based window appear OracleAS Reports Sevice, and showed that repsrv is ready.
    In Form (inside a button -> WHEN-BUTTON-PRESSED) :
    1. Using RUN_REPORT_OBJECT()
       rep_id := find_report_object('REPORT10');
         if not id_null(rep_id) then
           v_rep := run_report_object(rep_id);
         else
              message('Null');
       end if;
       a. If I did not specify the name of the Report Server in Reports node of Form's property object
    (I leave it blank)
    The following error appear :
    FRM-41211: Integration error, SSL failure running another product
    b. If I specify the name of the Report Server : repsrv
    The following error appear :
    FRM-41213: Unable to connect to Reports Server repsrv
    2. Using WEB.SHOW_DOCUMENT()
    a. If did not I specify the server name in the parameter
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||,'_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    b. If I specify the server name in the parameter --> server='repsrv'
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||'server=repsrv','_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server repsrv failed
    In Report :
    If I try to navigate manually to :
    1. http://localhost:8889/reports/rwservlet using web browser.
    It showed OracleAS Report Services - Servlet Command Help page.
    2. http://localhost:8889/reports/rwservlet?userid=scott/tiger@orcl&report=D:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    3. Finally,
    http://localhost:8889/reports/rwservlet?server=REPSRV&userid=scott/tiger@orcl&report=C:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server repsrv failed
    4. Any attempt to different command (i.e showenv, showjobs, etc) seems failed
    If I did not specify the server then REP-51002: Bind to Reports Server rep_<computer_name> failed
    If I specify the server - 'repsrv' then REP-51002: Bind to Reports Server repsrv failed
    5. I have tried to use rwrun in command line.
    rwrun report="D:\My Documents\form\module1.jsp" userid=scott/tiger@orcl destype=file desformat=pdf desname="D:\My Documents\form\module2.pdf"
    The PDF file created and it looks exactly as the web layout as in Oracle Report Builder (Run Web Layout CTRL-R)
    Question :
    1. What supposed to be done?
    The Report server is ready, but the web browser seems unable to connect to Report Server.
    2. Can we used or call or executed an executable command line from Form (using PL/SQL inside button)?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi,
    Problem solved.
    I got the solution from another post.
    Re: REP-51002: Bind to Reports Server rep failed
    Here are the step I did.
    Note : Please make backup for the following file : rwnetwork.conf
    - In file rwnetwork.conf, remove or commented the following
    <multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/>
    - And then uncommented
    <namingService name="Cos" host="%NAMING_HOST%" port="%NAMING_PORT%"/>
    - replace the
    %NAMING_HOST% with your computer name or specify an IP address
    %NAMING_PORT% with 14021
    It should look like this :
    <namingService name="Cos" host="blahblah" port="14021"/>
    - I did not change the : name="Cos", since I do not understand what does it for
    - Save you changes.
    - Start the OC4J.
    - Find the location of : namingservice.bat (on Windows platform)
    - execute in the command line : namingservice.bat 14021
    - finally start the report in the web browser
    Note:
    To shutdown the namingservice, use : namingservice.bat 14021 shutdown
    Regards.
    Buntoro

  • SSRS 2012 with SharePoint 2010: Unable to connect to the remote server

    We had originally installed SSRS 2012 with SP 2010 and I did not like how the installation was configured, so we uninstalled everything and removed the SSRS server from the SharePoint farm and uninstalled all the SQL bits (SSRS was deployed to web tier in
    sharepoint mode).
    I've since added a new application server to host the SSRS SharePoint Mode and Installed the reporting services add-in on the WFE.   For reference, I have 1 WFE and 2 App Servers.  the WFE has the Reporting Service Add-in and both App Servers have
    the SharePoint mode of SSRS installed as described here: https://msdn.microsoft.com/en-us/library/hh479774(v=sql.110).aspx
    I've also installed the Service Application and all seems to work well up until I make an attempt to create a report or data source on the WFE.
    It looks like somewhere, the WFE is still looking to connect to the original SSRS machine we installed.  I've gone through registry, config files and the SharePoint config database to see if I can see where the reference value is.  Still can't
    find it anywhere.  None of the Reporting commandlets are helping.
    Technically what is occurring;
    Add Reporting service content types and create a New Reporting Data Source through UI
    ULS Logs go after the url: /_layouts/ReportServer/NewSharedDataSource.rsds
    Exception occurs after some time because it times out trying to connect to wrong host.  Exception below:
    Exception encountered for SOAP method GetSystemProperties: System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond <WRONG HOST IP>:80
    at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
    at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Int32 timeout, Exception& exception) -
    -- End of inner exception stack trace ---
    at Microsoft.SqlServer.ReportingServices2010.RSConnection2010.SetConnectionProtocol()
    at Microsoft.SqlServer.ReportingServices2010.RSConnection2010.SoapMethodWrapper`1.ExecuteMethod(Boolean setConnectionProtocol)
    No powershell commands or any of the settings in the service application allow me to set this.  Any help would be appreciated.
    20 Bay Windows Home Server (Not Vail!)
    http://piroozjavan.blogspot.com/

    Issue an iisreset on the WFE, and validate that SSRS Service is running on the App servers.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Possible workaround for: Launch Debugger Error "Unable to connect to the RDS server"

    I do not yet have a reproducible case for this. *Sometimes* ColdFusion Builder throws the "Unable to connect to the RDS server" error, when attempting to start a debug session against a remote server. However, "RDS Dataview" and "RDS Fileview" views correctly list the servers and their related data/file, and testing RDS connection result is "Test connection was successful". The workaround is:
    1. Login to the ColdFusion Administrator
    2. Navigate to "Debugger Settings" page (beneath "Debugging & Logging")
    3. Click on "Stop Debugger Server" -or- "Restart Debugger Server"
    4. Restart ColdFusion Application Server
    Notes:
    a) Step #3 must be done via ColdFusion Administrator, not via ColdFusion Admin API (stopLineDebugger()|restartLineDebugger())
    b) Step #4 can be done via ColdFusion Administrator -or- ColdFusion Builder
    c) Note that there is a CF9 Release Note for Bug #78488: "When a server having "Windows service option" ENABLED is added as a remote server, then Start-Stop-Restart operation cannot be done on it."  However, I've found that "Restarting" a remote server, that is running as a Windows service, is possible in ColdFusion Builder (at least this is so on standalone developer edition).  Like Bug #78488 says, I am unable to "Stop|Start" a remote server that is running as a Windows service. I'm just mentioning all of this, due to my suggestion in "b", that CF can also be restarted via ColdFusion Builder.
    It is interesting that attempts to stop|restart the debugger server, via CF Admin API, do not resolve the issue. So, it seems that the "Stop Debugger Server" and "Restart Debugger Server" buttons, in CF Admin, are doing more than calling the corresponding CF Admin API methods.
    Attached is an image of the error.
    Just posting all of this as an FYI, in case it helps anyone.
    Thanks!,
    -Aaron Neff
    (OH.. I'm unable to attach images at this time *DOH!* ..well, I'll try to remember to update this post w/ the image, once I see that attachments are allowed.)
    I'll try to describe the error message window:
    - It is 494x452 pixels
    - Title of the window is "Error occurred while launching the Debugger"
    - Body content of the window is as follows:
    Unable to connect to the RDS server 'ServerNameHere'
    Ensure that the server is currently running and that line debugging and RDS are enabled. You may also need to check your RDS connection settings in Eclipse to ensure that they are correct.
    Error Message:
    -1:Error connecting to JVM for debugging at localhost:5005. Could not attach to the VM at port 5005. You must specify this debugger port in the JVM settings of your application server, for example: -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005. You will also need to make sure that another debugger is not currently connected to the CF JVM at the same port (5005).
    Root cause ->
    Connect refused: connect

    hi,
    I have been facing the same problems while connecting to Oracle Web Conferencing and is getting error message :Unable to connect to the server. The Web COnferencing Console will now close. Please try again later. If the problem persist, contact your system administrator.
    Diagnostic report shows failed on the connectivity part
    Connectivity
    mx-direct Failed
    0:00:00.719 Connecting to web331.oracle.com:1025
    0:00:00.922 Name resolved to 148.87.108.234
    0:00:21.906 connect() failed (0x8007274C)
    0:00:21.906 Connection failed (0x8007274C)
    Pl help me to fix the problem.
    Regards
    Gobind Ahuja

  • Server cleanup wizard problem - unable to connect to the WSUS Server Database.

    I'm trying to run server cleanup wizard.. it starts to run and then after a while it gives me this error:
    The WSUS administration console was unable to connect to the WSUS Server Database.
    Verify that SQL server is running on the WSUS Server. If the problem persists, try restarting SQL.
    System.Data.SqlClient.SqlException -- Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    The statement has been terminated.
    Source
    .Net SqlClient Data Provider
    Stack Trace:
       at Microsoft.UpdateServices.Internal.BaseApi.SoapExceptionProcessor.DeserializeAndThrow(SoapException soapException)
       at Microsoft.UpdateServices.Internal.DatabaseAccess.AdminDataAccessProxy.ExecuteSPSearchUpdates(String updateScopeXml, String preferredCulture, ExtendedPublicationState publicationState)
       at Microsoft.UpdateServices.Internal.BaseApi.Update.SearchUpdates(UpdateScope searchScope, ExtendedPublicationState publicationState, UpdateServer updateServer)
       at Microsoft.UpdateServices.Internal.BaseApi.UpdateServer.GetUpdates(UpdateScope searchScope)
       at Microsoft.UpdateServices.UI.AdminApiAccess.UpdateManager.GetUpdates(ExtendedUpdateScope filter)
       at Microsoft.UpdateServices.UI.AdminApiAccess.WsusSynchronizationInfo.InitializeDerivedProperties()
       at Microsoft.UpdateServices.UI.AdminApiAccess.WsusSynchronizationInfo.get_NewUpdatesCount()
       at Microsoft.UpdateServices.UI.SnapIn.Pages.SyncResultsListPage.GetSyncInfoRow(WsusSynchronizationInfo syncInfo)
       at Microsoft.UpdateServices.UI.SnapIn.Pages.SyncResultsListPage.GetListRows()
    Thanks

     Some questions:
    Are there any other databases running on this Std Edition SQL service?
    [a] Yes there are, we have Kaspersky enterprise DB, Report Server DB and local application DB.
    Are there any other services running on this WSUS Server?
    [b] Yes there are, we have Active Directory, Kaspersky enterprise, SQL Server 2005, and WSUS all on the same server.
    How many days since your WSUS server was first installed?
    [c] It's been about a year now.
    What is the physical size of the SUSDB.mdf file?
    [d] 9,666,752 KB
    What is the hardware configuration of this machine, including disk drives?
    [e] Intel Xeon 1.86, 2GB Ram, HD C: 39GB - E: 25.2, running Windows Server 2003 R2 SP2.
    How many client systems are you servicing from this WSUS Server?
    [f] Around 40.
    What products/classifications are you synchronizing.
    [g] Windows XP-vista, Windows Server 2003, Office 2003-2007, SQL Server 2005.
    Okay, for starters, you have an underpowered/overextended machine running Active Directory, ASP.NET, and a database server, all on a sub 2GHz CPU with 2GB RAM, and not enough disk spindles. The machine has had WSUS running for about a year and is 9GB in size.
    There's no doubt in my mind that some of your performance issues are directly related to disk and database fragmentation.
    There's also no doubt that some of your performance issues are directly related to memory starvation.
    I'd suggest the following long-term fixes:
    1. Get a second machine. Make it a dedicated database server. Provision it accordingly to support servicing multiple database applications.
    2. Lacking #1, this machine needs more memory. It also needs more disk spindles. At a minimum the databases being serviced should be on a dedicated physical drive; ideally there would be two dedicated drives allocated for supporting database services. The
    For the short-term fixes, do this:
    1. During after-hours time, if you don't already have one, build a temporary machine that can act as a DC/GC, while you take this machine temporarily offline.
    1. Shutdown the Update Services service, SQL Server database engine, and any other services dependent on the SQL Server database engine (Kapersky, and other reporting applications). Disconnect from the network to temporarly eliminate DC traffic. (You could also shutdown the AD services, but disconnecting the network cable is ever-so-much easier.) Defragment ALL drives.
    2. Restart ONLY the SQL Server service. Obtain this SQL script to Reindex the WSUS Databases.
    3. Restart ONLY the Update Services service. Attempt the Server Cleanup Wizard again. Run it in two passes. Pass 1 performing everything except  remove unused updates. Pass 2 running only remove unused updates.
    4. After completion of the Server Cleanup Wizard, reconnect the machine to the network and resume all other services.
    5. If you're able to complete #3, secure the services of a well-qualified DBA to determine if there are any misconfigurations in your SQL Server setup that would account for why your WSUS database is 9GB in size -- such as improperly configured autogrowth parameters. Based on the products you're updating and only forty clients, 9GB is about 3x the maximum size I would expect to see in a WSUS database. It's possible this is simply caused by excess unused updates, it's possible it's caused by fragmentation, it's probable it was caused by unnecessary autogrowth of the database due to insufficient update maintenance. You'll want a DBA to assist you in shrinking that database after you successfully run the Database Maintenance and Server Cleanup Wizard.
    Lawrence Garvin, M.S., MCITP(x2), MCTS(x5), MCP(x7), MCBMSP
    Principal/CTO, Onsite Technology Solutions, Houston, Texas
    Microsoft MVP - Software Distribution (2005-2009)

  • We are using the Azure server for our web services. Server is generating an error "Unable to connect to the remote server". What is this error means

    We are using the Azure server for our web services. Server is generating an error "Unable to connect to the remote server". What is this error means  

    Hello,
    Did you means that you use the Windows Azure Virtual Machine DNS name as the server name in the Reporting Server Web Services URL?
    For example:
    Report server:http://uebi.cloudapp.net/reportserver
    Report manager:http://uebi.cloudapp.net/reports
    If you want to connect to Report Manager on the virtual machine from a remote computer, you should create a  virtual machine TCP Endpoint and open the port in the virtual machine’s firewall. By default, the report server listens for HTTP requests
    on port 80.
    Reference:http://msdn.microsoft.com/en-us/library/jj992719.aspx#bkmk_ssrs_connect_2_remote_RM
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Unable to connect to the analysis server the server name was not found

    Hi,
    One of the user is trying to run reports from PWA 2010 and gets the below error.
    Unable to connect to the analysis server the server name was not found.Please verify the name you entered is correct and then try again.
    Errors in the ole db provider.An error occurred while loading the connection dialog boxcomponent for prompting.
    Please advice why?

    Dear Project Help,
    Please help the community with more information.
    Which kind of reports are you running? Excel using OLAP?
    If so, check out on your Excel sheet connection information to see if it's using the SSS Authentication mode:
    I'm asking this because if the failure happens with a single user, the authentication method is wrong and you should set up Secure Store Service properly.
    Let me know if you need any help on this.
    Cheers

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • "Unable to connect to the remote server" error message (ID 6102) in event view after installing MOSS 2007

     Hi brothers,
    After installed the Moss 2007(basic) , I find some error in event view. The event ID is "6102". More detail information is shown below.
     Event Type:        Error
    Event Source:    Office SharePoint Server
    Event Category:                Launcher Service Event ID:              6102Date:                     11/27/2007Time:                     8:22:17 AMUser:                     N/AComputer:          MOSS-001Description:LoadBalancer.RegisterLauncher failed:  Unable to connect to the remote server For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. 
    Please help me, thanks.

    Hi,
    i think this has to do with the "Document Conversions Load Balancer Service".
    If you don't need the service than try to stop it:
    Start Central Administration > Operations > Services and stop the service.
    or 
    If you need it the service, try this:
    Start Central Administration > Operations > Service Account
    Change the service account to "Document Conversions Load Balancer Service" And Select a "Network Services" Click Save
    Hope this helps!
    Cheers,
    Daniel Bugday
    Web:
    SharePoint Forum
    Blog:
    Daniel Bugday's SharePoint Blog

  • I have windows 7 and Itunes 10.  I the the error of Unable to connect to the CDDB server when I try to get tune names

    I have windows 7 and Itunes 10.  I the the error of Unable to connect to the CDDB server when I try to get tune names.  I can still connect to iTunes store and I can still summit track names to the CDDB server.  I just cant recive the names from the CD's.  I read this problem on the community and I've checked that the  proxy server from Lan is unchecked.  I use a verizon wireless card for my internet if that matters.

    Perhaps try the iTunes Store loads partially or returns "Error 306" or "Error 10054" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Intermittent proxy error "There is a problem with the proxy server's security certificate. Outlook is unable to connect to the proxy server "

    Hi all,
    From time to time (at least once a day), the following message pops up on the user's screen:
    "There is a problem with the proxy server's security certificate. Outlook is unable to connect to the proxy server . Error Code 80000000)."
    If we click "OK" it goes away and everything continues to work although sometimes Outlook disconnects. It is quite annoying...
    Any ideas?
    Thank you in advance

    Hi,
    For the security alert issue, I'd like to recommend you check the name in the alert windows, and confirm if the name is in your certificate.
    Additionally, to narrow down the cause, when the Outlook client cannot connect again, I recommand you firstly check the connectivity by using Test E-mail AutoConfiguration. For more information, you can refe to the following article:
    http://social.technet.microsoft.com/Forums/en-US/54bc6b17-9b60-46a4-9dad-584836d15a02/troubleshooting-and-introduction-for-exchange-20072010-autodiscover-details-about-test-email?forum=exchangesvrgeneral
    Thanks,
    Angela Shi
    TechNet Community Support

Maybe you are looking for

  • In the new Lion, can't make text larger in Message List

    Just started using Lion. In Mail, I can enlarge the font in the message for viewing, but not in the message list on the left hand side of the creen. What am I missing? Next question-- Mail isn't allowing me to add an acount even though that account i

  • Unstable session replication in a HA cluster (CF10)

    Hi, We have tried to create a HA cluster with requests being distributed round robin to N instances of coldfusion, we are NOT using sticky sessions as we are replication session state to all cf instances. What we are seing is that all is fine with lo

  • Status updates history period default

    Hi Is there any way to change the default status updates history date range from 3 months please?  Currently as the status approver for a major change program I'm getting several hundred tasks to approve every day across multiple project plans; the p

  • How to deactive container monitor in SWUD..

    Hello Friends,   Any one knows how to deactive container monitor in SWUD.. Because i am getting error in  SM58 status text 'Screen output without connection to user' ..  I think i did activated container monter on in SWUD.. Thanks, John .

  • HT2506 Hello guys, I have a question about Preview - How do you loop a slideshow?

    Hello guys, I have a question about Preview - How do you loop a slideshow?