Question on Quorum : Windows Server 2012 R2 + SQL 2014 AlwaysOn AG

OS on all nodes : Windows Server 2012 R2
SQL on all nodes : SQL Server 2014 CU2
2 cluster nodes in primary data center and AlwaysOn AG doing Sync Transfer between these nodes with auto failover.
2 cluster nodes in DR data center(Different subnet) and AlwaysON AG doing an Async Transfer between primary replica and these nodes with manual failover.
As this is a multi sub-net cluster we are giving DR nodes 0 vote. 2 nodes on primary DC has votes and a file share on the primary DC has a vote.
If the primary DC is gone,then should we re-assign node votes to the 2 nodes in DR site and again manually configure a file share witness and give it a vote?
Whats the best strategy here? Any recommendation is highly appreciated.
Thank you,

Anup,
Think if we have network issues between Primary DC and DR DC. DR node might think…Hey, I’m the only one running now. I can take all the resources. We do not want nodes in the secondary site to contribute to a decision to take the cluster offline
when there is nothing wrong with the primary site. Do you mean to say Dynamic Quorum is smart enough to handle this situation?
Is it smart enough on it's own? No. That's why someone has to determine which site they want to stay up.
If you're using dynamic quorum, a new property was introduced called "LowerQuorumPriorityNodeID" which is set at the cluster level. Give it the node of one and only one of the secondary site servers. Set a fileshare witness (if possible) as the
odd vote and make sure both sites can see it equally well. Set this property on the cluster for a node on the secondary site.
http://technet.microsoft.com/en-us/library/dn265972.aspx#BKMK_TieBreak
Assume that the fileshare goes down and you have 2 nodes at the local site and 2 nodes at the DR site. Suddenly, communicates between the two are severed. If you have dynamic quorum set and the property I mentioned above, the secondary site will shut down
and the local site will stay up as the secondary site is set for a lower precedence.
Please note, the only reason I brought this up was because you're on Windows Server 2012R2 as this is when it was first introduced.
-Sean
Sean Gallardy | Blog | Microsoft Certified Master

Similar Messages

  • Workflow Manager Configuration Issue Windows Server 2012 R2 / SQL 2014

    Hello All,
    Environment:  SharePoint 2013 Enterprise with SP1
    Farm consists of
     2 App Server, 2 Web Server and 2 SQL Servers all the server have Windows 2012 R2 
    OS .  The SQL backend is SQL Server 2014
    Installed Workflow manager on the Web server, the configuration ran fine without any errors. Trying to browse the workflow management site via IIS Manager encountered Certificate Error clicked Continue to this website which gives a HTTP 403 Forbidden and
    following detail message
    This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage.
    Checked the web site Workflow Management Site in the IIS manager which has only one folder bin . I was not able to submit the Screenshot
    I have installed the latest patch for the Workflow manager and the Service Bus
    Question I have
    Should there be more folder under the Workflow Management Site.
    Why is the Web site not showing the web page
    Is workflow manager supported for Windows Server 2012 R2 and SQL 2014
    Thanks
    Dhanraj

    Hi Dhanraj,
    I captured the screenshot from my IIS Manager on workflow server. There is only bin folder under Workflow Management site
    If I browser workflow host uri from IIS Manager
    https://localhost:12290, I received certification error, and I chose the continue to this website, it returned me as follow:
    From the link: http://support.microsoft.com/kb/2902007/en-us It is supported on Windows Server 2012 r2 if you have install latest update.
    Here is an article which talks about error:
    http://www.sp2013blog.com/Lists/Posts/Post.aspx?ID=36
    In addition, here is the reference for troubleshooting workflow manager 1.0 management:
    http://msdn.microsoft.com/en-us/library/jj193529(v=azure.10).aspx#AnalyzingWorkflowManagementLogs
    You could also open SharePoint Designer 2013 and see if you could create a workflow on platform 2013.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • It is compatible Obi 11g  with Windows Server  2012 and Sql Server 2012?

    Hi every
    Please help with two questions.
    1. - Obi 11g is supported on Windows Server 2012 and SQL Server 2012?
    There a compatibility matrix which mention compatibility with versions 2012?
    2. - is feasible to install Obi 11g in separate server and install weblogic on another server?
    I appreciate the prompt response
    Regards
    Pedro

    Hi Pedro,
    As of November 2012 Compatibility Matrix released by Oracle for OBI 11.1.1.x Windows 2012 and SQL Server 2012 were not supported. It was supported on 2008 Windows and SQL Server.
    We can have weblogic and OBI server's on 2 different machines. The approach is to opt software only install. the link below will give more details:
    http://obieeelegant.blogspot.com/2012/07/obiee111160-software-only-installation.html
    Let me know if this helped.
    Regards,
    Jay

  • MSXML6.dll method"SEND" don't work in Windows Server 2012 and SQL 2008R2

    Hi all,
    I have a SP to send a WebService data
    It works fine on Windows 2008R2 server and also on Windows Server 2003.
    moving it on Windows Server 2012 with SQL 2008R2 express (32bit) or SQL 2012 express (32bit), it doesn't work anymore.
    Below the SP.
    -- =============================================
    -- Author: Giancarlo MADA Service 2008
    -- Create date: 09/09/2008
    -- Description: Web Service Interface
    -- =============================================
    CREATE PROCEDURE [dbo].[spmd_HTTPRequest]
    @URI varchar(2000) = '',
    @methodName varchar(50) = '', -- POST, GET
    @requestBody varchar(8000) = '', -- XML Document envelope
    @SoapAction varchar(255),
    @UserName nvarchar(100), -- Domain\UserName or UserName
    @Password nvarchar(100),
    @responseText varchar(8000) output
    as
    SET NOCOUNT ON
    IF @methodName = ''
    BEGIN
    select FailPoint = 'Method Name must be set'
    return
    END
    set @responseText = 'FAILED'
    DECLARE @objectID int
    DECLARE @hResult int
    DECLARE @source varchar(255), @desc varchar(255)
    EXEC @hResult = sp_OACreate 'MSXML2.ServerXMLHTTP.6.0', @objectID OUT
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Create failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- open the destination URI with Specified method
    EXEC @hResult = sp_OAMethod @objectID, 'open', null, @methodName, @URI, 'false', @UserName, @Password
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Open failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- set request headers
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'Content-Type', 'text/xml;charset=UTF-8'
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- set soap action
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'SOAPAction', @SoapAction
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    declare @len int
    set @len = len(@requestBody)
    EXEC @hResult = sp_OAMethod @objectID, 'setRequestHeader', null, 'Content-Length', @len
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'SetRequestHeader failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    -- send the request
    EXEC @hresult = sp_OAMethod @objectID, 'send', NULL, @requestBody
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'Send failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    declare @statusText varchar(1000), @status varchar(1000)
    -- Get status text
    exec sp_OAGetProperty @objectID, 'StatusText', @statusText out
    exec sp_OAGetProperty @objectID, 'Status', @status out
    select @status, @statusText, @methodName
    -- Get response text
    exec sp_OAGetProperty @objectID, 'responseText', @responseText out
    IF @hResult <> 0
    BEGIN
    EXEC sp_OAGetErrorInfo @objectID, @source OUT, @desc OUT
    SELECT hResult = convert(varbinary(4), @hResult),
    source = @source,
    description = @desc,
    FailPoint = 'ResponseText failed',
    MedthodName = @methodName
    goto destroy
    return
    END
    destroy:
    exec sp_OADestroy @objectID
    SET NOCOUNT OFF
    The underlined portion is the one that gives error, reported below.
    "Msxml6.dll 0x80070057 The parameter is incorrect. Send failed POST"
    Previously the SP used MSXML3.dll and also with that it gives the same problem.
    I can't understand what the wrong parameter is.
    Even because, as mentioned at the beginning, everything works fine on windows server 2008R2 and Windows Server 2003
    Some ideas?

    Hello, 
    We have built a dll via CLR on the database. 
    Below is the code.
    If you want to send the file SOAP.dll. Give me an e-mail ..
    USE MydatabaseGO
    /****** Object: SqlAssembly [SOAP] Script Date: 03/05/2014 12:59:14 ******/
    CREATE ASSEMBLY [SOAP]
    AUTHORIZATION [dbo]
    FROM MyPath\SOAP.dll
    WITH PERMISSION_SET = EXTERNAL_ACCESS
    GO
    USE Mydatabase
    GO
    /****** Object: StoredProcedure [dbo].[spmd_HTTPRequest3] Script Date: 03/05/2014 12:53:32 ******/
    CREATE PROCEDURE [dbo].[spmd_HTTPRequest3]
    @URI [nvarchar](4000),
    @methodName [nvarchar](4000),
    @requestBody [nvarchar](4000),
    @SoapAction [nvarchar](4000),
    @UserName [nvarchar](4000),
    @Password [nvarchar](4000),
    @responseText [nvarchar](4000) OUTPUT
    WITH EXECUTE AS CALLER
    AS
    EXTERNAL NAME [SOAP].[StoredProcedures].[spmd_HTTPRequest3]
    GO
    Now call the new SP called spmd_HTTPRequest3
    By..

  • CRM 2015 installation hangs without errors on Windows Server 2012 installed in a VM

    I have installed a Windows Server 2012 and SQL Server 2012 on a VM using VMware Player and then installed Dynamics CRM 2013, working out all the configuration problems.
    The installation hanged once without errors and when I tried it again it was installed, no problems. Dynamics CRM 2013 works without issue.
    Then I copied the machine, uninstalled the Dynamics CRM 2013 and started installing CRM 2015. However this time without errors the installation hangs even though I tried more than 5 times.
    There are no errors, installation program is not unresponsive and task manager shows nothing out of the ordinary.
    I have also tried this on multiple physical and virtual PCs to no avail.

    Try to Delete the registry files of CRM before you start the installation : HKEY_LOCAL_MACHINESOFTWAREMicrosoftMSCRM

  • Not able to inistall Sharepoint 2013 on windows server 2012 r2

    Hi ,
    I am trying to install Sharepoint enterprise 2013 on windows 2012 r2. In very early stage i got issue when i ran prerequisite installer. 
    As we all know in this case we need to install prerequisite manually. I downloaded all the prerequisite and installed them manually. I have enabled all web and application role. then followed below link and installed all the prerequisite 
    http://iouchkov.wordpress.com/2013/10/19/how-to-install-sharepoint-2013-on-windows-server-2012-r2/
    SQL Server 2008 R2 SP1 Native
    Client 
    Microsoft
    WCF Data Services 5.0 
    Microsoft Information Protection
    and Control Client (MSIPC)
    Microsoft Sync Framework Runtime
    v1.0 SP1 (x64) 
    Windows
    Identity Extensions 
    Windows
    Identity Foundation (KB974405) 
    Windows
    Server AppFabric
    CU
    1 for AppFabric 1.1 (KB2671763)
    All got installed correctly on server validated from control panel then i restarted the server and Ran  SharePoint Set up
    But still facing issue attached in form of image
    Please help me on this.
    kirtesh

    Hi kirtesh,
    According to your description, my understanding is that you got an error when you ran prerequisite installer.
    Please make sure the Windows Server Features and Role services are enabled in your SharePoint server.
    Start > All Programs > Administrative Tools > Server Manager->Add Roles and Features:
    i. Application Server
    ii. File Services
    iii. Web Server (IIS)
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Report Viewer control issue in Windows Server 2012 R2

    Hi,
    I have a reporting application (web) and it is using the Microsoft.ReportViewer.WebForms.dll (version 11.0.3366). While deploying I have kept all the Reporting Viewer related dll's into the bin directory and things are working fine in the below combinations.
    1) Windows Server 2008 R2 , SQL Server 2008 R2 SP2
    2) Windows Server 2012 and SQL Server 2012
    Today I have installed the same setup into the Windows Server 2012 R2 (with SqlServer 2012) machine and I am facing the some issue. The Print icon and find/next options are not visible in the Report Viewer . I am not sure what was the cause for this.
    Then  I have installed the Report Viewer 2012 runtime on the Windows Server 2012 R2 machine and things are working fine. So , I am wondering how the same setup worked fine in other two combinations with out installing Report Viewer 2012 runtime.
    Did any one have idea/suggestion on this.
    Thanks in advance!
    Best Regards
    Muthuraja

    Have you verified that the runtime assemblies are not on those servers? Maybe someone else added them. There are numerous other possibilities such as code refactoring that moved these elements from to other assemblies (unlikely) or that there was some other
    difference in your installation that you overlooked. I am glad that you were quickly able to resolve your issue however and may help others if they experience the same problem.
    "You will find a fortune, though it will not be the one you seek." -
    Blind Seer, O Brother Where Art Thou
    Please Mark posts as answers or helpful so that others may find the fortune they seek.

  • Windows Server 2012/2012R2 NIC Teaming Mode

    Hi,
    Question 1:
    In Windows Server 2012 the following teaming mode was recommended for Hyper-V NIC teams:
    Teaming mode: Switch Independent
    Load balancing mode: Hyper-V Port
    All Adapers Active
    In a session at TechEd 2014 it was stated that Dynamic is the new recommendation for Windows Server 2012 R2. However, a Microsoft PFE stated a few weeks ago that he would still recommend Hyper-V Port for Windows Server 2012 R2. What is your opinions around
    this?
    Question 2:
    We have a Hyper-V Failover Cluster which isn`t migrated to 2012 R2 yet, it`s running 2012. In this cluster we use Switch Independent/Hyper-V Port for the team. We also use converged networking, having 2 physical adapters bound to the NIC team, as well as
    3 virtual adapters in the management OS for management, CSV and Live Migration. Recently one of the team NICs failed, and this incident also caused the cluster membership on the affected node to go offline even though the other team NIC was
    connected. Is this expected behaviour? Would the behaviour be different if 2012 R2 with Dynamic mode was being used?

    Hello,
    As for question number 1:
    For Hyper-V workload it's recommended to use Dynamic with
    Switch Independent mode. Why?
    This configuration will distribute the load based on the TCP Ports address hash as modified by the Dynamic load balancing algorithm. The Dynamic load balancing algorithm will redistribute flows to optimize team member bandwidth utilization so individual
    flow transmissions may move from one active team member to another.  The algorithm takes into account the small possibility that redistributing traffic could cause out-of-order delivery of packets so it takes steps to minimize that possibility.
    The receive side, however, will look identical to Hyper-V Port distribution.  Each Hyper-V switch port’s traffic, whether bound for a virtual NIC in a VM (vmNIC) or a virtual NIC in the host (vNIC), will see all its inbound traffic arriving on a single
    NIC.
    This mode is best used for teaming in both native and Hyper-V environments except when:
    1) Teaming is being performed in a VM,
    2) Switch dependent teaming (e.g., LACP) is required by policy, or
    3) Operation of a two-member Active/Standby team is required by policy. 
    As for question number 2:
    The Switch Independent/Hyper-V Port will send packets using all active team members distributing the load based on the Hyper-V switch port number.  Each Hyper-V port will be bandwidth limited to not more than one team member’s bandwidth because the port
    is affinitized to exactly one team member at any point in time. 
    In all cases where this configuration was recommended back in Windows Server 2012 the new configuration in 2012 R2, Switch Independent/Dynamic, will provide better performance.
    Microsoft recommend for a clustered Hyper-V deployment
    in Windows server 2012 to use Switch Independent/Hyper-V Port as you mentioned and to configure
    Hyper-V QoS that applies to the virtual switch. (Configure minimum bandwidth in
    weight mode instead of in bits per second and Enable and configure QoS
    for all virtual network adapters 
    Did you apply QoS on the Converged vSwitch after you
    created the team?? However Nodes are considered down if they do not respond to 5 heartbeats. The Switch Independent/Hyper-V Port does not cause the cluster to goes down if one NIC failed. The issue is somewhere else and not in the teaming mode
    that you choose.
    Hope this help.
    Regards,
    Charbel Nemnom
    MCSA, MCSE, MCS, MCITP
    Blog: www.charbelnemnom.com
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if
    a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Cluster Quorum Disk failing inside Guest cluster VMs in Hyper-V Cluster using Virtual Disk Sharing Windows Server 2012 R2

    Hi, I'm having a problem in a VM Guest cluster using Windows Server 2012 R2 and virtual disk sharing enabled. 
    It's a SQL 2012 cluster, which has around 10 vhdx disks shared this way. all the VHDX files are inside LUNs on a SAN. These LUNs are presented to all clustered members of the Windows Server 2012 R2 Hyper-V cluster, via Cluster Shared Volumes.
    Yesterday happened a very strange problem, both the Quorum Disk and the DTC disks got the information completetly erased. The vhdx disks themselves where there, but the info inside was gone.
    The SQL admin had to recreated both disks, but now we don't know if this issue was related to the virtualization platform or another event inside the cluster itself.
    Right now I'm seen this errors on one of the VM Guest:
     Log Name:      System
    Source:        Microsoft-Windows-FailoverClustering
    Date:          3/4/2014 11:54:55 AM
    Event ID:      1069
    Task Category: Resource Control Manager
    Level:         Error
    Keywords:      
    User:          SYSTEM
    Computer:      ServerDB02.domain.com
    Description:
    Cluster resource 'Quorum-HDD' of type 'Physical Disk' in clustered role 'Cluster Group' failed.
    Based on the failure policies for the resource and role, the cluster service may try to bring the resource online on this node or move the group to another node of the cluster and then restart it.  Check the resource and group state using Failover Cluster
    Manager or the Get-ClusterResource Windows PowerShell cmdlet.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-FailoverClustering" Guid="{BAF908EA-3421-4CA9-9B84-6689B8C6F85F}" />
        <EventID>1069</EventID>
        <Version>1</Version>
        <Level>2</Level>
        <Task>3</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T17:54:55.498842300Z" />
        <EventRecordID>14140</EventRecordID>
        <Correlation />
        <Execution ProcessID="1684" ThreadID="2180" />
        <Channel>System</Channel>
        <Computer>ServerDB02.domain.com</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="ResourceName">Quorum-HDD</Data>
        <Data Name="ResourceGroup">Cluster Group</Data>
        <Data Name="ResTypeDll">Physical Disk</Data>
      </EventData>
    </Event>
    Log Name:      System
    Source:        Microsoft-Windows-FailoverClustering
    Date:          3/4/2014 11:54:55 AM
    Event ID:      1558
    Task Category: Quorum Manager
    Level:         Warning
    Keywords:      
    User:          SYSTEM
    Computer:      ServerDB02.domain.com
    Description:
    The cluster service detected a problem with the witness resource. The witness resource will be failed over to another node within the cluster in an attempt to reestablish access to cluster configuration data.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-FailoverClustering" Guid="{BAF908EA-3421-4CA9-9B84-6689B8C6F85F}" />
        <EventID>1558</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>42</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-03-04T17:54:55.498842300Z" />
        <EventRecordID>14139</EventRecordID>
        <Correlation />
        <Execution ProcessID="1684" ThreadID="2180" />
        <Channel>System</Channel>
        <Computer>ServerDB02.domain.com</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="NodeName">ServerDB02</Data>
      </EventData>
    </Event>
    We don't know if this can happen again, what if this happens on disk with data?! We don't know if this is related to the virtual disk sharing technology or anything related to virtualization, but I'm asking here to find out if it is a possibility.
    Any ideas are appreciated.
    Thanks.
    Eduardo Rojas

    Hi,
    Please refer to the following link:
    http://blogs.technet.com/b/keithmayer/archive/2013/03/21/virtual-machine-guest-clustering-with-windows-server-2012-become-a-virtualization-expert-in-20-days-part-14-of-20.aspx#.Ux172HnxtNA
    Best Regards,
    Vincent Wu
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • High availability SQL Server requirements for Remote Desktop Services in Windows Server 2012

    Good night,
    Thanks for reading this question, I do not write much English.
    I am implementing Remote Desktop Services in Windows Server 2012, I need to know the size of the database to create and feature on the .mdf and .ldf, I searched in different microsoft link but I have not received a response.
    Kindly appreciate your cooperation and attention.

    Hi Alejandro,
    I am implementing Remote Desktop Services in Windows Server 2012, I need to know the size of the database to create and feature on the .mdf and .ldf
    If you want to know the size requirements of .mdf abd .ldf files, since they are parts of SQL database, I suggest you refer to SQL forums below to get more professional support:
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlgetstarted
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/home
    In addition, here are some articles regarding RDS deployment for you:
    Remote Desktop Services Deployment Guide
    https://technet.microsoft.com/en-us/library/ff710446(v=ws.10).aspx
    Remote Desktop Services (RDS) Quick Start Deployment for RemoteApp, Windows Server 2012 Style
    http://blogs.technet.com/b/yungchou/archive/2013/02/07/remote-desktop-services-rds-quick-start-deployment-for-remoteapp-windows-server-2012-style.aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Is it possible to create a two node cluster with SQL server 2012 STD on node1 and SQL Server 2008 ENT on node2 on a Windows server 2012?

    Hi All,
    Is it possible to create a two node cluster with SQL server 2012 STD on node1 and SQL Server 2008 ENT on node2 on a Windows server 2012?
    aa

    I think you are confused with the way cluster is installed. Installing SQL on cluster is a two step process. On first node you create a new SQL cluster and on second node you need "AddNode" action.
    Same edition media has to be used in above two operation.
    you can install two separate instances with one enterprise and one standard.
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Need help installing sql server 2012 on windows server 2012 core

    Hi Guys 
    I am having trouble installing sql server 2012 on windows server 2012 core. I am doing this on VM and my VM is not connected to internet. 
    This setup is part of preparing lab for sql serve exam 70-462. I would really appreciate your help.
    I am including the links to the log files that were generated after installation. There are following 2 files
    Component Update and
    Detail_Global_Rules
    Thanks

    Hi
    iworkonline,
    Regarding to your original question, you can work around it according to Prashanth’s post or unclick the “Include SQL Server Product Updates" checkbox when installing SQL Server on your VM.
    Regarding to your second question, I make a test using TechNet Virtual Lab and everything works as expected . Below are my steps.
    1. Choose Web client after laughing the Lab.
    2. Choose SQLONE machine and “OPEN CHARMS” as follows, then search SQL Server Management Studio, use it to connect to the default instance (which has been installed in the lab).
    From your description, you get error message “Device not ready”. Could you please post more details? Are you installing SQL Server 2012 on the TechNet Virtual Lab?
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • Cannot get db mail to work via SMTP Relay for Office 365 in SQL Server 2014 on Windows Server 2012 R2

    Our company recently moved to Office 365 which mean our on premise exchange server went away as well with the move.  I am trying to configure my new sql server (OS-Windows Server 2012 R2, DBMS- SQL 2014 Std Edtion).  After some searching I found
    this article (http://blogs.technet.com/b/meamcs/archive/2013/02/25/how-to-configure-sql-database-mail-so-send-emails-using-office-365-exchange-online-a-walkthrough.aspx) and have followed these steps exactly, but to no avail.  I did some further research
    on the SMTP relay I setup and found a way to test it (listed here http://technet.microsoft.com/en-us/library/dn592151(v=exchg.150).aspx at the bottom of the article).  If I drop the email.txt file in the pickup folder, it gets sent out no problem.
     I have configured my db email exactly as describe here(http://blogs.technet.com/b/meamcs/archive/2013/02/25/how-to-configure-sql-database-mail-so-send-emails-using-office-365-exchange-online-a-walkthrough.aspx).  But keep getting an unable to connect
    to SMTP server error.  I have even tried completely shutting down firewall to see if that is the issue and multiple restarts.  Any ideas how to get this to work on Office 365?
    DB Mail error log:
    Date 6/10/2014 10:28:41 PM
    Log Database Mail (Database Mail Log)
    Log ID 46
    Process ID 2196
    Mail Item ID 19
    Last Modified 6/10/2014 10:28:41 PM
    Last Modified By xx
    Message
    The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 2 (2014-06-10T22:28:41). Exception Message: Cannot send mails to mail server. (Failure sending mail.).

    Hi,
    I followed this blog and got the below error message in the Database Mail Log.
    “The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 2 (2014-06-11T19:34:00). Exception Message: Cannot send mails to mail server. (Mailbox unavailable. The server response was: 5.7.1 Unable to relay
    for [email protected]).”
    If you are getting the same error message, you can try the below steps to resolve the issue.
    1. Open the IIS 6.0 management console. Right click on the SMTP server and open the properties window.
    2. Click on the Access tab, click Relay button under Relay restrictions. loopback IP address (i.e 127.0.0.1).
    Then the email should be sent out from Database Mail without problem.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Attempted to perform an unauthorized operation error while installing SQL Server 2008 R2 Enterprise edition on Windows Server 2012 R2 standard VM server

    I've been trying fresh installation of SQL Server 2008 R2 enterprise on Windows Server 2012 R2 standard VM server several times for two weeks, but always get the error "Attempted to perform an unauthorized operation". At first, I attempted
    to install all features, but failed several times. So I decided to try install just Database Engine service, and still fail at the SqlBrowserConfigAction_Install_ConfigNonRC_Cpu32, with the error "Attempted to perform an unauthorized operation".
    I remote login to server with my admin domain account. This account is in server local Administrators group. I
    1. Right-click on setup.exe file | properties | Compatibility tab | select compatibility to Windows 8.Then click OK.
    2. Right-click on setup.exe file | Run as Administrator, to start the Installation Center.
    I have the document of my installation steps and zip file of the installation logs, if you need to take a look.
    Appreciate for any help!
    ntth

    Hi ntth,
    "Attempted to perform an unauthorized operation"
    The above error is always related to the Windows account SID mapping. I recommend you login into Windows using another Windows account which has administrative privileges and run SQL Server setup using that Windows account.
    Besides, please note that we need to apply SQL Server 2008 R2 Service Pack 2 or a later update when installing SQL Server Windows Server 2012 R2. For more information, please review this
    KB article.
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.
    Lydia Zhang
    TechNet Community Support

  • Overlapped I/O error 997 installing SQL Server 2014 Express on Windows Server 2012 R2

    I'm attempting to install SQL Server 2014 Express on a Windows Server 2012 R2 system. When I do the install, it fails (several times) with an "Error: 997. Overlapped I/O operation is in progress.". From searching the web, I can see many people
    have had this problem with this installer and other non-SQL server installers.
    I've tried every solution I can find discussed, but none help with my problems The system is fully updated, with the exception of the KB2538243 (VC 2008 SP1 redist), which is probably failing for the same reason.
    I've tried removing several updates mentioned in other articles (KB2918614). I've confirmed that I'm not using a temporary profile.
    Does anyone have an idea of how I can solve this issue?
    Thanks,
    Zack
    Partial detail from install log file:
    Detailed results:
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                Microsoft Visual Studio 2010 Redistributables
      Component error code:          997
      Component log file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150205_151618\VC10Redist_Cpu64_1.log
      Error description:             Error 997.Overlapped I/O operation is in progress.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=vc_red.msi%40ProcessComponents%40997
      Feature:                       Client Tools Connectivity
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                Microsoft Visual Studio 2010 Redistributables
      Component error code:          997
      Component log file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20150205_151618\VC10Redist_Cpu64_1.log
      Error description:             Error 997.Overlapped I/O operation is in progress.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=12.0.2000.8&EvtType=vc_red.msi%40ProcessComponents%40997
    Partial detail from component log file:
    MSI (s) (D8:3C) [15:18:29:173]: Resolving source.
    MSI (s) (D8:3C) [15:18:29:173]: Resolving source to launched-from source.
    MSI (s) (D8:3C) [15:18:29:173]: Setting launched-from source as last-used.
    MSI (s) (D8:3C) [15:18:29:188]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\zerhart\Downloads\SQLEXPRWT_x64_ENU\redist\VisualStudioShell\VC10SP1\x64\'.
    MSI (s) (D8:3C) [15:18:29:188]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\zerhart\Downloads\SQLEXPRWT_x64_ENU\redist\VisualStudioShell\VC10SP1\x64\'.
    MSI (s) (D8:3C) [15:18:29:188]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{1D8E6291-B0D5-35EC-8441-6616F567A0F7}'.
    MSI (s) (D8:3C) [15:18:29:188]: SOURCEDIR ==> C:\Users\zerhart\Downloads\SQLEXPRWT_x64_ENU\redist\VisualStudioShell\VC10SP1\x64\
    MSI (s) (D8:3C) [15:18:29:188]: SOURCEDIR product ==> {1D8E6291-B0D5-35EC-8441-6616F567A0F7}
    MSI (s) (D8:3C) [15:18:29:188]: SECREPAIR: A general error running CryptAcquireContext
    MSI (s) (D8:3C) [15:18:29:188]: Determining source type
    MSI (s) (D8:3C) [15:18:29:188]: Source type from package 'VC_RED.MSI': 2
    MSI (s) (D8:3C) [15:18:29:188]: SECREPAIR: Hash Database: C:\Windows\Installer\SourceHash{1D8E6291-B0D5-35EC-8441-6616F567A0F7}
    MSI (s) (D8:3C) [15:18:29:188]: SECREPAIR: SourceHash database file already exists. Deleting it.
    MSI (s) (D8:3C) [15:18:29:204]: Note: 1: 2262 2: SourceHash 3: -2147287038 
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: New Hash Database creation complete.
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Crypt Provider not initialized. Error:0
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Crypt Provider not initialized. Error:0
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Crypt Provider not initialized. Error:0
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Crypt Provider not initialized. Error:0
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Crypt Provider not initialized. Error:0
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Crypt Provider not initialized. Error:0
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Crypt Provider not initialized. Error:997
    MSI (s) (D8:3C) [15:18:29:235]: SECUREREPAIR: Failed to CreateContentHash of the file: install.res.1040.dll: for computing its hash. Error: 997
    MSI (s) (D8:3C) [15:18:29:235]: SECREPAIR: Failed to create hash for the install source files
    MSI (s) (D8:3C) [15:18:29:235]: SECUREREPAIR: SecureRepair Failed. Error code: 3e561F257D8
    Action start 15:18:29: ProcessComponents.
    MSI (s) (D8:3C) [15:19:28:843]: 
    Error 997.Overlapped I/O operation is in progress.

    Alberto,
    Thanks for your help. Unfortunately, I've already tried that. I did try it again and I get an "This update is not applicable to your computer."
    I tried to post the Windows Update log, but it was too large. I've posted some of it below.
    Here is the WU log:
    2015-02-06 11:24:25:793
    5048 50
    Misc ===========  Logging initialized (build: 7.9.9600.17489, tz: -0500)  ===========
    2015-02-06 11:24:25:793
    5048 50
    Misc  = Process: C:\Windows\system32\wusa.exe
    2015-02-06 11:24:25:793
    5048 50
    Misc  = Module: C:\Windows\System32\wuapi.dll
    2015-02-06 11:24:25:793
    5048 50
    COMAPI -----------  COMAPI: IUpdateServiceManager::AddScanPackageService  -----------
    2015-02-06 11:24:25:793
    5048 50
    COMAPI  - ServiceName = Windows Update Standalone Installer
    2015-02-06 11:24:25:793
    5048 50
    COMAPI  - ScanFileLocation = C:\c5f288db3c43a7e4613232ca1a3c\wsusscan.cab
    2015-02-06 11:24:25:808
    920 111c
    Misc ===========  Logging initialized (build: 7.9.9600.17489, tz: -0500)  ===========
    2015-02-06 11:24:25:808
    920 111c
    Misc  = Process: C:\Windows\system32\svchost.exe
    2015-02-06 11:24:25:808
    920 111c
    Misc  = Module: c:\windows\system32\wuaueng.dll
    2015-02-06 11:24:25:808
    920 111c
    Service *************
    2015-02-06 11:24:25:808
    920 111c
    Service ** START **  Service: Service startup
    2015-02-06 11:24:25:808
    920 111c
    Service *********
    2015-02-06 11:24:25:824
    920 111c
    IdleTmr Non-AoAc machine.  Aoac operations will be ignored.
    2015-02-06 11:24:25:824
    920 111c
    Agent  * WU client version 7.9.9600.17489
    2015-02-06 11:24:25:824
    920 111c
    Agent WARNING: SleepStudyTracker: Machine is non-AOAC. Sleep study tracker disabled.
    2015-02-06 11:24:25:824
    920 111c
    Agent  * Base directory: C:\Windows\SoftwareDistribution
    2015-02-06 11:24:25:824
    920 111c
    Agent  * Access type: No proxy
    2015-02-06 11:24:25:824
    920 111c
    Service UpdateNetworkState Ipv6, cNetworkInterfaces = 12.
    2015-02-06 11:24:25:824
    920 111c
    Service UpdateNetworkState Ipv4, cNetworkInterfaces = 4.
    2015-02-06 11:24:25:824
    920 111c
    Agent  * Network state: Connected
    2015-02-06 11:24:25:824
    920 111c
    Service UpdateNetworkState Ipv6, cNetworkInterfaces = 12.
    2015-02-06 11:24:25:824
    920 111c
    Service UpdateNetworkState Ipv4, cNetworkInterfaces = 4.
    2015-02-06 11:24:25:855
    920 b64
    Misc WARNING: Network Cost is assumed to be not supported as something failed with trying to get handles to wcmapi.dll
    2015-02-06 11:24:25:855
    920 111c
    Agent ***********  Agent: Initializing global settings cache  ***********
    2015-02-06 11:24:25:887
    920 111c
    Agent  * Endpoint Provider: 00000000-0000-0000-0000-000000000000
    2015-02-06 11:24:25:887
    920 111c
    Agent  * WSUS server: <NULL>
    2015-02-06 11:24:25:887
    920 111c
    Agent  * WSUS status server: <NULL>
    2015-02-06 11:24:25:887
    920 111c
    Agent  * Target group: (Unassigned Computers)
    2015-02-06 11:24:25:887
    920 111c
    Agent  * Windows Update access disabled: No
    2015-02-06 11:24:25:902
    920 b64
    WuTask WuTaskManager delay initialize completed successfully..
    2015-02-06 11:24:25:902
    920 b64
    AU    Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2015-02-07 08:14:01, not idle-only, not network-only
    2015-02-06 11:24:25:902
    920 b64
    AU    Timer: CF1ABEC6-7887-4964-BB93-B2E21B31CEC1, Expires 2015-02-06 19:30:54, not idle-only, not network-only
    2015-02-06 11:24:25:902
    920 b64
    AU    Timer: 29A863E7-8609-4D1E-B7CD-5668F857F1DB, Expires 2015-02-06 19:30:54, not idle-only, not network-only
    2015-02-06 11:24:25:902
    920 b64
    Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2015-02-06 11:24:25:902
    920 b64
    Report CWERReporter::Init succeeded
    2015-02-06 11:24:25:902
    920 b64
    Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2015-02-06 11:24:25:902
    920 b64
    DnldMgr Download manager restoring 0 downloads
    2015-02-06 11:24:25:902
    920 111c
    AU ###########  AU: Initializing Automatic Updates  ###########
    2015-02-06 11:24:25:902
    920 111c
    AU AIR Mode is disabled
    2015-02-06 11:24:25:902
    920 111c
    AU  # Approval type: Scheduled (User preference)
    2015-02-06 11:24:25:902
    920 111c
    AU  # Auto-install minor updates: Yes (User preference)
    2015-02-06 11:24:25:902
    920 111c
    AU  # Will interact with non-admins (Non-admins are elevated (User preference))
    2015-02-06 11:24:25:902
    920 111c
    Misc WARNING:     IsSessionRemote: WinStationQueryInformationW(WTSIsRemoteSession) failed for session 2, GetLastError=2250
    2015-02-06 11:24:25:918
    920 111c
    AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
    2015-02-06 11:24:25:918
    920 111c
    AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2015-02-06 11:24:25:918
    920 111c
    AU AU finished delayed initialization
    2015-02-06 11:24:25:933
    920 111c
    AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2015-02-06 11:24:25:933
    920 111c
    AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2015-02-06 11:24:25:933
    920 b64
    Misc Validating signature for C:\Windows\SoftwareDistribution\ScanFile\a487aa0f-3e53-4fee-a784-6171b00254e4\Source.cab with dwProvFlags 0x00000080:
    2015-02-06 11:24:25:933
    920 111c
    AU Adding timer: 
    2015-02-06 11:24:25:933
    920 111c
    AU    Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2015-02-07 08:14:01, not idle-only, not network-only
    2015-02-06 11:24:25:949
    920 af0
    DnldMgr Asking handlers to reconcile their sandboxes
    2015-02-06 11:24:25:949
    920 b64
    Misc Microsoft signed: Yes
    2015-02-06 11:24:26:154
    920 b64
    DtaStor Default service for AU is {7971F918-A847-4430-9279-4A52D1EFE18D}
    2015-02-06 11:24:26:154
    920 b64
    IdleTmr Incremented idle timer priority operation counter to 1
    2015-02-06 11:24:26:154
    5048 50
    COMAPI  - Added scan package service, ServiceID = {A487AA0F-3E53-4FEE-A784-6171B00254E4} Third party service
    2015-02-06 11:24:26:154
    5048 50
    COMAPI -------------
    2015-02-06 11:24:26:154
    5048 50
    COMAPI -- START --  COMAPI: Init Search [ClientId = wusa]
    2015-02-06 11:24:26:154
    5048 50
    COMAPI ---------
    2015-02-06 11:24:26:154
    5048 50
    COMAPI -------------
    2015-02-06 11:24:26:154
    5048 50
    COMAPI -- START --  COMAPI: Search [ClientId = wusa]
    2015-02-06 11:24:26:154
    5048 50
    COMAPI ---------
    2015-02-06 11:24:26:169
    920 b64
    IdleTmr WU operation (CSearchCall::Init ID 1) started; operation # 17; does use network; is not at background priority
    2015-02-06 11:24:26:169
    920 b64
    IdleTmr Incremented idle timer priority operation counter to 2
    2015-02-06 11:24:26:341
    920 b64
    Report ***********  Report: Initializing static reporting data  ***********
    2015-02-06 11:24:26:341
    920 b64
    Report  * OS Version = 6.3.9600.0.0.131344
    2015-02-06 11:24:26:341
    920 b64
    Report  * OS Product Type = 0x00000021
    2015-02-06 11:24:26:357
    920 b64
    Report  * Computer Brand = PowerSpec
    2015-02-06 11:24:26:357
    920 b64
    Report  * Computer Model = S Series
    2015-02-06 11:24:26:357
    920 b64
    Report  * Platform Role = 1
    2015-02-06 11:24:26:357
    920 b64
    Report  * AlwaysOn/AlwaysConnected (AOAC) = 0
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Revision = 1.1a
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Name = 1.1a
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Release Date = 2013-08-20T00:00:00
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Sku Number = S Series
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Vendor = American Megatrends Inc.
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Family = Server
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Major Release = 4
    2015-02-06 11:24:26:357
    920 b64
    Report  * Bios Minor Release = 6
    2015-02-06 11:24:26:357
    920 b64
    Report  * Locale ID = 1033
    2015-02-06 11:24:26:357
    920 b64
    Handler Calculating current update level for this session
    [ Omitted data ]
    http://support.microsoft.com/?kbid=3000850, timestamp 01d039c57a22c0be
    2015-02-06 11:24:28:388
    920 b64
    Handler Done calculating current update level for this session
    2015-02-06 11:24:28:982
    920 b64
    Agent *** START ***  Queueing Finding updates [CallerId = wusa  Id = 1]
    2015-02-06 11:24:28:982
    5048 50
    COMAPI <<-- SUBMITTED -- COMAPI: Search [ClientId = wusa]
    2015-02-06 11:24:28:982
    920 11f4
    Agent ***  END  ***  Queueing Finding updates [CallerId = wusa  Id = 1]
    2015-02-06 11:24:28:982
    920 11f4
    Agent *************
    2015-02-06 11:24:28:982
    920 11f4
    Agent ** START **  Agent: Finding updates [CallerId = wusa  Id = 1]
    2015-02-06 11:24:28:982
    920 11f4
    Agent *********
    2015-02-06 11:24:28:982
    920 11f4
    Agent  * Online = Yes; Ignore download priority = No
    2015-02-06 11:24:28:982
    920 11f4
    Agent  * Criteria = "DeploymentAction='Installation'"
    2015-02-06 11:24:28:982
    920 11f4
    Agent  * ServiceID = {A487AA0F-3E53-4FEE-A784-6171B00254E4} Third party service
    2015-02-06 11:24:28:982
    920 11f4
    Agent  * Search Scope = {Machine}
    2015-02-06 11:24:28:982
    920 11f4
    Agent  * Caller SID for Applicability: S-1-5-21-3157695610-3447843402-2534478823-500
    2015-02-06 11:24:28:982
    920 11f4
    Agent  * RegisterService is set
    2015-02-06 11:24:29:185
    920 11f4
    PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2015-02-06 11:24:29:185
    920 11f4
    PT  + Offline serviceId = {A487AA0F-3E53-4FEE-A784-6171B00254E4}
    2015-02-06 11:24:29:185
    920 11f4
    PT WARNING: Cached cookie has expired or new PID is available
    2015-02-06 11:24:29:185
    920 11f4
    Agent Reading cached app categories using lifetime 604800 seconds
    2015-02-06 11:24:29:185
    920 11f4
    Agent Read 0 cached app categories
    2015-02-06 11:24:29:185
    920 11f4
    Agent SyncUpdates adding 0 visited app categories
    2015-02-06 11:24:29:294
    920 11f4
    Agent Reading cached app categories using lifetime 604800 seconds
    2015-02-06 11:24:29:294
    920 11f4
    Agent Read 0 cached app categories
    2015-02-06 11:24:29:294
    920 11f4
    Agent SyncUpdates adding 0 visited app categories
    2015-02-06 11:24:29:357
    920 11f4
    Agent Reading cached app categories using lifetime 604800 seconds
    2015-02-06 11:24:29:357
    920 11f4
    Agent Read 0 cached app categories
    2015-02-06 11:24:29:357
    920 11f4
    Agent SyncUpdates adding 0 visited app categories
    2015-02-06 11:24:29:638
    920 11f4
    Agent Reading cached app categories using lifetime 604800 seconds
    2015-02-06 11:24:29:638
    920 11f4
    Agent Read 0 cached app categories
    2015-02-06 11:24:29:638
    920 11f4
    Agent SyncUpdates adding 0 visited app categories
    2015-02-06 11:24:30:013
    920 11f4
    Agent Reading cached app categories using lifetime 604800 seconds
    2015-02-06 11:24:30:013
    920 11f4
    Agent Read 0 cached app categories
    2015-02-06 11:24:30:013
    920 11f4
    Agent SyncUpdates adding 0 visited app categories
    2015-02-06 11:24:30:044
    920 11f4
    Agent Reading cached app categories using lifetime 604800 seconds
    2015-02-06 11:24:30:044
    920 11f4
    Agent Read 0 cached app categories
    2015-02-06 11:24:30:044
    920 11f4
    Agent SyncUpdates adding 0 visited app categories
    2015-02-06 11:24:30:044
    920 11f4
    PT  + SyncUpdates round trips: 5
    2015-02-06 11:24:30:076
    920 11f4
    PT +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2015-02-06 11:24:30:076
    920 11f4
    PT  + Offline serviceId = {A487AA0F-3E53-4FEE-A784-6171B00254E4}
    2015-02-06 11:24:30:138
    920 11f4
    Agent  * Found 0 updates and 54 categories in search; evaluated appl. rules of 126 out of 284 deployed entities
    2015-02-06 11:24:30:138
    920 11f4
    Agent *********
    2015-02-06 11:24:30:138
    920 11f4
    Agent **  END  **  Agent: Finding updates [CallerId = wusa  Id = 1]
    2015-02-06 11:24:30:138
    920 11f4
    Agent *************
    2015-02-06 11:24:30:138
    920 11f4
    IdleTmr WU operation (CSearchCall::Init ID 1, operation # 17) stopped; does use network; is not at background priority
    2015-02-06 11:24:30:138
    920 11f4
    IdleTmr Decremented idle timer priority operation counter to 1
    2015-02-06 11:24:30:154
    5048 1428
    COMAPI >>--  RESUMED  -- COMAPI: Search [ClientId = wusa]
    2015-02-06 11:24:30:154
    5048 1428
    COMAPI  - Updates found = 0
    2015-02-06 11:24:30:154
    5048 1428
    COMAPI ---------
    2015-02-06 11:24:30:154
    5048 1428
    COMAPI --  END  --  COMAPI: Search [ClientId = wusa]
    2015-02-06 11:24:30:154
    5048 1428
    COMAPI -------------

Maybe you are looking for

  • Preview and Finder showing photos with the right rotation, once imported to iPhoto its lost

    Hi, I'm geting nuts with this issue. For my own camera all works fine. 90° rotated pics show up in Finder, Preview and iPhoto correctly. Landscape is landscape, portrait is portrait. Now I got photos shared (using Dropbox) from a friends camera. Find

  • Axis2 Cient works as standalone but not as part of webapp

    I have a client code generated using Axiscode generator in eclipse. If I make a call to the service when client is running as a standalone main method it works fine but when the same code is called while running in web app it gets fault Faultcode = {

  • Looking for a good graphics card for World of Warcraft

    I've been looking around these forums and it seems like the consensus is to go with the ATI HD 4870. I'm more a fan of NVidia, but if it works it works. I have a first gen mac pro and just want to confirm that the ATI card will work on my machine. Ri

  • Easy filesharing setup for local network

    Hi folks, I'm currently trying to enable easy filesharing for my local network. Yesterday I installed Ubuntu 9.10 on a Laptop and it just worked. But I can't get filesharing to work under Arch (Chakra 64bit Beta 4) witch kde4. Samba is installed, the

  • Problems with iOS5 update

    I have just updated my iPhone4 to the new iOS5 and am having major problems that I can't seem to find a way to fix. On my itunes it now shows my phone as being over capacity by 15.7gb, have tried a number of things and still not fixed. Also when the