Query failed jobs in a BLT?

Hi all,
is there a chance to query failed jobs from a BLT (MII 12.0)? I know that I can use a xml query to read the job history:
/XMII/Illuminator?service=Scheduler&Mode=History&RowCount=1000&id=1001&StartDate=06/10/2010%2000:00:00&EndDate=06/10/2010%2023:00:00
Now for monitoring reasons I would like to have a query that checks if there have been failed jobs in a time range. Adding something like "&Status=FAILED" is ignored.
Michael

Hello Michael,
I think we can perform this using BLS,
1) Using XML Loader Action load the URL
2) Use Repeator then in links use XPath Expression to Filter out Relevant messages based on the Status Field.
I believe the loader works with content-type being "text/xml"
Hope this helps!!
Regards,
Edited by: Adarsh Sidnoor on Jun 15, 2010 4:38 PM

Similar Messages

  • Broken jobs and failed jobs

    hi all..
    please tell me difference between broken jobs and failed jobs
    thanks

    Please refer documentation .
    Failed Jobs
    If a job has the status of FAILED in the job table, it was scheduled to run once but the execution has failed. If the job was specified as restartable, all retries have failed.
    If a job fails in the middle of execution, only the last transaction of that job is rolled back. If your job executes multiple transactions, you need to be careful about setting restartable to TRUE. You can query failed jobs by querying the SCHEDULERJOB_RUN_DETAILS views.
    Broken Jobs
    A broken job is one that has exceeded a certain number of failures. This number is set in max_failures, and can be altered. In the case of a broken job, the entire job is broken, and it will not be run until it has been fixed. For debugging and testing, you can use the RUN_JOB procedure.
    You can query broken jobs by querying the SCHEDULERJOBS and SCHEDULERJOB_LOG views.
    Regards
    Renjith Madhavan

  • Failed Job Query on Central Management Registered Servers - Host Server is not included in results

    The following standard query works great for showing failed jobs on servers. Executing this in Central Management Registered Servers works as expected, but the Host Server results are not listed, and the same query needs to be executed against the host server
    too.
    e.g.
    Registered Servers are defined on Server A
    Results are displayed from servers B, C, D & E - but results are not displayed for Server A.
    How do we receive results from Server A without having to execute a separate query ?
    DECLARE @PreviousDate datetime
    DECLARE @Year VARCHAR(4)
    DECLARE @Month VARCHAR(2)
    DECLARE @MonthPre VARCHAR(2)
    DECLARE @Day VARCHAR(2)
    DECLARE @DayPre VARCHAR(2)
    DECLARE @FinalDate INT
    -- Initialize Variables
    SET @PreviousDate = DATEADD(dd, -7, GETDATE()) -- Last 7 days
    SET @Year = DATEPART(yyyy, @PreviousDate)
    SELECT @MonthPre = CONVERT(VARCHAR(2), DATEPART(mm, @PreviousDate))
    SELECT @Month = RIGHT(CONVERT(VARCHAR, (@MonthPre + 1000000000)),2)
    SELECT @DayPre = CONVERT(VARCHAR(2), DATEPART(dd, @PreviousDate))
    SELECT @Day = RIGHT(CONVERT(VARCHAR, (@DayPre + 1000000000)),2)
    SET @FinalDate = CAST(@Year + @Month + @Day AS INT)
    -- Final Logic
    SELECT j.[name],
    s.step_name,
    h.step_id,
    h.step_name,
    h.run_date,
    h.run_time,
    h.sql_severity,
    h.message,
    h.server
    FROM msdb.dbo.sysjobhistory h
    INNER JOIN msdb.dbo.sysjobs j
    ON h.job_id = j.job_id
    INNER JOIN msdb.dbo.sysjobsteps s
    ON j.job_id = s.job_id
    AND h.step_id = s.step_id
    WHERE h.run_status = 0 -- Failure
    AND h.run_date > @FinalDate
    ORDER BY h.instance_id DESC
    John

    Hi vsla,
    According to your description, I do a test. When I designate a Central Management Servers and create server groups, then execute statements against
     multiple configuration targets simultaneously, it
     indeed only contains the results of server groups, you need to execute again on the host server (Central Management Servers) then display the results of Central Management Servers, because the Central Management Server cannot be a member
    of a group that it maintains.
     If you want to get all servers results by executing the statement one time. I recommend you use Local Server Groups, create new register server and add all servers to the Local Server Groups, then right click “new query
    “, execute the statements, it will display all results about all servers. There are more details about administering multiple servers using Central Management Servers, you can review the following article.http://technet.microsoft.com/en-us/library/bb895144
    http://technet.microsoft.com/en-us/library/bb964743
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Any way to re-run all failed jobs?

    DB: 10gR2
    OS: Win2k3
    I was able to query all the jobs that failed by:
    select log_date, job_name, status from dba_scheduler_job_log
    where owner='xyzx'
    order by log_date desc
    My question is, is there a quick and painless way to run a script or something that will re-run all the failed jobs?? If anyone has written a script, please enlighten me.
    Thanks/

    I am. I marked it as helpful. Gave me some ideas on how to proceed.
    I tried your script ... and thought i just try executing one of the jobs (eg ABCD_PROC) as test. but, I got an error ORA-00900: invalid SQL statement on the --execute immediate(stmt);* line.
    >
    create or replace
    procedure failed_job_test as
    --set serveroutput on
    --declare
    stmt varchar2(100);
    begin
    for i in (SELECT job_name FROM DBA_SCHEDULER_JOB_LOG
    where owner='XYZX'
    and to_char(log_date,'mmddyy') = to_char(sysdate,'mmddyy')
    and status = 'FAILED') loop
    stmt:='dbms_scheduler.run_job('''||i.job_name||''')';
    dbms_output.put_line(stmt);
    --if i.job_name = 'ABCD_PROC' then
    --execute immediate(stmt);
    --end if;
    end loop;
    end;
    >
    DBMS_OUTPUT showed dbms_scheduler.run_job('ABCD_PROC')

  • Getting Rest Query failed error.

    Hi,
    I have integrated my app with facebook. I am able to post my reviews and comments on FB but when I click on link in FB post, its redirectign me to the required url but not loading the review.
    Can any body tell me why this happens.
    here are logs:
    2013-05-22 18:29:17,281 [http-bio-8090-exec-10] ERROR com.fatwire.wsdk.rest.WidgetSDKResource - Failed to execute method feed in widget wsdk.reviews
    com.fatwire.cos.ex.CoSServerException: com.fatwire.cos.ex.CoSServerException: REST query failed
         at com.fatwire.cos.core.jpa.query.CoSJpaQuery.getSingleResult(CoSJpaQuery.java:161)
         at com.fatwire.cos.records.RecordManager.countRecords(RecordManager.java:462)
         at com.fatwire.wsdk.cos.records.processors.feed.RecordListReadProcessor.calculatePageNo(RecordListReadProcessor.java:229)
         at com.fatwire.wsdk.cos.records.processors.feed.RecordListReadProcessor.getPageNo(RecordListReadProcessor.java:186)
         at com.fatwire.wsdk.cos.records.processors.feed.RecordListReadProcessor.process(RecordListReadProcessor.java:62)
         at com.fatwire.cos.core.monitor.MonitoredMethodInterceptor.invoke(MonitoredMethodInterceptor.java:68)
         at com.fatwire.wsdk.pipeline.impl.PipelineImpl.execute(PipelineImpl.java:60)
         at com.fatwire.cos.core.monitor.MonitoredMethodInterceptor.invoke(MonitoredMethodInterceptor.java:68)
         at com.fatwire.wsdk.rest.WidgetSDKResource.executeWidgetMethod(WidgetSDKResource.java:183)
         at sun.reflect.GeneratedMethodAccessor255.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
         at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$TypeOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:185)
         at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
         at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)
         at com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:416)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:537)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:699)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
         at com.google.inject.servlet.ServletDefinition.doService(ServletDefinition.java:263)
         at com.google.inject.servlet.ServletDefinition.service(ServletDefinition.java:178)
         at com.google.inject.servlet.ManagedServletPipeline.service(ManagedServletPipeline.java:91)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:62)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:168)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.comments.service.filters.RestFilter.doFilter(RestFilter.java:141)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.i18n.ResourceFilter.doFilter(ResourceFilter.java:45)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.sso.SSOContextFilter.doFilter(SSOContextFilter.java:64)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.wem.sso.cas.filter.CASFilter.doFilter(CASFilter.java:219)
         at com.fatwire.wem.sso.SSOFilter.doFilter(SSOFilter.java:51)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.sso.GeneralPreparationsFilter.doFilter(GeneralPreparationsFilter.java:68)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.fatwire.cos.core.util.web.StartupGuardFilter.doFilter(StartupGuardFilter.java:42)
         at com.google.inject.servlet.FilterDefinition.doFilter(FilterDefinition.java:163)
         at com.google.inject.servlet.FilterChainInvocation.doFilter(FilterChainInvocation.java:58)
         at com.google.inject.servlet.ManagedFilterPipeline.dispatch(ManagedFilterPipeline.java:118)
         at com.google.inject.servlet.GuiceFilter.doFilter(GuiceFilter.java:113)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)
         at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1002)
         at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:585)
         at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: com.fatwire.cos.ex.CoSServerException: REST query failed
         at com.fatwire.cos.core.jpa.cmd.wem.WemCommandManager.execREST(WemCommandManager.java:356)
         at com.fatwire.cos.core.jpa.cmd.wem.WemCommandManager.execGET(WemCommandManager.java:192)
         at com.fatwire.cos.core.jpa.cmd.wem.WemCountQueryCommand.findResult(WemCountQueryCommand.java:79)
         at com.fatwire.cos.core.jpa.cmd.wem.WemCountQueryCommand.executeSingle(WemCountQueryCommand.java:68)
         at com.fatwire.cos.core.monitor.MonitoredMethodInterceptor.invoke(MonitoredMethodInterceptor.java:68)
         at com.fatwire.cos.core.jpa.query.CoSJpaQuery.getSingleResult(CoSJpaQuery.java:156)
         ... 104 more
    Thanks in advance.
    Thanks,
    Nelash jindal

    Hi There,
    Please try the below steps and check if it helps :
    Go to C:/programfiles/Adobe/Adobe Captivate(version)/AdobeCaptivate.ini           
    Open the file with notepad and add the line Use32BitJVMForPublish=1 
    Save it and Try to publish the project .
    Regards,
    Mayank

  • The following query failed: GetUserProfileByName - with the wrong username

    I have 2 users (out of 800), who run into this issue on occasion. Their username is 'fccs\user1' in the profile db, and in every UserInfo table in the system. But when they try to go to certain sites or open an infopath form, this error gets thrown:
    The following query failed: GetUserProfileByName (User: FCCS\[email protected], Form Name: Template, IP: , Connection Target: , Request: http://fccsteams/sites/DataManagement/Tasks/Lists/Tasks/Folders1.aspx?RootFolder=/sites/DataManagement/Tasks/Lists/Tasks/2013/11&, Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-08-05T23:14:53:458Z Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Operation Failure ---> Access Denied: To create a user profile, you must be an administrator, or create your own profile and have personal features rights.  UnauthorizedAccessAccess Denied: To create a user profile, you must be an administrator, or create your own profile and have personal features rights. The remote server returned an error: (500) Internal Server Error.)
    Notice how the username is now the entire email address and not just the username. I have no idea why it thinks that that is their username. Any ideas?

    Hi,
    According to your post, my understanding is that you got query failed error.
    Melick had written a blog said that the form access the user profile web service (Userprofileservice.asmx) using  UDC
    file.
    You can check whether the UDC connection was still pointing to root site.
    You can change this file to match with the sub site collection. Otherwise there may be a cross domain access issue.
    There are similar threads for your reference.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/9c2f7f4c-0fa9-43bd-94b1-1d7075e35841/5566-error-with-getuserprofilebyname-and-infopah-browser-forms-using-claims-based-authentication
    http://social.msdn.microsoft.com/Forums/en-US/49753330-40c0-4327-9a9b-2c3304a74e67/sharepoint-infopath-and-populating-forms-with-ad-data?forum=sharepointcustomizationlegacy
    Thanks & Regards,
    Jason 
    Jason Guo
    TechNet Community Support

  • WSA - Report Query Failed

    Hi all,
    Recently, I'm receiving these two alerts from one WSA S370:
    Report Query Failed
          query_id: wsa_monitor_overview_web_proxy_summary
          data_source: WSASimpleTotalRDS
          error: <type 'type'> ('egg/command_client.py send_message|555', "<class 'Commandment.DaemonUnresponsiveError'>", 'S370B.NAME.net: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    AND
    Report Query Failed
          query_id: wsa_monitor_overview_clients_by_blocked_transactions
          data_source: WSACommonRDS
          error: <type 'type'> ('egg/command_client.py call|238', "<class 'reporting.query.exceptions.DatabaseQueryFailure'>", '', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|251] [reportdatasource/CounterReportDataSource.py _run_api_query|482] [query/client.py time_merge_query|454] [query/client.py _call|235] [egg/command_client.py call|238]')
    The code I'm using is 7.1.1-038
    I started receiving the alerts only after upgrading to this code. Have you noticed something similar?
    Thanks a lot for your help!!!
    Fernando

    Hello Everyone,
    I am in Australia (Melbourne) and i am using ironport s160 web security appliance version: 7.1.2-80. Reecently i have started receiving the following warning from ironport proxy.
    The Warning message is:
    Report Query Failed
                    query_id: wsa_monitor_overview_malware_categories
                    data_source: WSACommonRDS
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_suspect_transactions_detected
                    data_source: CounterReportDataSource
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|272] [reportdatasource/CounterReportDataSource.py _parse_api_results|506] [reportdatasource/CounterReportDataSource.py _parse_interval_result_set|525] [query/result.py next|112] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_suspect_transactions_summary
                    data_source: WSASimpleTotalRDS
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_top_application_types
                    data_source: CounterReportDataSource
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Report Query Failed
                    query_id: wsa_monitor_overview_top_url_categories
                    data_source: CounterReportDataSource
                    error: ('egg/command_client.py send_message|555', "", 'proxymel3.sportsbet.com.au: The daemon is not responding.', '[database/ReportCatalog.py run_report_queries|332] [reportdatasource/CounterReportDataSource.py query|265] [reportdatasource/CounterReportDataSource.py _parse_overall_interval|581] [query/merged_result.py range|85] [query/client.py _call|235] [egg/command_client.py call|233] [egg/command_client.py send_message|555]')
    Product: IronPort S160 Web Security Appliance
    Model: S160
    Version: 7.1.2-080
    Serial Number: 0025643CFD42-4GQYHL1
    Timestamp: 14 Jun 2012 14:00:21 +1000
    Thank you for your help.
    Lovedeep

  • 451 4.4.0 DNS query failed. The error was: SMTPSEND.DNS.NonExistentDomain

    Hi,
    I have two Exchange 2010 servers running on Windows 2008 Ent R2.
    These mail servers have been running fine for a few years.
    Today I noticed two things.
    1. users were telling me they were having delays receiving emails from outside of our own domain. The mail gets sent out, but it takes about 15-30 mins for users outside our our domain to get their mail. Mail sent from inside our domain gets delivered right
    away.
    2. An error message that I see when I go to Tools->Queue Viewer in EMC. The error is: 451 4.4.0 DNS query failed. The error was: SMTPSEND.DNS.NonExistentDomain. This error  shows up when you click on the "Queues" tab and then look at the
    "hub version 14" under "next hop domain" column. 
    I'm assuming these two things are related. I don't understand why the problem is just showing up now. As I said, mail delivery has been fine for a while and I haven't done any major updates to the server in a few months.
    Thanks for any ideas and suggestions as to what might be causing it and where I can look.
    Mike

    Hi,
    1. I replaced my Cert with the same exact cert from GoDaddy, just an updated expire date.
    2. We have two exchange servers.
    3. The message I am seeing now, is under "Last Error" for every queue (not individual messages).
    That error message is:  451 4.4.0 Primary Target IP address responded with 421 4.2.1 Unable to connect. Attempted failover to alternate host but that did not succeed.
    OR
    451 4.4.0 DNS query failed. The error was: SMTPSEND.DNS.NonExistentDomain. (This is the same error I mentioned earlier.
    I ran some tests on mxmailbox.com for my domain name.I got the following alerts back when running a DNS check.
    SOA Serial Number format is invalid. ns.rackspace.com Serial XXXXXXXX : Suggested serial format year was 1402 which is before 1970
    AND
    SOA Expire value out of recommended range.  ns.rackspace reported Expire 604800. Expire is recommeded to be between 1209600 and 2419200
    I use Rackspace DNS servers for External lookups.
    Does this point my mail delay problem to Rackspace or something local on my own machine?
    Thanks!
    Mike

  • ERROR: Cannot create authcontext with null org-Naming query failed  code:21

    I use OpenSSO Enterprise 8.0 Update 1 Patch1 Build 6.1(2009-June-9 12:56)
    I try to evaluate the Apache 2.2 web agent.
    It's been installed without errors, and both the OpenSSO and Apache server restarted.
    The agent profile's been created. Also, I use the default (OpenDS) configuration repository
    for OpenSSO, but an external (DSEE) user data directory.
    I think I did all the required steps with regards to both directories, since I don't see any error
    in the LDAP logs, each entry seems to be found as expected, the BIND operations are all
    successfull.
    Also, I use a sub-realm rather than the default top realm, and thus, I've modified the agent configuration
    (in the agent profile) so that the login URL is now ... /UI/Login?realm=myrealm
    When I try to access the Apache homepage, I get an error 500. The most recent OpenSSO server log file
    (...../opensso/debug/Authentication) contains the following message:
    ERROR: Cannot create authcontext with null org
    The most recent agent log file (....../apache22_agent/Agent_001/logs/debug/amAgent) has the following error:
    2009-07-07 17:08:11.992 Error 10513:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    I don't know what else I can do to debug this problem and find a solution. Any idea ?

    Thank you Shubba,
    With all available log details enabled, I now have the following messages on the agent side:
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 all: No value specified for key com.sun.identity.agents.config.profile.attribute.mapping, using default value .
    2009-07-09 10:14:51.731 Debug 5613:80149a50 NamingService: BaseService::doRequest(): Using server: http://portable.antibes.net:8080/opensso/namingservice.
    2009-07-09 10:14:51.731MaxDebug 5613:80149a50 NamingService:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <RequestSet vers="1.0" svcid="com.iplanet.am.naming" reqid="10">
    <Request><![CDATA[                                                                                                                      
      <NamingRequest vers="3.0" reqid="2" sessid=""AQIC5wM2LY4SfcyaGFgc5h9Y7/kpf4f//ml82oVfNlbWxQE=@AAJTSQACMDE=#"">                             <GetNamingProfile>                                                                                                                         </GetNamingProfile>                                                                                                                        </NamingRequest>]]> </Request>
    </RequestSet>
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest Request line: POST /opensso/namingservice HTTP/1.0
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Cookie and Headers =Host: portable.antibes.net
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Content-Length =Content-Length: 334
    2009-07-09 10:14:51.712 Debug 5613:80149a50 NamingService: BaseService::sendRequest Header Suffix =Accept: text/xml
    Content-Type: text/xml; charset=UTF-8
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Total chunks: 7.
    2009-07-09 10:14:51.712MaxDebug 5613:80149a50 NamingService: BaseService::sendRequest(): Sent 7 chunks.
    2009-07-09 10:14:51.728 Debug 5613:80149a50 NamingService: HTTP Status = 500 (Internal Server Error)
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading headers.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Server: Apache-Coyote/1.1
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Content-Type: text/html;charset=utf-8
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Date: Thu, 09 Jul 2009 08:14:51 GMT
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Connection: close
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Reading body content of length: 13830487939496281954
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 all: Connection::waitForReply(): returns with status success.
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: Http::Response::readAndParse(): Completed processing the response with status: success
    2009-07-09 10:14:51.729MaxDebug 5613:80149a50 NamingService: <html><head><title>Apache Tomcat/6.0.18 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 500 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Exception report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The server encountered an internal error () that prevented it from fulfilling this request.</u></p><p><b>exception</b> <pre>javax.servlet.ServletException: AMSetupFilter.doFilter
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:117)
    </pre></p><p><b>root cause</b> <pre>java.lang.NullPointerException
    com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    com.iplanet.services.comm.server.PLLRequestServlet.doPost(PLLRequestServlet.java:134)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    com.sun.identity.setup.AMSetupFilter.doFilter(AMSetupFilter.java:91)
    </pre></p><p><b>note</b> <u>The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.18</h3></body></html>
    2009-07-09 10:14:51.729 Warning 5613:80149a50 NamingService: BaseService::doHttpPost() failed, HTTP error = 500
    2009-07-09 10:14:51.729 Debug 5613:80149a50 NamingService: NamingService()::getProfile() returning with error code HTTP error.
    2009-07-09 10:14:51.729 Error 5613:80149a50 PolicyEngine: am_policy_evaluate: InternalException in Service::update_policy with error message:Naming query failed. and code:21
    In my Tomcat server (OpenSSO server web container), I have the following errors:
    Jul 9, 2009 10:12:35 AM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 22746 ms
    [Fatal Error] :2:46: Element type "NamingRequest" must be followed by either attribute specifications, ">" or "/>".
    java.lang.NullPointerException
    at com.iplanet.services.naming.service.NamingService.processRequest(NamingService.java:361)
    at com.iplanet.services.naming.service.NamingService.process(NamingService.java:352)
    at com.iplanet.services.comm.server.PLLRequestServlet.handleRequest(PLLRequestServlet.java:180)
    at ...
    It seems like the problem comes from the couple of closing square brackets in the NamingRequest tag:
    </NamingRequest>]]>
    I don't know where it comes from, so if you've an idea I'd enjoy .
    Cheers,

  • Restart of failed jobs while export of a SAP instance

    Hi,
    I am performing export of a source system for unicode conversion. 8 parallel processes have been configured. 40 jobs completed and 3 jobs failed in export with an error "Unable to extend tempfile".
    Now that tempfile has been added. My questions is how to restart a failed job while the export of SAP instance is in progress?
    Thanks

    If I stop sapinst and restart it, will it cause loss of data? (The 2 jobs failed when 24 job completed. How 200 jobs have already completed)
    Based on the above, I have the following questions.
    1- If I restart sapinst, will it process the 2 failed jobs and the proceed from 201 job, since already 200 have completed.
    2- In sapinst, there is no stop button. Do I have to logoff and restart sapinst -> continue old installation?
    Thanks,
    Haleem

  • CCMS alert emails for failed jobs

    Hello All
    What are the steps to set a ccms alert for failed jobs? Also is it possible to set ccms to warn us of long running jobs. I would like to set the sysem so that we get a email notification on any failed jobs or long running jobs.
    I appreciate any input or leads.
    Thanks

    Hi,
    You can get the alerts for failed jobs, Just maintain the realted setting in the ccms_onalert_email
    maintain the address and then assign this as auto reaction method in your ccms template for background jobs.
    Also i request to search SDN there are many threads related to auto reaction mails.
    Regards,
    Vamshi.

  • Database Query Failed

    I got this error message instead of weekly report.
    Anybody ever experienced this? How to fix it?
    The Warning message is:
    Report Query Failed
    query_id: mga_overview_incoming_mail_over_time
    data_source: CounterReportDataSource
    error: <type 'type'> ('command_manager/command_client.py call|242', "<class 'reporting.query.exceptions.DatabaseQueryFailure'>", '', '[database/ReportCatalog.py run_report_queries|234] [reportdatasource/CounterReportDataSource.py query|131] [reportdatasource/CounterReportDataSource.py _parse_api_results|216] [reportdatasource/CounterReportDataSource.py _parse_interval_result_set|251] [reportdatasource/CounterReportDataSource.py _parse_interval_result|317] [reportdatasource/CounterReportDataSource.py _parse_standard_interval_result|326] [query/result.py next|239] [query/client.py _call|212] [command_manager/command_client.py call|242]')
    Version: 5.5.1-011

    Yes, I did. Instead of a graph, I got this error message:
    Error while receiving data.
    There may have been an intermittent timeout during the database query.
    Have you tried going onto the GUI interface and going to "Monitor > Incoming Mail", switching the Time range to display a Week and then clicking on the Printable button on the right hand corner.
    I got this error message instead of weekly report.
    Anybody ever experienced this? How to fix it?
    The Warning message is:
    Report Query Failed
    query_id: mga_overview_incoming_mail_over_time
    data_source: CounterReportDataSource
    error: ('command_manager/command_client.py call|242', "", '', '[database/ReportCatalog.py run_report_queries|234] [reportdatasource/CounterReportDataSource.py query|131] [reportdatasource/CounterReportDataSource.py _parse_api_results|216] [reportdatasource/CounterReportDataSource.py _parse_interval_result_set|251] [reportdatasource/CounterReportDataSource.py _parse_interval_result|317] [reportdatasource/CounterReportDataSource.py _parse_standard_interval_result|326] [query/result.py next|239] [query/client.py _call|212] [command_manager/command_client.py call|242]')
    Version: 5.5.1-011

  • Query for job status using Web Services in BODI

    Hello,
    I am starting a Batch job in DI using Web Services, getting the following response from DI:
    Code:
    <soapenv:Envelope
        xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <soapenv:Body>
            <BatchJobResponse>
                <pid>704</pid>       
                <cid>26</cid>       
            </BatchJobResponse>
        </soapenv:Body>
    </soapenv:Envelope>
    How can I know the status of the started job?
    How can I know if the job execution finished with success or not?
    I did not find in WSDL file any method to query for job or service status...
    Thank you in advance,
    Adrian Mitrica

    Did you ever get this figured out?  I am having exactly the same problem in code generated by VS, with the BAPIRET2 structure.
    Any help you could provide would be greatly appreciated.
    Thanks!
    Leighton Wingerd
    Adirondack Solutions, Inc.
    [email protected]

  • Query Failed: [nQSError: 46036] Internal Assertion ( OBIEE error)

    Hi Friends.
    Did anyone faced this problem. I am using custom filters on reports. The reports work well for 5 filters but start giving error on last filter. As far as I can guess its an internal OBIEE optimizer error. Can anyone faced this problem and help
    A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 46036] Internal Assertion: Condition pCond, file server\Query\Optimizer\Request\Src\SQORRqList.cpp, line 2604.Please have your System Administrator look at the log for more details on this error. (HY000)

    We faced same problem. There is no clear definition of error even we increase log trace level to 7.
    Query Status: [nQSError: 46036] Internal Assertion: Condition pCond, file server\Query\Optimizer\Request\Src\SQORRqList.cpp, line 2716. [[
    We will open a ticket to Oracle Support.

  • Data Synchronize from HFM FMDmeException Query Failed or invalid

    I'm trying to create a Data Synchronization where HFM is the data source source.
    I keep getting the following dme exception and don't know how to further diagnose the issue.
    4/19/12 1:29 PM : Error submitting request to source connector - exception: com.hyperion.datasync.fmdme.exception.FMDmeException: Acknowledgement failure - status: 1, reason: Query Failure: The query failed or is invalid! (0)
    4/19/12 1:29 PM : Translation failed - Source query failed to open - exception:; nested exception is:
         com.hyperion.datasync.fmdme.exception.FMDmeException: Acknowledgement failure - status: 1, reason: Query Failure: The query failed or is invalid! (0)
    The DME Listener service is running.
    I've tried the simplest data sync -- just one member in each dimension, copying to same application (in a different scenario).
    I have data synchronizations that do work where the source is a Planning application.
    I was able -- a month ago -- to create a sync where HFM is the source on this development application so don't know if something has changed in the application itself.
    Any suggestions appreciated.
    Thanks,
    Barb
    Edited by: bg on Apr 19, 2012 1:31 PM

    You're right. I should have put it in Financial Consolidation. I don't see that I can post a question directly to EPMA level.

Maybe you are looking for

  • I keep getting a message saying, "Apple Mobile Device failed to start" Verify privileges".

    I couldn't open my itunes so after trying to do a fix that didn't work I uninstalled itunes then tried to install it again.  I get to the start service portion of the download and get the Device failed message.  I don't have a mobile device associate

  • My PC cannot identify my TC?

    Trying to connect my PC to my TC but can't seem to work? I can connect to the internet via TC's WiFi, however, cannot connect to back up my data nor access other data already there. I downloaded Airport Utlity for PC but after multiple scanning attem

  • Apple's bluetooth mouse problem

    hi there, now here is an intresting problem i have with my apple bluetooth mouse. the problem i have is that if i turn off my mouse and then turn it on, it wont connect to my powerbook, so inorder to connect it, i have 2 options, the first one is to

  • How prevent JTable row selection?

    there are three selection mode for JTable, MultiIntervalSelection, SingleIntervalSelection and SingleSelection. Is there a no selection mode?

  • Xquery mapper plugin for eclipse

    Is there any Xquery mapper plugin for eclipse? I dont have OSB OPEE installation in my system. With out OSB installation, can i plugin Xquery mapper for developing Xquery tranformation file.