Merge Replication from 2012 SQL Server publisher/distributor to 2014 SQL Express subscriber

Hi, I'm having a question about which version to use when running SQL Merge Replication.
In my test enviroment I have a SQL 2012 server running as Publisher and Distributor for my Merge Replication. I have now set up a test client running Win7 with SQL 2014 Express as a subscriber. The subscription initializes and runs perfectly.
But according to the SQL documentation this should not be possible as it states that the subscriber should have a version number equal or lower than the publisher. My subscription client was set ut using SQL-scripting, if I try using the wizard it will just
cause an error message telling that this is not possible since the client has a newer version number. I still not encountered any problems after I set it up using the script with the sp_addmergepullsubscription and sp_addmergepullsubscription_agent procedures.
The roll-out of my solution will start in a few weeks and I now have to decide whether to use 2014 Express or 2012 Express on the clients. Using 2014 Express will save me for a lot of upgades in a year or two. The 2012 SQL Server running as publisher/distributor
will be upgraded to/replaced with a 2014 Server in some few months.
I'm looking for good advices and recommendations for what to choose on the clients, 2012 Express or 2014 Express. Are the any known problems with using 2014 Express as a subscriber to a publisher/distributor running 2012 SQL Server?
All responses are welcome!
Regards, Anders

Hi,
As you understand that a Subscriber to a merge publication can be any version less than or equal to the Publisher version. When you set up a subscription from a publisher to a subscriber using SQL Server Management Studio, you will get error
“The selected Subscriber does not satisfy the minimum version compatibility level of the selected publication.” And you can use T-SQL script to get around this error message.
I would install SQL Server 2012 Express on the clients. Here is the reasons:
1. If you upgrade the publisher to SQL Server 2014, it is still working with SQL Server 2012 on the subscriber.
2. I cannot tell whether there are other potential problems if I choose the later one besides the error message.
Reference:
http://msdn.microsoft.com/en-us/library/ms143699(v=sql.120).aspx
Thanks.
Tracy Cai
TechNet Community Support

Similar Messages

  • How do I merge data from table1 on server 1 to final table on server 2 with a stored procedure to execute every so many hours.

    How do I merge data from table1 on server 1 to final table on server 2 with a stored procedure to execute every so
    many hours.

    How big is the table on server B? Is that possible to bring the all data into a server A and merge the data locally?
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How do I merge data from table1 on server 1 to final table on server 2 with a stored procedure to execute every 4 hours.

    How do I merge data from table1 on server 1 to final table on server 2 with a stored procedure to execute every so many hours.

    Hello,
    If you had configure server2 as
    linked server on the server1, you can run the following statement inside stored proceduce to copy table data. And then create a job to the run stored proceduce every 4 hours.
    Insert Into Server2.Database2.dbo.Table2
    (Cols)
    Select Cols From Server1.Database1.dbo.Table1
    Or you can use the SQL Server Import and Export Wizard to export the data from server1 to server2, save the SSIS package created by the wizard on the SQL Server, create a job to run the SSIS package. 
    Reference:http://technet.microsoft.com/en-us/library/ms141209.aspx
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Transferring 3 SQL databases from both SQL Express 2005 and Standard to a new physical server

    I am trying to figure out the best method for transferring SQL 2005 databases from 2 different physical servers to a new server running windows server 2008 64bit.
    I own a fully registered copy of Microsoft SQL 2005 32bit Standard Edition. However all of my SQL databases together are only 4GB in size thereby making 2008 SQL Express an option.
    Here is the breakdown of the servers:
    1) (Old Server1) Windows 2003 Server 32bit - SQL Express 2005 32bit
    2) (Old Server2) Windows 2003 Server 32bit - SQL Server 2005 32bit Standard
    3) (New Server) Windows 2008 Server 64bit - (Not sure which version to install)
    **The objective is to migrate 2 SQL databases from Old Server1 and 1 SQL database from Old Server 2 to the New Server. What version should I install on the new server??? Do I go with 2008 express or install the 2005 Standard Edition?
    Pending your response to which version to install, what are the correct steps to migrate (which I have never done before) the databases from both of these servers to the new server?
    I have researched this online and I think this particular situation is unique in that I am transferring from both SQL Express and Standard from 2 different physical servers to a 2008 server that is 64bit. I cannot find anything online that I feel confident
    in trying. Please help me, as I have this migration deadline of this weekend. Any help is appreciated. Thanks.

    Hello,
    You may choose between using backup/restore or using detach/attach methods to migrate the databases.
    https://msdn.microsoft.com/en-us/library/ms187858(v=sql.90).aspx
    You can transfer logins using the following article.
    http://support.microsoft.com/en-us/kb/918992
    To decide if you migrate to Express Edition or to another edition, please review the features supported by each edition. For instance, Express Edition does not support jobs (SQL Server Agent is not available).
    https://msdn.microsoft.com/en-us/library/cc645993(v=sql.100).aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Changing databases from MS SQL Express to MySQL in a  Report at runtime

    Hi all,
    I have an issue in changing databases from MS SQL Express to MYSQL or vice versa in a Report at runtime.
    Here is what I do:
    I create a very simple report with the Crystal Report Designer 2008 V 12.3.0.601.
    This report uses a stored procedure to retrieve it's data. I connect to the Database with JDBC.
    I have two Databases with similar schema and procedures: MS SQL Express an MySQL.
    When I create the report with MSSQL all parameters have the '@' character, as they are named. ok.
    I deploy this report in a JSP application with the crystaldecisions SDK an show it in html viewer format.
    The connection to the MSSQL DB gets established by my JSP and the CRJavaHelper.
    I pass the parameters through my URL to the JSP and finally to the CRJavaHelper (addDiscreteParameterValue)
    and everything works fine.
    The challenge starts, when I try to change the Datasource of this report to MySQL at runtime (which is a requirement in my project).
    I successfully can establish the DBConnection, but my stored procedure just doesn't get called!
    The report just displays totally empty, no Exceptions etc. are thrown. In the DB logfile I see the effort to find my procedure
    and that's all. The Statements called by the SDK finds the correct Procedure, but there's no call to the procedure.
    Of course I know, that MS SQL names it's procedures slightly different (';1' at the end), but even when I rename the table Alias to the correct name in CRHelperJava, I get no call to the procedure in MySQL. I also renamed the parameter-fields in changeDataSource(..) by casting the table to IProcedure and working on its methods. Still no success.
    What am I missing to do or what do I do wrong?
    Any suggestions or even solutions?
    Best Regards,
    Tom

    after all I have managed to set param Values, now I'm stuck because the parms seem to have dissappeared in the formula fields. E.g. I receive this Exception:
    <br><br>
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Ausnahme in Formel ""{@DurationMin}"" bei ""{dataProc.Duration}"":
    Dieser Feldname ist unbekannt.---- Error code:-2147467259 Error code name:failed
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:2285)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:733)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(SourceFile:167)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(SourceFile:529)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(SourceFile:527)
         at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(SourceFile:102)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.for(SourceFile:525)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.int(SourceFile:424)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(SourceFile:352)
         at com.businessobjects.sdk.erom.jrc.a.a(SourceFile:54)
         at com.businessobjects.sdk.erom.jrc.a.execute(SourceFile:67)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.execute(SourceFile:716)
         at com.crystaldecisions.proxy.remoteagent.CommunicationChannel.a(SourceFile:125)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:537)
         at com.crystaldecisions.sdk.occa.report.application.RowsetController.getSQLStatement(SourceFile:1485)
         at org.apache.jsp.report_jsp._jspService(report_jsp.java:360)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:386)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.crystaldecisions.reports.dataengine.DataEngineException: Ausnahme in Formel ""{@DurationMin}"" bei ""{dataProc.Duration}"":
    Dieser Feldname ist unbekannt.
         at com.crystaldecisions.reports.dataengine.DataSourceManager.do(SourceFile:692)
         at com.crystaldecisions.reports.dataengine.DataSourceManager.new(SourceFile:607)
         at com.crystaldecisions.reports.dataengine.DataSourceManagerCoordinator.a(SourceFile:505)
         at com.crystaldecisions.reports.dataengine.DataSourceManager.a(SourceFile:1060)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:729)
         at com.crystaldecisions.reports.dataengine.DataProcessor2.a(SourceFile:699)
         at com.businessobjects.reports.sdk.requesthandler.DatabaseRequestHandler.i(SourceFile:1308)
         at com.businessobjects.reports.sdk.requesthandler.DatabaseRequestHandler.k(SourceFile:1297)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.do(SourceFile:1310)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(SourceFile:661)
         ... 32 more
    Caused by: com.crystaldecisions.reports.formulas.FormulaException: Ausnahme in Formel ""{@DurationMin}"" bei ""{dataProc.Duration}"":
    Dieser Feldname ist unbekannt.
         at com.crystaldecisions.reports.formulas.o.a(SourceFile:1041)
         at com.crystaldecisions.reports.formulas.o.do(SourceFile:1013)
         at com.crystaldecisions.reports.formulas.o.new(SourceFile:688)
         at com.crystaldecisions.reports.formulas.o.else(SourceFile:459)
         at com.crystaldecisions.reports.formulas.f.void(SourceFile:65)
         at com.crystaldecisions.reports.formulas.FormulaParser.a(SourceFile:345)
         at com.crystaldecisions.reports.formulas.r.a(SourceFile:89)
         at com.crystaldecisions.reports.formulas.FormulaInfo.a(SourceFile:570)
         at com.crystaldecisions.reports.formulas.FormulaService.compile(SourceFile:347)
         at com.crystaldecisions.reports.reportdefinition.FormulaCompiler.a(SourceFile:139)
         at com.crystaldecisions.reports.reportdefinition.FormulaFieldDefinitionBase.compile(SourceFile:928)
         at com.crystaldecisions.reports.reportdefinition.o.a(SourceFile:1360)
         at com.crystaldecisions.reports.reportdefinition.o.a(SourceFile:1348)
         at com.crystaldecisions.reports.reportdefinition.o.a(SourceFile:4225)
         at com.crystaldecisions.reports.dataengine.DataSourceManager.do(SourceFile:687)
         ... 41 more
    <br><br>
    where dataProc is my stored procedure and @DurationMin is a function field.
    do I have to call verifyDatabase() when I have changed DBs and set the param Values?
    Is there a defined sequence to execute these steps?
    Edited by: tomspengler on Dec 8, 2011 1:55 PM

  • Can 2008 reporting services read data from 2012 sql server

    Will 2008 SSRS be able to retrieve data / speak
    to 2012 SQL Server database?

    I will try and see if it throws error. Check below similar thread.
    https://social.technet.microsoft.com/Forums/en-US/067406f5-bd65-40eb-b333-3449adeefade/connect-to-sql-server-2012-databases-from-ssrs-2008-r2?forum=sqlreportingservices
    Regards,
    Vishal Patel
    Blog: http://vspatel.co.uk
    Site: http://lehrity.com

  • One way replication from MS sql server to Oracle 10g

    Hi,
    We are using Sql server 2005 windows 2003 32 bit and Oracle 10g 10.2.0.3 on linux 64 bit
    Is it possible to replcate table data on real time from sql server (2005 32 bit or sql server 2000 32 bit)to oracle 10g running on linux 64 bit?
    If yes then what are the steps.
    It will be one way replication from sql server to oracle.
    Which option is best sql server dts or Oracle Stream replication to replicate table data?
    Regards,

    If you want to push data from SqlServer, then ODBC, Linked tables, DTS etc.
    If you want to pull data from Oracle, then Heterogenous Services / Gateway.

  • Is it possible to configure transaction and merge replication one database as a publisher?

    Hi All,
    We have a requirement to configure replication between the servers and its plan is as fallows:
    A------>B -- One way transactional replication ---  Already Configured
    A------> C --Merge Replication (Both ways)--- This is in plan
    1) Our requirement to configure Merge replication is to allow multiple users to access both publisher and subscriber databases. Configuring Merge replication with a combination of Transactional replication is correct or do we end up facing issues?
    2) A to B transactional replication is already configured so if we configure merge replication between A to C will effect existing replication?
    Please let us know if you need any details on this. Thank You.
    Grateful to your time and support. Regards, Shiva

    Hi Sir,
    Thanks for the information. But I have small doubt, "best to use merge all the way" is that mean you recommend to use Merge replication for all the servers.
    A------>B --
    Merge Replication (Both ways) 
    A------> C --Merge Replication (Both ways)
    Please correct me if I am wrong
    Grateful to your time and support. Regards, Shiva

  • 2012 R2 machines not finding updates from 2012 WSUS Server

    So I've seen some similar things to what I'm seeing mentioned but haven't found an exact replica.
    Our WSUS machine is running Server 2012 and syncs its patches down from a different WSUS machine also running 2012.
    WSUS is version 6.2.9200.
    We have spun up a number of 2012 R2 VMs lately and just noticed that those machines are not getting their updates.  The machines running 2012 Non-R2 are working just fine.
    The windowsupdate.log file from one of the 2012 R2 machine has various lines such as:
    WARNING: Network Cost is assumed to be not supported as something failed with trying to get handles to wcmapi.dll
    WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
    WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    I've seen reference to a KB article that applies to WSUS 3.2 but we don't have that so I'm not sure what else we can try.
    Any ideas would be great.
    Thanks!

    Here's a whole chunk of the log...
    2014-12-10 11:45:24:852 788 3f4 Agent *********** Agent: Initializing global settings cache ***********
    2014-12-10 11:45:24:852 788 3f4 Agent * Endpoint Provider: 00000000-0000-0000-0000-000000000000
    2014-12-10 11:45:24:852 788 3f4 Agent * WSUS server: http://<wsus_server>:8530
    2014-12-10 11:45:24:852 788 3f4 Agent * WSUS status server: http://<wsus_server>:8530
    2014-12-10 11:45:24:852 788 3f4 Agent * Target group: SAN
    2014-12-10 11:45:24:852 788 3f4 Agent * Windows Update access disabled: No
    2014-12-10 11:45:24:852 788 3f4 Misc WARNING: Network Cost is assumed to be not supported as something failed with trying to get handles to wcmapi.dll
    2014-12-10 11:45:24:852 788 3f4 WuTask WuTaskManager delay initialize completed successfully..
    2014-12-10 11:45:24:852 788 3f4 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-12-10 20:30:04, not idle-only, not network-only
    2014-12-10 11:45:24:852 788 3f4 AU Timer: CF1ABEC6-7887-4964-BB93-B2E21B31CEC1, Expires 2014-12-11 01:12:30, not idle-only, not network-only
    2014-12-10 11:45:24:852 788 3f4 AU Timer: 29A863E7-8609-4D1E-B7CD-5668F857F1DB, Expires 2014-12-11 01:11:18, not idle-only, not network-only
    2014-12-10 11:45:24:852 788 3f4 Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2014-12-10 11:45:24:852 788 3f4 Report CWERReporter::Init succeeded
    2014-12-10 11:45:24:852 788 3f4 Agent *********** Agent: Initializing Windows Update Agent ***********
    2014-12-10 11:45:24:852 788 3f4 DnldMgr Download manager restoring 0 downloads
    2014-12-10 11:45:24:852 788 7934 AU ########### AU: Initializing Automatic Updates ###########
    2014-12-10 11:45:24:852 788 7934 AU Additional Service {855E8A7C-ECB4-4CA3-B045-1DFA50104289} with Approval type {Pre-download notify} added to AU services list
    2014-12-10 11:45:24:852 788 7934 AU AIR Mode is disabled
    2014-12-10 11:45:24:852 788 7934 AU # Policy Driven Provider: http://<wsus_server>:8530
    2014-12-10 11:45:24:852 788 7934 AU # Detection frequency: 2
    2014-12-10 11:45:24:852 788 7934 AU # Target group: SAN
    2014-12-10 11:45:24:852 788 7934 AU # Approval type: Pre-install notify (Policy)
    2014-12-10 11:45:24:852 788 7934 AU # Auto-install minor updates: Yes (Policy)
    2014-12-10 11:45:24:852 788 7934 AU # ServiceTypeDefault: Service 855E8A7C-ECB4-4CA3-B045-1DFA50104289 Approval type: (Pre-download notify)
    2014-12-10 11:45:24:852 788 7934 AU # Will interact with non-admins (Non-admins are elevated (User preference))
    2014-12-10 11:45:24:852 788 3f4 IdleTmr WU operation (CSearchCall::Init ID 1) started; operation # 4; does use network; is not at background priority
    2014-12-10 11:45:24:852 788 3f4 IdleTmr Incremented idle timer priority operation counter to 1
    2014-12-10 11:45:24:883 788 7934 AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
    2014-12-10 11:45:24:883 788 7934 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2014-12-10 11:45:24:883 788 7934 AU AU finished delayed initialization
    2014-12-10 11:45:24:883 788 7934 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2014-12-10 11:45:24:883 788 7934 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2014-12-10 11:45:24:883 788 7934 AU Adding timer:
    2014-12-10 11:45:24:883 788 7934 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-12-10 20:30:04, not idle-only, not network-only
    2014-12-10 11:45:24:883 788 3598 DnldMgr Asking handlers to reconcile their sandboxes
    2014-12-10 11:45:25:118 788 3f4 Report *********** Report: Initializing static reporting data ***********
    2014-12-10 11:45:25:118 788 3f4 Report * OS Version = 6.3.9600.0.0.196880
    2014-12-10 11:45:25:118 788 3f4 Report * OS Product Type = 0x00000007
    2014-12-10 11:45:25:118 788 3f4 Report * Computer Brand = Microsoft Corporation
    2014-12-10 11:45:25:118 788 3f4 Report * Computer Model = Virtual Machine
    2014-12-10 11:45:25:118 788 3f4 Report * Platform Role = 1
    2014-12-10 11:45:25:118 788 3f4 Report * AlwaysOn/AlwaysConnected (AOAC) = 0
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Revision = 090006
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Name = BIOS Date: 05/23/12 17:15:53 Ver: 09.00.06
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Release Date = 2012-05-23T00:00:00
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Sku Number unavailable.
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Vendor = American Megatrends Inc.
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Family unavailable.
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Major Release unavailable.
    2014-12-10 11:45:25:118 788 3f4 Report * Bios Minor Release unavailable.
    2014-12-10 11:45:25:118 788 3f4 Report * Locale ID = 1033
    2014-12-10 11:45:25:321 788 3f4 Agent *** START *** Queueing Finding updates [CallerId = <<PROCESS>>: wsmprovhost.exe Id = 1]
    2014-12-10 11:45:25:321 6520 7e34 COMAPI <<-- SUBMITTED -- COMAPI: Search [ClientId = <NULL>]
    2014-12-10 11:45:25:321 788 5d44 Agent *** END *** Queueing Finding updates [CallerId = <<PROCESS>>: wsmprovhost.exe Id = 1]
    2014-12-10 11:45:25:321 788 5d44 Agent *************
    2014-12-10 11:45:25:321 788 5d44 Agent ** START ** Agent: Finding updates [CallerId = <<PROCESS>>: wsmprovhost.exe Id = 1]
    2014-12-10 11:45:25:321 788 5d44 Agent *********
    2014-12-10 11:45:25:321 788 5d44 Agent * Online = Yes; Ignore download priority = No
    2014-12-10 11:45:25:321 788 5d44 Agent * Criteria = "IsInstalled=0 and Type='Software'"
    2014-12-10 11:45:25:321 788 5d44 Agent * ServiceID = {00000000-0000-0000-0000-000000000000} Third party service
    2014-12-10 11:45:25:321 788 5d44 Agent * Search Scope = {Machine}
    2014-12-10 11:45:25:321 788 5d44 Agent * Caller SID for Applicability: S-1-5-21-806291793-1681129048-438139985-1157
    2014-12-10 11:45:25:321 788 5d44 Agent * RegisterService is set
    2014-12-10 11:45:25:321 788 5d44 EP Got WSUS Client/Server URL: "http://<wsus_server>:8530/ClientWebService/client.asmx"
    2014-12-10 11:45:25:524 788 5d44 PT +++++++++++ PT: Synchronizing server updates +++++++++++
    2014-12-10 11:45:25:524 788 5d44 PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://<wsus_server>:8530/ClientWebService/client.asmx
    2014-12-10 11:45:25:524 788 5d44 PT WARNING: Cached cookie has expired or new PID is available
    2014-12-10 11:45:25:524 788 5d44 EP Got WSUS SimpleTargeting URL: "http://<wsus_server>:8530"
    2014-12-10 11:45:25:524 788 5d44 IdleTmr WU operation (CAuthorizationCookieWrapper::InitializeSimpleTargetingCookie) started; operation # 9; does use network; is at background priority
    2014-12-10 11:45:25:524 788 5d44 PT Initializing simple targeting cookie, clientId = 3f3f03ad-8b6d-4376-838f-dc20db797924, target group = SAN, DNS name = <client machine>.domain.us
    2014-12-10 11:45:25:524 788 5d44 PT Server URL = http://<wsus_server>:8530/SimpleAuthWebService/SimpleAuth.asmx
    2014-12-10 11:45:25:680 788 5d44 IdleTmr WU operation (CAuthorizationCookieWrapper::InitializeSimpleTargetingCookie, operation # 9) stopped; does use network; is at background priority
    2014-12-10 11:45:25:680 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 10; does use network; is at background priority
    2014-12-10 11:45:25:696 788 5d44 WS WARNING: Nws Failure: errorCode=0x803d0013
    2014-12-10 11:45:25:696 788 5d44 WS WARNING: The body of the received message contained a fault.
    2014-12-10 11:45:25:696 788 5d44 WS WARNING: Soap fault info:
    2014-12-10 11:45:25:696 788 5d44 WS WARNING: reason: Fault occurred
    2014-12-10 11:45:25:696 788 5d44 WS WARNING: code: Client
    2014-12-10 11:45:25:696 788 5d44 WS WARNING: detail: <detail><ErrorCode>ConfigChanged</ErrorCode><Message></Message><ID>20d8f518-d8e5-4bf0-9930-fa46aa9963d0</ID><Method>"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"</Method></detail>
    2014-12-10 11:45:25:696 788 5d44 WS WARNING: Soap fault detail: errorCode='ConfigChanged', message='(null)', id='20d8f518-d8e5-4bf0-9930-fa46aa9963d0', method='"http://www.microsoft.com/SoftwareDistribution/Server/ClientWebService/GetCookie"'
    2014-12-10 11:45:25:696 788 5d44 WS FATAL: OnCallFailure failed with hr=0X80244007
    2014-12-10 11:45:25:696 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 10) stopped; does use network; is at background priority
    2014-12-10 11:45:25:696 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::GetConfig_WithRecovery) started; operation # 11; does use network; is at background priority
    2014-12-10 11:45:25:696 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::GetConfig_WithRecovery, operation # 11) stopped; does use network; is at background priority
    2014-12-10 11:45:25:696 788 5d44 PT WARNING: Cached cookie has expired or new PID is available
    2014-12-10 11:45:25:696 788 5d44 EP Got WSUS SimpleTargeting URL: "http://<wsus_server>:8530"
    2014-12-10 11:45:25:696 788 5d44 IdleTmr WU operation (CAuthorizationCookieWrapper::InitializeSimpleTargetingCookie) started; operation # 12; does use network; is at background priority
    2014-12-10 11:45:25:696 788 5d44 PT Initializing simple targeting cookie, clientId = 3f3f03ad-8b6d-4376-838f-dc20db797924, target group = SAN, DNS name = <client machine>.domain.us
    2014-12-10 11:45:25:696 788 5d44 PT Server URL = http://<wsus_server>:8530/SimpleAuthWebService/SimpleAuth.asmx
    2014-12-10 11:45:25:711 788 5d44 IdleTmr WU operation (CAuthorizationCookieWrapper::InitializeSimpleTargetingCookie, operation # 12) stopped; does use network; is at background priority
    2014-12-10 11:45:25:711 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery) started; operation # 13; does use network; is at background priority
    2014-12-10 11:45:25:711 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::GetCookie_WithRecovery, operation # 13) stopped; does use network; is at background priority
    2014-12-10 11:45:25:727 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::RegisterComputer_WithRecovery) started; operation # 14; does use network; is at background priority
    2014-12-10 11:45:25:727 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::RegisterComputer_WithRecovery, operation # 14) stopped; does use network; is at background priority
    2014-12-10 11:45:25:743 788 5d44 Agent Reading cached app categories using lifetime 604800 seconds
    2014-12-10 11:45:25:743 788 5d44 Agent Read 0 cached app categories
    2014-12-10 11:45:25:743 788 5d44 Agent SyncUpdates adding 0 visited app categories
    2014-12-10 11:45:26:852 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 15; does use network; is at background priority
    2014-12-10 11:45:26:868 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 15) stopped; does use network; is at background priority
    2014-12-10 11:45:26:914 788 5d44 Agent Reading cached app categories using lifetime 604800 seconds
    2014-12-10 11:45:26:914 788 5d44 Agent Read 0 cached app categories
    2014-12-10 11:45:26:914 788 5d44 Agent SyncUpdates adding 0 visited app categories
    2014-12-10 11:45:26:930 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 16; does use network; is at background priority
    2014-12-10 11:45:26:946 788 5d44 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 16) stopped; does use network; is at background priority
    2014-12-10 11:45:26:946 788 5d44 PT + SyncUpdates round trips: 2
    2014-12-10 11:45:26:961 788 5d44 Agent * Found 0 updates and 72 categories in search; evaluated appl. rules of 391 out of 549 deployed entities
    2014-12-10 11:45:26:961 788 5d44 Agent Reporting status event with 0 installable, 3 installed, 0 installed pending, 0 failed and 0 downloaded updates
    2014-12-10 11:45:26:961 788 5d44 Agent *********
    2014-12-10 11:45:26:961 788 5d44 Agent ** END ** Agent: Finding updates [CallerId = <<PROCESS>>: wsmprovhost.exe Id = 1]
    2014-12-10 11:45:26:961 788 5d44 Agent *************
    2014-12-10 11:45:26:961 788 5d44 IdleTmr WU operation (CSearchCall::Init ID 1, operation # 4) stopped; does use network; is not at background priority
    2014-12-10 11:45:26:961 788 5d44 IdleTmr Decremented idle timer priority operation counter to 0
    2014-12-10 11:45:26:977 6520 14cd4 COMAPI >>-- RESUMED -- COMAPI: Search [ClientId = <NULL>]
    2014-12-10 11:45:26:977 6520 14cd4 COMAPI - Updates found = 0
    2014-12-10 11:45:26:977 6520 14cd4 COMAPI ---------
    2014-12-10 11:45:26:977 6520 14cd4 COMAPI -- END -- COMAPI: Search [ClientId = <NULL>]
    2014-12-10 11:45:26:977 6520 14cd4 COMAPI -------------
    2014-12-10 11:45:32:031 788 3598 Report REPORT EVENT: {1741962D-41AC-4176-A531-B114876AB6FB} 2014-12-10 11:45:26:961-0800 1 147 [AGENT_DETECTION_FINISHED] 101 {00000000-0000-0000-0000-000000000000} 0 0 <<PROCESS>>: wsmprovhost.exe Success Software Synchronization Windows Update Client successfully detected 0 updates.
    2014-12-10 11:45:32:031 788 3598 Report REPORT EVENT: {58279745-23CB-42FD-ADD8-27221DBA991C} 2014-12-10 11:45:26:961-0800 1 156 [AGENT_STATUS_30] 101 {00000000-0000-0000-0000-000000000000} 0 0 <<PROCESS>>: wsmprovhost.exe Success Pre-Deployment Check Reporting client status.
    2014-12-10 11:45:32:156 788 3598 Report CWERReporter finished handling 2 events. (00000000)
    2014-12-10 11:52:53:642 788 7934 AU AU received policy change subscription event
    2014-12-10 11:53:19:846 788 ea40 IdleTmr Incremented idle timer priority operation counter to 1
    2014-12-10 11:53:30:289 788 ea40 AU Triggering AU detection through DetectNow API
    2014-12-10 11:53:30:289 788 ea40 AU Additional Service {855E8A7C-ECB4-4CA3-B045-1DFA50104289} with Approval type {Pre-download notify} added to AU services list
    2014-12-10 11:53:30:289 788 ea40 AU Triggering Online detection (interactive)
    2014-12-10 11:53:30:289 788 ea40 AU Adding timer:
    2014-12-10 11:53:30:289 788 ea40 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-12-10 19:53:30, not idle-only, not network-only
    2014-12-10 11:53:30:336 788 7934 AU #############
    2014-12-10 11:53:30:336 788 7934 AU ## START ## AU: Search for updates
    2014-12-10 11:53:30:336 788 7934 AU #########
    2014-12-10 11:53:30:336 788 7934 SLS Retrieving SLS response from server using ETAG "4V8nqvoeoxgpu+6kKNNNGpLr4BCvPTmaz82CIDm5o5g=_1440"...
    2014-12-10 11:53:30:336 788 7934 SLS Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=174&L=en-US&P=&PT=0x7&WUA=7.9.9600.17195
    2014-12-10 11:53:30:757 788 7934 EP Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL: "117cab2d-82b1-4b5a-a08c-4d62dbee7782"
    2014-12-10 11:53:30:757 788 7934 SLS FATAL: SLS:CSLSRequest::RetrieveAdditionalAttributesIfRequired: CoCreateInstance failed with 0x80040154.
    2014-12-10 11:53:30:757 788 7934 Agent WARNING: Failed to retrieve SLS response data for service 117cab2d-82b1-4b5a-a08c-4d62dbee7782, error = 0x80040154
    2014-12-10 11:53:30:757 788 7934 Agent FATAL: Caller Service Recovery failed to opt in to service 117cab2d-82b1-4b5a-a08c-4d62dbee7782, hr=0X80040154
    2014-12-10 11:53:30:757 788 7934 SLS Retrieving SLS response from server using ETAG "4V8nqvoeoxgpu+6kKNNNGpLr4BCvPTmaz82CIDm5o5g=_1440"...
    2014-12-10 11:53:30:757 788 7934 SLS Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=174&L=en-US&P=&PT=0x7&WUA=7.9.9600.17195
    2014-12-10 11:53:30:835 788 7934 EP FATAL: EP: Failed to obtain element node, error = 0x80245002
    2014-12-10 11:53:30:835 788 7934 EP FATAL: Failed to obtain 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL, error = 0x80245002
    2014-12-10 11:53:30:835 788 7934 Agent WARNING: Failed to obtain the authorization cab URL for service 855e8a7c-ecb4-4ca3-b045-1dfa50104289, hr=0
    2014-12-10 11:53:30:835 788 7934 AU Additional Service {855E8A7C-ECB4-4CA3-B045-1DFA50104289} with Approval type {Pre-download notify} added to AU services list
    2014-12-10 11:53:30:835 788 7934 IdleTmr WU operation (CSearchCall::Init ID 2) started; operation # 23; does use network; is not at background priority
    2014-12-10 11:53:30:835 788 7934 IdleTmr Incremented idle timer priority operation counter to 2
    2014-12-10 11:53:30:835 788 7934 Agent *** START *** Queueing Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
    2014-12-10 11:53:30:835 788 7934 AU <<## SUBMITTED ## AU: Search for updates [CallId = {1ABA4645-4EC6-4EE0-A65E-1B3EED401384} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-12-10 11:53:30:835 788 7c74 Agent *** END *** Queueing Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
    2014-12-10 11:53:30:835 788 7c74 Agent *************
    2014-12-10 11:53:30:835 788 7c74 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
    2014-12-10 11:53:30:835 788 7c74 Agent *********
    2014-12-10 11:53:30:835 788 7c74 Agent * Online = Yes; Ignore download priority = No
    2014-12-10 11:53:30:835 788 7c74 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-12-10 11:53:30:835 788 7c74 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-12-10 11:53:30:835 788 7c74 Agent * Search Scope = {Machine & All Users}
    2014-12-10 11:53:30:835 788 7c74 Agent * Caller SID for Applicability: S-1-5-21-806291793-1681129048-438139985-1157
    2014-12-10 11:53:30:835 788 7c74 Agent * RegisterService is set
    2014-12-10 11:53:30:835 788 7c74 EP Got WSUS Client/Server URL: "http://<wsus_server>:8530/ClientWebService/client.asmx"
    2014-12-10 11:53:30:835 788 7c74 Setup Checking for agent SelfUpdate
    2014-12-10 11:53:30:835 788 7c74 Setup Client version: Core: 7.9.9600.17195 Aux: 7.9.9600.17195
    2014-12-10 11:53:30:835 788 7c74 EP Got WSUS SelfUpdate URL: "http://<wsus_server>:8530/selfupdate"
    2014-12-10 11:53:30:867 788 7c74 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab with dwProvFlags 0x00000080:
    2014-12-10 11:53:30:867 788 7c74 Misc Microsoft signed: NA
    2014-12-10 11:53:30:867 788 7c74 Misc Infrastructure signed: Yes
    2014-12-10 11:53:30:882 788 7c74 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\TMP5B96.tmp with dwProvFlags 0x00000080:
    2014-12-10 11:53:30:882 788 7c74 Misc Microsoft signed: NA
    2014-12-10 11:53:30:882 788 7c74 Misc Infrastructure signed: Yes
    2014-12-10 11:53:30:898 788 7c74 Setup FATAL: GetClientUpdateUrl failed, err = 0x8024D009
    2014-12-10 11:53:30:898 788 7c74 Setup Skipping SelfUpdate check based on the /SKIP directive in wuident
    2014-12-10 11:53:30:898 788 7c74 Setup SelfUpdate check completed. SelfUpdate is NOT required.
    2014-12-10 11:53:31:304 788 7c74 PT +++++++++++ PT: Synchronizing server updates +++++++++++
    2014-12-10 11:53:31:304 788 7c74 PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://<wsus_server>:8530/ClientWebService/client.asmx
    2014-12-10 11:53:31:429 788 7c74 Agent Reading cached app categories using lifetime 604800 seconds
    2014-12-10 11:53:31:429 788 7c74 Agent Read 0 cached app categories
    2014-12-10 11:53:31:429 788 7c74 Agent SyncUpdates adding 0 visited app categories
    2014-12-10 11:53:32:632 788 7c74 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 24; does use network; is at background priority
    2014-12-10 11:53:32:647 788 7c74 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 24) stopped; does use network; is at background priority
    2014-12-10 11:53:32:647 788 7c74 Agent Reading cached app categories using lifetime 604800 seconds
    2014-12-10 11:53:32:647 788 7c74 Agent Read 0 cached app categories
    2014-12-10 11:53:32:647 788 7c74 Agent SyncUpdates adding 0 visited app categories
    2014-12-10 11:53:32:647 788 7c74 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 25; does use network; is at background priority
    2014-12-10 11:53:32:663 788 7c74 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 25) stopped; does use network; is at background priority
    2014-12-10 11:53:32:663 788 7c74 PT + SyncUpdates round trips: 2
    2014-12-10 11:53:32:694 788 7c74 Agent * Found 0 updates and 72 categories in search; evaluated appl. rules of 391 out of 549 deployed entities
    2014-12-10 11:53:32:694 788 7c74 Agent Reporting status event with 0 installable, 3 installed, 0 installed pending, 0 failed and 0 downloaded updates
    2014-12-10 11:53:32:694 788 7c74 Agent *********
    2014-12-10 11:53:32:694 788 7c74 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdatesWuApp Id = 2]
    2014-12-10 11:53:32:694 788 7c74 Agent *************
    2014-12-10 11:53:32:694 788 11930 AU >>## RESUMED ## AU: Search for updates [CallId = {1ABA4645-4EC6-4EE0-A65E-1B3EED401384} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-12-10 11:53:32:694 788 11930 AU # 0 updates detected
    2014-12-10 11:53:32:694 788 11930 AU #########
    2014-12-10 11:53:32:694 788 11930 AU ## END ## AU: Search for updates [CallId = {1ABA4645-4EC6-4EE0-A65E-1B3EED401384} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-12-10 11:53:32:694 788 11930 AU #############
    2014-12-10 11:53:32:694 788 11930 AU All AU searches complete.
    2014-12-10 11:53:32:694 788 11930 AU AU setting next detection timeout to 2014-12-10 21:34:53
    2014-12-10 11:53:32:694 788 11930 AU Adding timer:
    2014-12-10 11:53:32:694 788 11930 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-12-10 21:34:53, not idle-only, not network-only
    2014-12-10 11:53:32:694 788 7c74 IdleTmr WU operation (CSearchCall::Init ID 2, operation # 23) stopped; does use network; is not at background priority
    2014-12-10 11:53:32:694 788 7c74 IdleTmr Decremented idle timer priority operation counter to 1
    2014-12-10 11:53:32:694 788 11930 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2014-12-10 11:53:32:694 788 11930 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2014-12-10 11:53:37:708 788 3598 Report REPORT EVENT: {27AE31EB-B4E1-4EA9-BA55-6739DF89A1CE} 2014-12-10 11:53:32:694-0800 1 147 [AGENT_DETECTION_FINISHED] 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdatesWuApp Success Software Synchronization Windows Update Client successfully detected 0 updates.
    2014-12-10 11:53:37:708 788 3598 Report REPORT EVENT: {E758788F-E8AE-445C-9276-9FF71398DF7F} 2014-12-10 11:53:32:694-0800 1 156 [AGENT_STATUS_30] 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdatesWuApp Success Pre-Deployment Check Reporting client status.
    2014-12-10 11:53:37:708 788 3598 Report CWERReporter finished handling 2 events. (00000000)
    2014-12-10 11:53:46:222 788 ea40 AU Triggering AU detection through DetectNow API
    2014-12-10 11:53:46:222 788 ea40 AU Additional Service {855E8A7C-ECB4-4CA3-B045-1DFA50104289} with Approval type {Pre-download notify} added to AU services list
    2014-12-10 11:53:46:222 788 ea40 AU Triggering Online detection (interactive)
    2014-12-10 11:53:46:222 788 ea40 AU Adding timer:
    2014-12-10 11:53:46:222 788 ea40 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-12-10 19:53:46, not idle-only, not network-only
    2014-12-10 11:53:46:237 788 7934 AU #############
    2014-12-10 11:53:46:237 788 7934 AU ## START ## AU: Search for updates
    2014-12-10 11:53:46:237 788 7934 AU #########
    2014-12-10 11:53:46:237 788 7934 SLS Retrieving SLS response from server using ETAG "4V8nqvoeoxgpu+6kKNNNGpLr4BCvPTmaz82CIDm5o5g=_1440"...
    2014-12-10 11:53:46:237 788 7934 SLS Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=174&L=en-US&P=&PT=0x7&WUA=7.9.9600.17195
    2014-12-10 11:53:46:300 788 7934 EP Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL: "117cab2d-82b1-4b5a-a08c-4d62dbee7782"
    2014-12-10 11:53:46:300 788 7934 SLS FATAL: SLS:CSLSRequest::RetrieveAdditionalAttributesIfRequired: CoCreateInstance failed with 0x80040154.
    2014-12-10 11:53:46:300 788 7934 Agent WARNING: Failed to retrieve SLS response data for service 117cab2d-82b1-4b5a-a08c-4d62dbee7782, error = 0x80040154
    2014-12-10 11:53:46:300 788 7934 Agent FATAL: Caller Service Recovery failed to opt in to service 117cab2d-82b1-4b5a-a08c-4d62dbee7782, hr=0X80040154
    2014-12-10 11:53:46:300 788 7934 SLS Retrieving SLS response from server using ETAG "4V8nqvoeoxgpu+6kKNNNGpLr4BCvPTmaz82CIDm5o5g=_1440"...
    2014-12-10 11:53:46:300 788 7934 SLS Making request with URL HTTPS://sls.update.microsoft.com/SLS/{9482F4B4-E343-43B6-B170-9A65BC822C77}/x64/6.3.9600.0/0?CH=174&L=en-US&P=&PT=0x7&WUA=7.9.9600.17195
    2014-12-10 11:53:46:362 788 7934 EP FATAL: EP: Failed to obtain element node, error = 0x80245002
    2014-12-10 11:53:46:362 788 7934 EP FATAL: Failed to obtain 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL, error = 0x80245002
    2014-12-10 11:53:46:362 788 7934 Agent WARNING: Failed to obtain the authorization cab URL for service 855e8a7c-ecb4-4ca3-b045-1dfa50104289, hr=0
    2014-12-10 11:53:46:362 788 7934 AU Additional Service {855E8A7C-ECB4-4CA3-B045-1DFA50104289} with Approval type {Pre-download notify} added to AU services list
    2014-12-10 11:53:46:362 788 7934 IdleTmr WU operation (CSearchCall::Init ID 3) started; operation # 33; does use network; is not at background priority
    2014-12-10 11:53:46:362 788 7934 IdleTmr Incremented idle timer priority operation counter to 2
    2014-12-10 11:53:46:362 788 7934 Agent *** START *** Queueing Finding updates [CallerId = AutomaticUpdatesWuApp Id = 3]
    2014-12-10 11:53:46:362 788 7934 AU <<## SUBMITTED ## AU: Search for updates [CallId = {B2623DA3-6D66-4FDB-ADBD-1B1EB04C1926} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-12-10 11:53:46:378 788 130b8 Agent *** END *** Queueing Finding updates [CallerId = AutomaticUpdatesWuApp Id = 3]
    2014-12-10 11:53:46:378 788 130b8 Agent *************
    2014-12-10 11:53:46:378 788 130b8 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdatesWuApp Id = 3]
    2014-12-10 11:53:46:378 788 130b8 Agent *********
    2014-12-10 11:53:46:378 788 130b8 Agent * Online = Yes; Ignore download priority = No
    2014-12-10 11:53:46:378 788 130b8 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-12-10 11:53:46:378 788 130b8 Agent * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-12-10 11:53:46:378 788 130b8 Agent * Search Scope = {Machine & All Users}
    2014-12-10 11:53:46:378 788 130b8 Agent * Caller SID for Applicability: S-1-5-21-806291793-1681129048-438139985-1157
    2014-12-10 11:53:46:378 788 130b8 Agent * RegisterService is set
    2014-12-10 11:53:46:378 788 130b8 EP Got WSUS Client/Server URL: "http://<wsus_server>:8530/ClientWebService/client.asmx"
    2014-12-10 11:53:46:378 788 130b8 Setup Checking for agent SelfUpdate
    2014-12-10 11:53:46:378 788 130b8 Setup Client version: Core: 7.9.9600.17195 Aux: 7.9.9600.17195
    2014-12-10 11:53:46:378 788 130b8 EP Got WSUS SelfUpdate URL: "http://<wsus_server>:8530/selfupdate"
    2014-12-10 11:53:46:393 788 130b8 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\wuident.cab with dwProvFlags 0x00000080:
    2014-12-10 11:53:46:393 788 130b8 Misc Microsoft signed: NA
    2014-12-10 11:53:46:393 788 130b8 Misc Infrastructure signed: Yes
    2014-12-10 11:53:46:409 788 130b8 Misc Validating signature for C:\Windows\SoftwareDistribution\SelfUpdate\TMP9851.tmp with dwProvFlags 0x00000080:
    2014-12-10 11:53:46:409 788 130b8 Misc Microsoft signed: NA
    2014-12-10 11:53:46:409 788 130b8 Misc Infrastructure signed: Yes
    2014-12-10 11:53:46:425 788 130b8 Setup FATAL: GetClientUpdateUrl failed, err = 0x8024D009
    2014-12-10 11:53:46:425 788 130b8 Setup Skipping SelfUpdate check based on the /SKIP directive in wuident
    2014-12-10 11:53:46:425 788 130b8 Setup SelfUpdate check completed. SelfUpdate is NOT required.
    2014-12-10 11:53:46:675 788 130b8 PT +++++++++++ PT: Synchronizing server updates +++++++++++
    2014-12-10 11:53:46:675 788 130b8 PT + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://<wsus_server>:8530/ClientWebService/client.asmx
    2014-12-10 11:53:46:737 788 130b8 Agent Reading cached app categories using lifetime 604800 seconds
    2014-12-10 11:53:46:737 788 130b8 Agent Read 0 cached app categories
    2014-12-10 11:53:46:737 788 130b8 Agent SyncUpdates adding 0 visited app categories
    2014-12-10 11:53:47:940 788 130b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 34; does use network; is at background priority
    2014-12-10 11:53:47:956 788 130b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 34) stopped; does use network; is at background priority
    2014-12-10 11:53:47:956 788 130b8 Agent Reading cached app categories using lifetime 604800 seconds
    2014-12-10 11:53:47:956 788 130b8 Agent Read 0 cached app categories
    2014-12-10 11:53:47:956 788 130b8 Agent SyncUpdates adding 0 visited app categories
    2014-12-10 11:53:47:956 788 130b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 35; does use network; is at background priority
    2014-12-10 11:53:47:972 788 130b8 IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 35) stopped; does use network; is at background priority
    2014-12-10 11:53:47:972 788 130b8 PT + SyncUpdates round trips: 2
    2014-12-10 11:53:48:003 788 130b8 Agent * Found 0 updates and 72 categories in search; evaluated appl. rules of 391 out of 549 deployed entities
    2014-12-10 11:53:48:003 788 130b8 Agent Reporting status event with 0 installable, 3 installed, 0 installed pending, 0 failed and 0 downloaded updates
    2014-12-10 11:53:48:003 788 130b8 Agent *********
    2014-12-10 11:53:48:003 788 130b8 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdatesWuApp Id = 3]
    2014-12-10 11:53:48:003 788 130b8 Agent *************
    2014-12-10 11:53:48:003 788 11930 AU >>## RESUMED ## AU: Search for updates [CallId = {B2623DA3-6D66-4FDB-ADBD-1B1EB04C1926} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-12-10 11:53:48:003 788 11930 AU # 0 updates detected
    2014-12-10 11:53:48:003 788 11930 AU #########
    2014-12-10 11:53:48:003 788 11930 AU ## END ## AU: Search for updates [CallId = {B2623DA3-6D66-4FDB-ADBD-1B1EB04C1926} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-12-10 11:53:48:003 788 11930 AU #############
    2014-12-10 11:53:48:003 788 11930 AU All AU searches complete.
    2014-12-10 11:53:48:003 788 11930 AU AU setting next detection timeout to 2014-12-10 21:51:55
    2014-12-10 11:53:48:003 788 11930 AU Adding timer:
    2014-12-10 11:53:48:003 788 11930 AU Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-12-10 21:51:55, not idle-only, not network-only
    2014-12-10 11:53:48:003 788 11930 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2014-12-10 11:53:48:003 788 11930 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2014-12-10 11:53:48:003 788 130b8 IdleTmr WU operation (CSearchCall::Init ID 3, operation # 33) stopped; does use network; is not at background priority
    2014-12-10 11:53:48:003 788 130b8 IdleTmr Decremented idle timer priority operation counter to 1
    2014-12-10 11:53:53:011 788 3598 Report REPORT EVENT: {1452444F-3163-41E2-B425-A03894C3C1DE} 2014-12-10 11:53:48:003-0800 1 147 [AGENT_DETECTION_FINISHED] 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdatesWuApp Success Software Synchronization Windows Update Client successfully detected 0 updates.
    2014-12-10 11:53:53:011 788 3598 Report REPORT EVENT: {DEDB86FA-5126-4D27-BEAA-D57A9375269E} 2014-12-10 11:53:48:003-0800 1 156 [AGENT_STATUS_30] 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdatesWuApp Success Pre-Deployment Check Reporting client status.
    2014-12-10 11:53:53:011 788 3598 Report CWERReporter finished handling 2 events. (00000000)
    2014-12-10 11:54:38:042 788 3598 EP Got WSUS Client/Server URL: "http://<wsus_server>:8530/ClientWebService/client.asmx"
    2014-12-10 11:54:38:074 788 3598 EP Got WSUS Reporting URL: "http://<wsus_server>:8530/ReportingWebService/ReportingWebService.asmx"
    2014-12-10 11:54:38:074 788 3598 Report OpenReportingWebServiceConnection, reporting URL = http://<wsus_server>:8530/ReportingWebService/ReportingWebService.asmx
    2014-12-10 11:54:38:074 788 3598 IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 41; does use network; is at background priority
    2014-12-10 11:54:38:074 788 3598 Report Uploading 6 events using cached cookie.
    2014-12-10 11:54:38:089 788 3598 Report Reporter successfully uploaded 6 events.
    2014-12-10 11:54:38:089 788 3598 IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 41) stopped; does use network; is at background priority

  • Make A Replication From My 9i Server , Plz Help

    Greetings For All,
    I'm Using Forms6i With Oracle9i Database .
    I Want To Distribute My 6i Application On A Domain . My Database Is Stored On A Win2000 Server Machine.
    I Want To :-
    1- Take An Image From My Database Server With All The Options, Settings And Objects ( Tables ) , To Be Able To Make Any Development And Maintenance On My Application After I Hand It To My Client .
    2- I Want To Replicate Any Changes Applied To The Database During The Day To Another Machine To Be Able To Replace Main database Server Whenever Its Failed .
    I'm Looking For Your Help, Plz .
    Respectfully,
    < The One >

    Any Help, Plz !!

  • Problem to create "New Database Diagram" in Microsoft SQL Server Management Studio for SQL Server 2012 SQL Express

    Hi,
    I have installed SQL Server 2012 Express edition (name of installation media: en_sql_server_2012_express_edition_with_advanced_services_x64.exe) from MSDN and I have installed the application on my pc with Windows 7 Exterprise.
    Everything is working fine except when I am trying to create "New Database Diagram", where I recieve following error message:
    TITLE: Microsoft SQL Server Management Studio
    Attempted to read or write protected memory. This is often an indication that other memory is corrupt. (Microsoft.VisualStudio.OLE.Interop)
    BUTTONS:
    OK
    I have tried two times to reinstall SQL Server 2012 Express and I have installed Cumulative Update #3 for SQL Server 2012 and restarted the machine, but I have still the same problem with the same error message.
    Installed the following fixes:
    1) 2012_RTM_DAC_CU3_2723749_11_0_2332_x64
    2) SQLServer2012_RTM_CU3_2723749_11_0_2332_x64
    These files was installed successful.
    How can I solve the problem?
    BR
    Jan Nilsson

    Hi Jan,
    Have you installed Visual Studio in your machine?
    The problem seems to be related to installing and uninstalling the VS 2011 RC0 program.
    The workaround involves copying the files from another PC with SQL 2008 or 2012 from one machine to another. Just replace this folder:
    C:\Program Files (x86)\Common Files\microsoft shared\MSDesigners8
    See also the following for further details:
    http://social.msdn.microsoft.com/Forums/en-GB/vstsdb/thread/d65c71f5-3887-4f2a-bbd3-e799a4ac6fdc
    Best Regards,
    Iric
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Hyper-v replication Error Hyper-V received a digital certificate that is not valid from the Replica server 'burstingreplica'. Error: A required certificate is not within its validity period when verifying against the current system clock or the timestamp"

    Hi,
    When trying to initiate hyper-v replication from the main server i'm getting this error in the event logs.
    Hyper-V failed to enable replication for virtual machine 'RECADemo': A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file. (0x800B0101). (Virtual Machine ID 561591B6-567C-...)--I'm using certificate based auth and cert is installed/recognized on both machines.Please help.Thanks,Jaffer
    Jaf

    Hi,
    This error occurs because the Microsoft Certificate Trust List Publisher certificate expired. A copy of the CTL with an expired signing certificate exists in the CryptnetUrlCache
    folder. Please try to renew the Trust List Publisher certificate.
    The related KB:
    Event ID 4107 or Event ID 11 is logged in the Application log in Windows and in Windows Server
    http://support.microsoft.com/kb/2328240
    How to Renew the Site Server Signing Certificate (Microsoft Certificate Services)
    http://blogs.technet.com/b/configmgrteam/archive/2009/02/11/how-to-renew-the-site-server-signing-certificate-microsoft-certificate-services.aspx
    Manage Trusted Publishers
    http://technet.microsoft.com/en-us/library/cc733026.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to drop the tables (articles) in subscription database MERGE replication.

    We have configured the merge replication from publication server to subscription server,
    Here I mistakenly selecting few tables (articles) in publication,
    Now I need to remove those mistakenly selected tables in subscription server database . 
    Note: I am trying to below way but unable to remove those tables in subscription server.
    1<sup>st</sup> I unselected those tables (articles) in publication, but not working.
    Could please tell me the how to remove those tables in subscription database.

    Ok that is normal, dont worry, if you mistakenly  chosen few tables, just add the new tables
    that you forgot it, just make click on the publication, you only have to Re-run the snapshot agent, i mean you must generate another snapshot and then synchronice with your suscriber, and then you will not need DROP the tables on the suscriber, if you have
    troubles yet, please post imagens to help you more !
    Thanks and regards.

  • Regarding Restrictions on calling functions from sql expressions

    Hi all,
    While going through the functions of oracle 9i plsql documentation i came across restrictions on calling a function, i that i did not understand the following statement. can anyone explain me with an example. Please.........
    Functions called from SQL statements cannot contain statements that end the transactions.
    Regards,
    Sri Ram.

    Some where from google
    http://www.ucertify.com/article/what-are-the-restrictions-on-a-user-defined-function-that-is-called-from-a-sql-expression.html
    >
    •The function cannot contain statements that end the transaction. For example, the function cannot contain transaction control statements (such as COMMIT), session control statements (such as SET ROLE), or system control statements (such as ALTER SYSTEM). Also, it cannot contain DDL statements (such as CREATE) because they are followed by an automatic COMMIT.

  • Using SQL view From SQL Express in Flex

    Hello All ,  i am new at Flex and yet searching for a basic answere to even more basic question...
    i am currently looking for a way o extract and import SQL views from my SQL Express database ( on my local host) and present it with RIA on desktop, grpahs Charts etc.
    my question is, which way is the best to do so ? 
    need i to use Coldfusion For the Data ?  and then Flex3 For the design ( i.e Graphs)?
    or maybe using another ODBC program for XML file and then Connect it as Data Resource into the flex3 project
    as you must see , i am a bit confused....
    thanks in advance

    Hi,
             If you go for AIR you can directly connect to Database and you can get the data and can be shown graphically ,
             But if you Go for Webapplication(Flex ) then definately u should use some backend like CFC,PHP,JAVA,.Net............ in order to connect to DB and use Remote Objects/HttpService and show the Result Graphically..............

Maybe you are looking for