What is causing this "The timeout period elapsed during the post-login phase."?

This is happening on a shared environment running DataCenter.  We are doing a bulk merge of about 100 plus records.  It is failing in different spots but always the same error.  Sql has no error logs, and we are not seeing locks. 
We need some hints as to what this error message really means.  
System.Data.SqlClient.SqlException: Connection Timeout Expired.  The timeout period elapsed during the post-login phase. 
The connection could have timed out while waiting for server to complete the login process and respond; Or it could have timed
out while attempting to create multiple active connections.  The duration spent while attempting to connect
to this server was - [Pre-Login] initialization=1; handshake=1; [Login] initialization=0; authentication=0;
[Post-Login] complete=14000;  ---> System.ComponentModel.Win32Exception: The wait operation timed out

Well, at first hand, it looks like a "time-out", obviously.
I would check the system's resources, if it's extremely busy at that time at first. Especially CPU.. and general Login statistics
Andreas Wolter | Microsoft Certified Master SQL Server
Blog: www.insidesql.org/blogs/andreaswolter
Web: www.andreas-wolter.com

Similar Messages

  • Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. This failure occured while attempting to connect to the Principle server.

    We are using SQL Server 2012.
    Every now and then, when we execute the below stored procedure INSERT_INTO_MYTBL, we got the below error, and it returned @ID = 0.
    "Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding. 
    This failure occured while attempting to connect to the Principle server."
    What causes this error, and how can we fix it ?
    Thank you.
    create procedure INSERT_INTO_MYTBL
    @ID int output,
    @Order varchar(50) = NULL,
    @ACCOUNT varchar(20) = NULL
    AS
    DECLARE @Success int, @TryNr int, @ErrMsg varchar(500), @ErrNumber int, @expected_id int;
    SET @Success = 0;
    SET @TryNr = 1;
    SET @ErrMsg = ''
    WHILE @Success = 0 AND @TryNr <= 3 and @ErrMsg = ''
    BEGIN;
    BEGIN TRY;
    BEGIN TRANSACTION;
    retry:
    BEGIN TRY;
    SELECT @expected_id = ident_current('myTbl') + 1
    SELECT @order = @account + '-' + CAST(@expected_id AS varchar(50))
    insert into myTbl
    ([Order],ACCOUNT)
    values
    (@Order,@ACCOUNT)
    END TRY
    BEGIN CATCH;
    SELECT @ErrNumber = ERROR_NUMBER()
    IF @ErrNumber = 2627
    BEGIN;
    GOTO retry
    END;
    ELSE
    BEGIN;
    SET @ErrMsg = '1.' + ERROR_MESSAGE() + ' ' + @order
    RAISERROR (@ErrMsg, 16, 1);
    END;
    END CATCH
    select @ID = SCOPE_IDENTITY()
    IF @id <> @expected_id
    BEGIN
    UPDATE myTbl
    SET [Order] = @ACCOUNT + '-' + CAST(@ID AS varchar(50))
    WHERE ID = @ID
    END
    SET @Success = 1
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH;
    ROLLBACK TRANSACTION;
    SELECT @ErrNumber = ERROR_NUMBER()
    IF @ErrNumber = 1205
    BEGIN;
    SET @TryNr = @TryNr + 1;
    IF @TryNr > 3
    RAISERROR ('Giving up after 3 consecutive deadlocks for %s', 16, 1,@ACCOUNT);
    END;
    ELSE
    BEGIN;
    SET @ErrMsg = '2.' + ERROR_MESSAGE() + ' ' + @order
    RAISERROR (@ErrMsg, 16, 1);
    END;
    END CATCH;
    END;

    When the problem occurs, the stored procedure returns @ID = 0, which I think means the query
    When the problem occurs, the procedure does not return anything. SQL Server was told to stop executing. Furthermore, unless you issue the command SET XACT_ABORT ON, SQL Server will not roll back any open transaction. Which is one more reason you should not
    permit command timeouts.
    As for why this procedure sometimes take a long time, I would primarily suspect locking. When this occurs (but before the timeout elapses!), you could use my beta_lockinfo to see if there is any blocking going on. You find it here:
    http://www.sommarskog.se/sqlutil/beta_lockinfo.html
    Erland Sommarskog, SQL Server MVP, [email protected]

  • SharePoint - Error_1_Error occurred in deployment step 'Add Solution': Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was rea

    Hi,
    I am Shanmugavel, SharePoint developer, 
    I am facing the below SharePoint 2013 deployment issue while deploying using VS2012.
    If i will deploy the same wsp or existing wsp
    (last build) using direct powershell deployment, the solution adding properly, but the same timeout exception coming while activation the features.  Please find the below error.
    I tried the below activists:
    1. Restarted my dev server, DB server. 
    2. tried the same solution id different server
    3. tried existing wsp file (last build version)
    4. Deactivated all the features, including project Active deployment configuration.... but still i am facing the same issue.
    I hope this is not coding level issue, because still my code is not start running, before that some problem coming.
    Please help me any one.....  Last two days i am struck because of this...

    What you need to understand is the installation of a WSP does not do much. It just makes sure that you relevant solution files are deployed to the SharePoint farm.
    Next comes the point when you activate the features. It is when the code which you have written to "Activate" certain features for your custom solution.
    Regarding the error you are getting, it typically means that you have more connections (default is I guess 100) open for a SQL database then you are allowed to.
    If you have a custom database and you are opening a connection, make sure you close it as well.
    Look at the similar discussion here:
    The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool
    size was reached[^]
    I would suggest further to look at the
    ULS logs[^] to get better insight.
    Manas Bhardwaj's Stream : www.manasbhardwaj.net

  • Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. (Microsoft SQL Server)

    I am getting the error message, "Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. (Microsoft SQL Server)". I am attaching the stored procedure. Can anyone see where the syntax may
    be causing this.
    USE [ReportData]
    GO
    /****** Object: StoredProcedure [PDI].[usp_MJTestTop10_Select] Script Date: 04/23/2015 10:35:43 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    --USE [ReportData]
    --GO
    --/****** Object: StoredProcedure [PDI].[usp_MJTestTop10_Select] Script Date: 04/23/2015 08:22:26 ******/
    --SET ANSI_NULLS ON
    --GO
    --SET QUOTED_IDENTIFIER ON
    --GO
    ALTER PROCEDURE [PDI].[usp_MJTestTop10_Select]
    @StartDate DATE,
    @EndDate DATE,
    @Location VARCHAR
    AS
    DECLARE @CalendarKey TABLE (
    Calendar_Key int,
    Organization_Key int,
    Day_Date DATETIME
    BEGIN
    INSERT INTO @CalendarKey
    SELECT C.calendar_key,
    O.Organization_Key,
    C.Day_Date AS DATETIME
    FROM pdi.PDI_Warehouse_952_01.dbo.calendar C,
    pdi.PDI_Warehouse_952_01.dbo.Organization O
    where @EndDate is not null
    and C.Day_Date BETWEEN @StartDate and @EndDate
    or @EndDate is null
    and C.Day_Date = @StartDate
    END
    SELECT CAST(C.Day_Date as DATE) as [Memo Date],
    --C.calendar_key,
    ISNULL(CAST(MBH.Transaction_Number as VARCHAR), 'Unknown') as [Memo Number],
    O.Site_id,
    O.Site_desc,
    --p.Product_Key,
    p.UPC as [UPC],
    (CAST(P.Department_ID as VARCHAR) + ' ' + CAST(P.Category_ID as VARCHAR) + ' ' + CAST(P.Sub_Category_Id as VARCHAR)) as [D C S],
    ISNULL(CAST(IPF.Vendor_Key as VARCHAR), 'Unknown') as [Vendor Code],
    --ISNULL(CAST(V.Vendor_Desc as VARCHAR), 'Unknown') as [Vendor Desc],
    ISNULL(P.Item_Desc, 'Unknown') as [Description],
    ISNULL(P.Size_Desc, 'Unknown') as [Size],
    ISNULL(RTrim(Cash.Cashier_Name), 'Unknown') as [Associate],
    ISNULL(CONVERT(INT, IIF.Beg_Inv_Qty, 0), '0') as [Old Qty],
    ISNULL(CONVERT(INT, IIF.End_Inv_Qty,0), '0') as [Adj Qty],
    ISNULL(CONVERT(INT, IIF.End_Inv_Qty - IIF.Beg_Inv_Qty, 0), '0') as [Dif Qty]
    FROM pdi.PDI_Warehouse_952_01.dbo.Item_Sales_Fact ISF
    INNER JOIN pdi.PDI_Warehouse_952_01.dbo.Product P ON ISF.Product_Key = P.Product_Key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.Organization O ON ISF.Organization_key = O.organization_key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.Item_Purchases_Fact IPF ON ISF.Product_key = IPF.Product_Key
    AND ISF.Organization_key = IPF.Organization_key
    AND ISF.Calendar_key = IPF.Calendar_key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.Item_Inventory_Fact IIF ON ISF.Product_Key = IIF.Product_Key
    AND IIF.Product_Key = P.Product_Key
    AND ISF.Organization_key = IIF.Organization_Key
    AND ISF.Calendar_key = IIF.Calendar_Key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.Calendar C ON ISF.calendar_key = C.calendar_key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.Cashier Cash ON ISF.Organization_Key = Cash.Organization_Key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.Cashier_Metric_Hourly_Dept_Snapshot CMH on Cash.Organization_Key = CMH.Organization_Key
    AND Cash.Cashier_Key = CMH.Cashier_Key
    AND ISF.Calendar_Key = CMH.Calendar_Key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.MarketBasket_Header MBH ON ISF.Calendar_Key = MBH.Calendar_Key
    AND ISF.Organization_Key = MBH.Organization_Key
    AND Cash.Cashier_Key = MBH.Cashier_Key
    LEFT JOIN pdi.PDI_Warehouse_952_01.dbo.Vendor V ON IPF.Vendor_Key = V.Vendor_key
    AND IPF.Calendar_Key = C.Calendar_Key
    LEFT JOIN @CalendarKey CK ON ISF.Calendar_Key = ck.Calendar_Key
    AND ISF.Organization_Key = CK.Organization_Key
    WHERE C.calendar_key = CK.Calendar_Key
    ORDER BY
    O.Location_ID,
    C.Day_Date,
    IPF.Vendor_Key,
    P.UPC,
    P.Size_Desc

    Some additional comments. 
    @Location VARCHAR
    Look closely at this.  How many characters can @Location contain?  You did not specify, so perhaps you think some appropriately large default value is used.  Guess again. You did a similar thing with cast (multiple times) - which is handled
    differently.  Don't be lazy.
    WHERE C.calendar_key = CK.Calendar_Key
    Go review the join to the CK table.  It is an outer join.  Yet you have included criteria in the where clause that requires a match in the unpreserved (@CalendarKey aka CK) table.  This effectively transforms that join from outer to inner.
    Was that intentional? Probably, but then you don't need to use an outer join
    FROM pdi.PDI_Warehouse_952_01.dbo.calendar C,
    pdi.PDI_Warehouse_952_01.dbo.Organization O
    Evolve.  We do not join in the where clause any longer.  You should be joining using join operators.  And perhaps more importantly, why do you need to dump a resultset into a table variable at all?  Note that your join is a cross join
    since there is no relationship between calendar and Organization - intentional? Given the rest of the logic, it seems that you don't really need to do this.
    ISNULL(CONVERT(INT, IIF.End_Inv_Qty,0), '0') as [Adj Qty],
    Go review the documentation for convert.  You supply a style, but does it do anything?  We don't know what datatype End_Inv_Qty is, but I assume it is numeric (and not float).  So what do you intend?  And you convert it to integer but
    use a character '0' in the isnull function.  Your lack of consistency can lead to issues that are difficult to find and resolve.
    CAST(C.Day_Date as DATE)
    Why are you doing this? You defined the column in your table variable as datetime.  You cast the value you use to populate this column to datetime.  I'm guessing that you only really care about the date portion.  The name you used for the
    column implies this.  So why bother with datetime in the first place?
    And one last suggestion. If you disallow the use of NULL for the @EndDate argument (simply supply the same value for both date arguments) you can simplify the logic that populates your table variable (or its replacement) and greatly eliminate the confusion
    and chance for errors that nullability requires.

  • SSRS Error: The timeout period elapsed prior to completion of the operation or the server is not responding

    Hi, I am using SQL Server 2008 R2 Stored Procedure as my dataset and running yearly sales report in SSRS 2008 R2. The weird thing is in SSMS the stored procedure does not take more than 10 seconds to retrieve data and the report also works
    fine in BIDS, but from ReportServer if I were to pick an year from 1990 - 2014 they all work fine anything prior to 1990 either shows up fine or throws the below error.
    SSRS Error:
    An error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'QueryDS'. (rsErrorExecutingCommand)
    Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated.
    I checked ReportServerTemDb tables and no table seems to be really large to cause a problem. This report "KeepTogether" property is TRUE.
    Thanks in advance.............
    Ione

    Was able to fix this with the help of
    msdn documentation. The query dataset was set to 5 and this was somebody else's report I was fixing and I usually have my report template set to 0 so it took me a while to get there.
    Ione

  • My Computer freezes and the screen turns white. What would cause this?

    My mac miniComputer freezes and the screen turns white. What would cause this?

    Here is what was in the utilities for my console.
    10/22/13 9:41:59.000 AM kernel[0]: CoreStorage: fsck_cs has finished for group "3FD474FF-B711-4557-9B01-67EB19C49BDA" with status 0x00
    10/22/13 9:41:59.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD HTS541010A9E662 Media/IOGUIDPartitionScheme/Macintosh HD@2/CoreStoragePhysical/CoreStorageGroup/Macintosh HD
    10/22/13 9:41:59.000 AM kernel[0]: BSD root: disk1, major 1, minor 4
    10/22/13 9:41:59.000 AM kernel[0]: jnl: unknown-dev: replay_journal: from: 65415680 to: 68414464 (joffset 0x13218000)
    10/22/13 9:41:59.000 AM kernel[0]: IOThunderboltSwitch<0xffffff80159d4a00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    10/22/13 9:41:59.000 AM kernel[0]: IOThunderboltSwitch<0xffffff80159d4a00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    10/22/13 9:41:59.000 AM kernel[0]: USBMSC Identifier (non-unique): 10000E000C7F9033 0x59f 0x621 0x0, 2
    10/22/13 9:41:59.000 AM kernel[0]: jnl: unknown-dev: journal replay done.
    10/22/13 9:41:59.000 AM kernel[0]: Kernel is LP64
    10/22/13 9:41:59.000 AM kernel[0]: hfs: Removed 6 orphaned / unlinked files and 475 directories
    10/22/13 9:41:59.000 AM kernel[0]: BCM5701Enet: Ethernet address a8:20:66:0d:fc:25
    10/22/13 9:41:59.000 AM kernel[0]: AirPort_Brcm4331: Ethernet address 20:c9:d0:97:55:7f
    10/22/13 9:41:59.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    10/22/13 9:41:59.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    10/22/13 9:42:06.456 AM com.apple.kextd[12]: not watching F3408C38-5457-3475-AD1D-D360F815C3AD -> no volume lock to grant
    10/22/13 9:42:06.547 AM fseventsd[59]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (86493 21 86554)
    10/22/13 9:42:06.584 AM hidd[58]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    10/22/13 9:42:06.586 AM hidd[58]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    10/22/13 9:42:06.590 AM kdc[56]: label: default
    10/22/13 9:42:06.590 AM kdc[56]:     dbname: od:/Local/Default
    10/22/13 9:42:06.590 AM kdc[56]:     mkey_file: /var/db/krb5kdc/m-key
    10/22/13 9:42:06.590 AM kdc[56]:     acl_file: /var/db/krb5kdc/kadmind.acl
    10/22/13 9:42:06.598 AM airportd[74]: _processDLILEvent: en1 attached (down)
    10/22/13 9:42:06.640 AM coreservicesd[76]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    10/22/13 9:42:06.682 AM mDNSResponder[50]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    10/22/13 9:42:06.000 AM kernel[0]: Previous Shutdown Cause: 3
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    10/22/13 9:42:06.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    10/22/13 9:42:06.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828A FirmwareVersion - 0x0066
    10/22/13 9:42:06.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff80168d6c00 ****
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff80168d6c00
    10/22/13 9:42:06.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    10/22/13 9:42:06.000 AM kernel[0]: DSMOS has arrived
    10/22/13 9:42:06.000 AM kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    10/22/13 9:42:06.000 AM kernel[0]: createVirtIf(): ifRole = 1
    10/22/13 9:42:06.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    10/22/13 9:42:06.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff801682f000
    10/22/13 9:42:06.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    10/22/13 9:42:06.000 AM kernel[0]: Created virtif 0xffffff801682f000 p2p0
    10/22/13 9:42:06.000 AM kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00001d08
    10/22/13 9:42:07.714 AM configd[18]: setting hostname to "kathy-winters-mac-mini-3.local"
    10/22/13 9:42:07.000 AM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    10/22/13 9:42:07.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    10/22/13 9:42:07.717 AM configd[18]: network changed.
    10/22/13 9:42:08.210 AM fseventsd[59]: log dir: /.fseventsd getting new uuid: 5C426A11-1379-4AD6-AFD9-DF4963B9C3CB
    10/22/13 9:42:08.000 AM kernel[0]: macx_swapon SUCCESS
    10/22/13 9:42:09.264 AM mds[49]: (Normal) FMW: FMW 0 0
    10/22/13 9:42:09.446 AM com.apple.SecurityServer[15]: Session 100000 created
    10/22/13 9:42:10.000 AM kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 10-Megabit, Half-duplex, No flow-control, Debug [796d,0101,0de1,0300,0021,0000]
    10/22/13 9:42:14.849 AM appleeventsd[64]: main: Starting up
    10/22/13 9:42:16.255 AM com.apple.usbmuxd[39]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit
    10/22/13 9:42:19.119 AM com.apple.SecurityServer[15]: Entering service
    10/22/13 9:42:19.177 AM systemkeychain[79]: done file: /var/run/systemkeychaincheck.done
    10/22/13 9:42:19.185 AM configd[18]: network changed: DNS*
    10/22/13 9:42:19.187 AM mDNSResponder[50]: D2D_IPC: Loaded
    10/22/13 9:42:19.187 AM mDNSResponder[50]: D2DInitialize succeeded
    10/22/13 9:42:19.223 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 5 seconds
    10/22/13 9:42:19.621 AM netbiosd[83]: Unable to start NetBIOS name service:
    10/22/13 9:42:20.363 AM kdc[56]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    10/22/13 9:42:20.629 AM apsd[70]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/22/13 9:42:20.629 AM apsd[70]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    10/22/13 9:42:20.993 AM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    10/22/13 9:42:21.081 AM digest-service[105]: label: default
    10/22/13 9:42:21.081 AM digest-service[105]:     dbname: od:/Local/Default
    10/22/13 9:42:21.081 AM digest-service[105]:     mkey_file: /var/db/krb5kdc/m-key
    10/22/13 9:42:21.081 AM digest-service[105]:     acl_file: /var/db/krb5kdc/kadmind.acl
    10/22/13 9:42:21.083 AM digest-service[105]: digest-request: uid=0
    10/22/13 9:42:21.104 AM corestoraged[99]: 0x7fff720a4180 unlockLVF: LVF=E089D621-8D4E-44B9-82E5-DBFC72F26660, "AES-XTS", status = "Unlocked"
    10/22/13 9:42:21.106 AM rpcsvchost[109]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    10/22/13 9:42:21.109 AM digest-service[105]: digest-request: init request
    10/22/13 9:42:21.113 AM digest-service[105]: digest-request: init return domain: BUILTIN server: KATHY-WINTERS-MAC-MINI-3
    10/22/13 9:42:21.301 AM coreservicesd[76]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    10/22/13 9:42:21.305 AM com.apple.kextcache[113]: /: helper partitions appear up to date.
    10/22/13 9:42:21.801 AM awacsd[68]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    10/22/13 9:42:21.804 AM awacsd[68]: InnerStore CopyAllZones: no info in Dynamic Store
    10/22/13 9:42:22.008 AM locationd[54]: NOTICE,Location icon should now be in state 0
    10/22/13 9:42:22.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    10/22/13 9:42:22.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    10/22/13 9:42:22.000 AM kernel[0]: MacAuthEvent en1   Auth result for: d8:c7:c8:5b:d5:d0  MAC AUTH succeeded
    10/22/13 9:42:22.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    10/22/13 9:42:22.000 AM kernel[0]: AirPort: Link Up on en1
    10/22/13 9:42:22.000 AM kernel[0]: en1: BSSID changed to d8:c7:c8:5b:d5:d0
    10/22/13 9:42:22.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    10/22/13 9:42:22.195 AM loginwindow[53]: Login Window Application Started
    10/22/13 9:42:22.244 AM WindowServer[114]: Server is starting up
    10/22/13 9:42:22.247 AM WindowServer[114]: Session 256 retained (2 references)
    10/22/13 9:42:22.247 AM WindowServer[114]: Session 256 released (1 references)
    10/22/13 9:42:22.254 AM WindowServer[114]: Session 256 retained (2 references)
    10/22/13 9:42:22.705 AM WindowServer[114]: init_page_flip: page flip mode is on
    10/22/13 9:42:23.271 AM kdc[56]: KDC started
    10/22/13 9:42:23.578 AM configd[18]: network changed: v4(en1+:173.250.178.195) DNS+ Proxy+ SMB
    10/22/13 9:42:23.581 AM WindowServer[114]: mux_initialize: Couldn't find any matches
    10/22/13 9:42:23.586 AM configd[18]: setting hostname to "d-173-250-178-195.dhcp4.washington.edu"
    10/22/13 9:42:23.589 AM UserEventAgent[11]: CFPreferences: user home directory for user mobile at  is unavailable. User domains will be volatile.
    10/22/13 9:42:23.590 AM UserEventAgent[11]: Captive: en1: Probing 'University of Washington'
    10/22/13 9:42:23.599 AM WindowServer[114]: GLCompositor enabled for tile size [256 x 256]
    10/22/13 9:42:23.599 AM WindowServer[114]: CGXGLInitMipMap: mip map mode is on
    10/22/13 9:42:23.607 AM UserEventAgent[11]: Captive: Online (not captive)
    10/22/13 9:42:23.609 AM configd[18]: network changed: v4(en1!:173.250.178.195) DNS Proxy SMB
    10/22/13 9:42:23.632 AM WindowServer[114]: WSMachineUsesNewStyleMirroring: true
    10/22/13 9:42:23.632 AM WindowServer[114]: MPServiceForDisplayDevice: Invalid device alias (0)
    10/22/13 9:42:23.632 AM WindowServer[114]: Display 0x1c80d8d2: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 472, Model 235, S/N 23505592, Unit 2, Rotation 0
    UUID 0x00000472000002352350559200000000
    10/22/13 9:42:23.633 AM WindowServer[114]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    10/22/13 9:42:23.633 AM WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x5 for display 0x1c80d8d2
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x6 for display 0x003f003c
    10/22/13 9:42:23.637 AM WindowServer[114]: Created shield window 0x7 for display 0x003f003d
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x1c80d8d2: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 472, Model 235, S/N 23505592, Unit 2, Rotation 0
    UUID 0x00000472000002352350559200000000
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    10/22/13 9:42:23.638 AM WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    10/22/13 9:42:23.638 AM WindowServer[114]: CGXPerformInitialDisplayConfiguration
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x1c80d8d2: MappedDisplay Unit 2; Vendor 0x472 Model 0x235 S/N 592467346 Dimensions 20.51 x 11.54; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    10/22/13 9:42:23.639 AM WindowServer[114]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    10/22/13 9:42:24.078 AM ntpd[100]: proto: precision = 1.000 usec
    10/22/13 9:42:24.338 AM WindowServer[114]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, accelerator 0x00004193, unit 0, caps QEX|QGL|MIPMAP, vram 1156 MB
    10/22/13 9:42:24.338 AM WindowServer[114]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    10/22/13 9:42:24.342 AM loginwindow[53]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:24.628 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 10 seconds
    10/22/13 9:42:24.873 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:24.882 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:25.125 AM com.apple.launchd[1]: (com.apple.xprotectupdater[36]) Exited with code: 252
    10/22/13 9:42:25.410 AM WindowServer[114]: Created shield window 0x8 for display 0x1c80d8d2
    10/22/13 9:42:25.410 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:25.427 AM launchctl[126]: com.apple.findmymacmessenger: Already loaded
    10/22/13 9:42:25.441 AM com.apple.SecurityServer[15]: Session 100004 created
    10/22/13 9:42:25.472 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:25.542 AM configd[18]: network changed: v4(en0+:128.95.5.135, en1) DNS! Proxy! SMB
    10/22/13 9:42:25.548 AM configd[18]: setting hostname to "d-128-95-5-135.dhcp4.washington.edu"
    10/22/13 9:42:25.567 AM locationd[134]: NOTICE,Location icon should now be in state 0
    10/22/13 9:42:25.573 AM UserEventAgent[127]: cannot find useragent 1102
    10/22/13 9:42:25.600 AM loginwindow[53]: Login Window Started Security Agent
    10/22/13 9:42:25.667 AM SecurityAgent[136]: This is the first run
    10/22/13 9:42:25.667 AM SecurityAgent[136]: MacBuddy was run = 0
    10/22/13 9:42:25.676 AM WindowServer[114]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x1c80d8d2 device: 0x103f34110  isBackBuffered: 1 numComp: 3 numDisp: 3
    10/22/13 9:42:25.869 AM SecurityAgent[136]: User info context values set for kathywinter
    10/22/13 9:42:25.990 AM WindowServer[114]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:26.013 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:26.026 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:26.295 AM loginwindow[53]: Login Window - Returned from Security Agent
    10/22/13 9:42:26.298 AM loginwindow[53]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    10/22/13 9:42:26.308 AM loginwindow[53]: USER_PROCESS: 53 console
    10/22/13 9:42:26.321 AM airportd[74]: _doAutoJoin: Already associated to “University of Washington”. Bailing on auto-join.
    10/22/13 9:42:26.755 AM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: UserName
    10/22/13 9:42:26.755 AM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: GroupName
    10/22/13 9:42:26.756 AM com.apple.launchd.peruser.501[148]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    10/22/13 9:42:26.760 AM loginwindow[53]: Connection with distnoted server was invalidated
    10/22/13 9:42:26.765 AM distnoted[154]: # distnote server agent  absolute time: 42.067362814   civil time: Tue Oct 22 09:42:26 2013   pid: 154 uid: 501  root: no
    10/22/13 9:42:27.409 AM UserEventAgent[153]: cannot find fw daemon port 1102
    10/22/13 9:42:27.844 AM com.apple.SecurityServer[15]: Session 100005 created
    10/22/13 9:42:28.028 AM WindowServer[114]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    10/22/13 9:42:28.048 AM WindowServer[114]: Display 0x1c80d8d2: MappedDisplay Unit 2; ColorProfile { 2, "Acer G245HQL"}; TransferFormula (1.000000, 1.000000, 1.000000)
    10/22/13 9:42:28.168 AM mds[49]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/22/13 9:42:28.169 AM mds[49]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/22/13 9:42:31.327 AM timezoned[183]: bootstrap_look_up failed (44e)
    10/22/13 9:42:31.336 AM timezoned[183]: bootstrap_look_up failed (44e)
    10/22/13 9:42:34.612 AM mds[49]: Unable to talk to lsboxd
    10/22/13 9:42:34.674 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 20 seconds
    10/22/13 9:42:34.768 AM com.apple.time[153]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    10/22/13 9:42:37.163 AM awacsd[68]: Exiting
    10/22/13 9:42:38.863 AM com.apple.launchd.peruser.501[148]: (com.apple.AddressBook.abd) Throttling respawn: Will start in 9 seconds
    10/22/13 9:42:42.685 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.685 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.714 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.714 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.733 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.733 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.752 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.752 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.771 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.771 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.789 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.789 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.808 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.808 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.827 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.827 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.845 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.845 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:42.864 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP1] [value:128.95.120.1]
    10/22/13 9:42:42.864 AM InterCheck[72]: SXLC: Setting [key:SXLDNSIP2] [value:128.95.112.1]
    10/22/13 9:42:43.000 AM kernel[0]: Sophos Anti-Virus on-access kext activated
    10/22/13 9:42:46.750 AM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[131]) Exit timeout elapsed (20 seconds). Killing
    10/22/13 9:42:49.603 AM SystemUIServer[175]: CGSCopyWindowShape: pid (175) passed NULL window
    10/22/13 9:42:49.603 AM SystemUIServer[175]: could not update menu bar region, 1000
    10/22/13 9:42:49.603 AM SystemUIServer[175]: CGSSetWindowTransformAtPlacement: Singular matrix [0.000 0.000 0.000 0.000]
    10/22/13 9:42:49.817 AM coreaudiod[197]: Enabled automatic stack shots because audio IO is inactive
    10/22/13 9:42:53.000 AM kernel[0]: jnl: disk2s6: flushing fs disk buffer returned 0x5
    10/22/13 9:42:54.715 AM FDERecoveryAgent[82]: Waiting for CoreStorage encryption be activated, will try again in 40 seconds

  • SCOM 2012 R2 installing on SQL 2012 SP1 - Error Code: 0x80131904, Exception.Message: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

    Hi,
    I am getting an issue during a SCOM 2012 R2 installation while creating the SCOM DataWarehouse database. Setup seems to timeout during creating the datawarehouse database. I can see all database files created in windows explorer on the SQL server before
    setup rolls the SCOM install back.
    Has anyone seen this issue before or know how to help resolve it?
    Appreciate your help, below is the SCOM installation log:
    Thanks
    Marc
    [13:27:27]: Always: :Creating Database: OperationsManagerDW
    [13:35:28]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [13:43:28]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [13:51:29]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [13:59:30]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:07:30]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:15:31]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:23:31]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:31:32]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:39:32]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:47:33]: Warn: :Warning:Retry on SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:55:33]: Error: :DB operations failed with SQL error -2: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    : Threw Exception.Type: System.Data.SqlClient.SqlException, Exception Error Code: 0x80131904, Exception.Message: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:55:33]: Error: :StackTrace:   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.ExecuteNonQuery(SqlCommand sqlCommand, Int32& result)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.Execute[T](SqlCommand sqlCommand, SqlRetryPolicy retryPolicy, GenericExecute`1 genericExecute)
    [14:55:33]: Error: :Inner Exception.Type: System.ComponentModel.Win32Exception, Exception Error Code: 0x80131904, Exception.Message: The wait operation timed out
    [14:55:33]: Error: :InnerException.StackTrace:
    [14:55:33]: Error: :Error:Failed to execute sql command. Setup has reached maximum retry limit.
    [14:55:33]: Warn: :Sql error: 11. Error: -2. Error Message: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:55:33]: Error: :Exception running sql string
    DECLARE @sql NVARCHAR(MAX);
    SET @sql = 'CREATE DATABASE ' + QUOTENAME(@DatabaseName) + '
        ON PRIMARY(NAME=MOM_DATA,FILENAME=''' + REPLACE(@Filename, '''', '''''') + ''',SIZE=' + CAST(@Size AS VARCHAR) + 'MB,MAXSIZE=UNLIMITED,FILEGROWTH=' + CAST(@FileGrowth AS VARCHAR) + 'MB)
        LOG ON(NAME=MOM_LOG, FILENAME=''' + REPLACE(@LogFilename, '''', '''''') + ''',SIZE=' + CAST(@LogSize AS VARCHAR) + 'MB,MAXSIZE=UNLIMITED,FILEGROWTH=' + CAST(@LogFileGrowth AS VARCHAR) + 'MB)';
    EXEC(@sql);: Threw Exception.Type: System.Data.SqlClient.SqlException, Exception Error Code: 0x80131904, Exception.Message: Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding.
    [14:55:33]: Error: :StackTrace:   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.ExecuteNonQuery(SqlCommand sqlCommand, Int32& result)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.Execute[T](SqlCommand sqlCommand, SqlRetryPolicy retryPolicy, GenericExecute`1 genericExecute)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.DBConfigurationHelper.DBConfiguration.RunSqlCommandsList(IEnumerable`1 sqlCommands)
    [14:55:33]: Error: :Inner Exception.Type: System.ComponentModel.Win32Exception, Exception Error Code: 0x80131904, Exception.Message: The wait operation timed out
    [14:55:33]: Error: :InnerException.StackTrace:
    [14:55:33]: Always: :Failed to create and configure the DB with exception.: Threw Exception.Type: System.Data.SqlClient.SqlException, Exception Error Code: 0x80131904, Exception.Message: Timeout expired.  The timeout period elapsed prior to completion
    of the operation or the server is not responding.
    [14:55:33]: Always: :StackTrace:   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.ExecuteNonQuery(SqlCommand sqlCommand, Int32& result)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.Execute[T](SqlCommand sqlCommand, SqlRetryPolicy retryPolicy, GenericExecute`1 genericExecute)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.DBConfigurationHelper.DBConfiguration.RunSqlCommandsList(IEnumerable`1 sqlCommands)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.DWConfigurationHelper.DWConfigurationProcessor.RunAdminScripts(String sqlServerInstance, Nullable`1 port, String databaseName, Int64 dbSize, Int64 logSize, String dbPath, String logPath)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.DWConfigurationHelper.DWConfigurationProcessor.ConfigureDataWarehouseDatabase(String sqlServerInstance, Nullable`1 port, String databaseName, Int64 dbSize, Int64 logSize, String dbPath,
    String logPath)
    [14:55:33]: Always: :Inner Exception.Type: System.ComponentModel.Win32Exception, Exception Error Code: 0x80131904, Exception.Message: The wait operation timed out
    [14:55:33]: Always: :InnerException.StackTrace:
    [14:55:33]: Error: :CreateDataWarehouse failed: Threw Exception.Type: System.Data.SqlClient.SqlException, Exception Error Code: 0x80131904, Exception.Message: Timeout expired.  The timeout period elapsed prior to completion of the operation or
    the server is not responding.
    [14:55:33]: Error: :StackTrace:   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.ExecuteNonQuery(SqlCommand sqlCommand, Int32& result)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SqlRetryHandler.Execute[T](SqlCommand sqlCommand, SqlRetryPolicy retryPolicy, GenericExecute`1 genericExecute)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.DBConfigurationHelper.DBConfiguration.RunSqlCommandsList(IEnumerable`1 sqlCommands)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.DWConfigurationHelper.DWConfigurationProcessor.RunAdminScripts(String sqlServerInstance, Nullable`1 port, String databaseName, Int64 dbSize, Int64 logSize, String dbPath, String logPath)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.DWConfigurationHelper.DWConfigurationProcessor.ConfigureDataWarehouseDatabase(String sqlServerInstance, Nullable`1 port, String databaseName, Int64 dbSize, Int64 logSize, String dbPath,
    String logPath)
       at Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.OMDataWarehouseProcessor.CreateDataWarehouse()
    [14:55:33]: Error: :Inner Exception.Type: System.ComponentModel.Win32Exception, Exception Error Code: 0x80131904, Exception.Message: The wait operation timed out
    [14:55:33]: Error: :InnerException.StackTrace:
    [14:55:33]: Error: :FATAL ACTION: CreateDataWarehouse
    [14:55:33]: Error: :FATAL ACTION: DWInstallActionsPostProcessor
    [14:55:33]: Error: :ProcessInstalls: Running the PostProcessDelegate returned false.
    [14:55:33]: Always: :SetErrorType: Setting VitalFailure. currentInstallItem: Data Warehouse Configuration
    [14:55:33]: Error: :ProcessInstalls: Running the PostProcessDelegate for OMDATAWAREHOUSE failed.... This is a fatal item.  Setting rollback.
    marc nalder

    Hi,
    Based on the log, I recommend you use the following way to test SQL connectivity.
    You can use a UDL file to test various connectivity scenarios, create a simple text file, rename the extension from TXT to UDL, fill out the necessary information on the connection tab then test the connection, and troubleshoot as necessary
    if it fails to connect.
    For more information, please review the link below:
    The easy way to test SQL connectivity
    http://blogs.technet.com/b/michaelgriswold/archive/2014/01/06/the-easy-way-to-test-sql-connectivity.aspx
    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.

  • I have an Apple MacBook Pro and when surfing the web my computer will slow to a crawl and I will have a multi-colored spinning wheel visible until my latest request is handled.  What is causing this and is there a way to prevent this from occuring

    I have a MacBook Pro.  When surfing the web it will eventually slow to a crawl.  When this occurs, there will be a small multi-colored wheel spinning until my latest command is handled.  What is causing this and is there a way that I can modify or prevent this from happening?  Is there a setting that will prevent this?

    When you next have the problem, note the exact time: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Scroll back in the log to the time you noted above. Select any messages timestamped from then until the end of the episode, or until they start to repeat. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • I can't click on the icons at the top of a site. What's causing this?

    I have firefox and it's having a strange problem today. When I'm on facebook, I can't click on the icons at the top. I can't click the message, friend request, notifications, home, profile icons and can't click the one that allows you to sign out. So i can't even sign out. What I mean by can't click is when I put the cursor over those icons, it doesn't change into the finger. When I left click it anyway, nothing happens. This doesn't happen in internet explorer, but I want to keep using firefox. What's causing this? I also noticed that this doesn't just happen on facebook. I've uninstalled and reinstalled firefox. I restarted the PC. It didn't help.

    The Yahoo! Toolbar extension has been reported to cause this issue.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • For some reason the Apple ID window in iTunes  and App Store now seems to have a character number constraint. As a result I am unable to enter the final few characters of my Apple ID which I have had for many years. Does anyone know what has caused this?

    For some reason the Apple ID window in iTunes and App Store now seems to suddenly have a character number constraint which prevents me using my 29 character Apple ID. As a result I am unable to enter the final few characters of my Apple ID which I have had for many years. Does anyone know what has caused this?

    You need to ask Apple for assistance with getting back into your old ID. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to resolve this issue through the Account Security team, fill out and submit this form.
    (118441)

  • The timeout period elapsed prior to completion of the operation or the server is not responding

    the timeout period elapsed prior to completion of the operation or the server is not responding.
    The error shows while executing a (select query) telerik report in MVC.

    Hello,
    Did you set the CommandTimeOut property of the SQL Command when you call the connection string to SQL Server?
    If your select query is complex or the data is larger, please try to specify connectiontimeout property to maximum integer value.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • I have iTunes version 10.7.0.21 for Windows 7.  It was working fine untill recently.  Now when I play a T.V. show the audio cuts in and out, the video pauses intermittenly and also intermittenly fast forwards.  What is causing this and how do I fix it?

    I'm having problems with video play back in itunes 10.7.0.21 for windows 7.  Video was playing fine, but now I'm having audio issues.  Audio cuts in and out.  Also video pauses and fast forwards.  Does anyone know what would cause this all the suddenly?  More importantly does anyone know how to fix this?

    All sorted now. Thread can be closed!

  • App size in system information not the same as app size in finder. What's causing this or which is right?

    As you can see from the image above, finder is showing that apps are taking up nearly 30 GB, nearly 25 GB less than system information. What is causing this or which one is the actual size of the apps. It's not as if I'm runing out of space , I'm just a bit curious.

    Now Carolyn, hopefully It'll work now!

  • I have recently got a new replacement iPhone 4.  since I got this I have found that my data allowance is getting used up during the night while my phone is charging on the bedside table.  How an I find out what is causing this and stop it happening

    I have recently got a new replacement iPhone 4.  Since I got this I have found that my data allowance is getting used up during the night while my phone is charging on the bedside table.  How an I find out what is causing this and stop it happening?  Some nights the usage is 150 meg!

    You can not access the backup directly.
    Did you restore your replacement from this backup?
    If so then you already have everything in the backup on your device.
    If not, you can wipe the device and restore from this backup:
    Settings > General > Reset > Erase All Content & Settings
    What is it you are worried about losing that isn't already on your current device?

  • I have an email account causes the machine to hang up after being in use for a day.  It only occurs on my Macbook Pro and only one particular account.  The problem account works fine on my iMac and Windows Machines.  Any ideas what is causing this?

    I have an email account causes the machine to hang up after being in use for a day.  It only occurs on my Macbook Pro and only one particular account.  The problem account works fine on my iMac and Windows Machines.  I have been to the local Genius bar and through trial and error we have determined that Mail is working ok but somehow the account is causing the problem.  I have used this account for years.  Any ideas what is causing this?

    No idea why, but one thing you may try if you have the time, is create a new user, and set up the problem mail account in the new user space. See if it causes your MBP to hang as well.  That will tell you if it is something wrong with your main User, or something wrong with MBP.
    Assuming this works, I'd nuke the problem account in your main user space, re-start, and reinititate the account and see if that helps.
    Depening on how many email accounts you have setup, it may be necessary to nuke the whole Mail folder in your User/Library....   Hard way to get it to work, but just my idea.

Maybe you are looking for

  • I can't turn off voicemail divert

    I'm going abroad next week and I don;t want to get stung again with Vmail charges.  Yesterday and today I've tried sending VM off to 150 and dialing 150 and going through the menus.  Each time I get greated with "Sorry there's a problem." Will this g

  • On Hardcoding

    Hi ABAPers and developers alike, Just for discussion pusposes, I would like your feedback on the following: 1) What is hardcoding in ABAP programming? 2) Why do you hardcode? 3) What are the disadvantages of hardcoding in ABAP? 4) Would elimination o

  • Crashing and Battery Reporting

    I've been having problems with my iPhone since iOS4, starting with 4.0, my phone started dieing when it was reporting 40% battery (and I had only used it enough for it to reach 40%). I upgraded to 4.0.1 this past week with a fresh restore), and that

  • Navigation bar not showing in IE browser?!!

    The navigation bar is not showing in Internet Explorer at all! It is just fine, of course, in Safari. Firefox shows the nav bar but in two lines, and another info box appears for a second then vanishes. www.thestudio33.com

  • I have a theme, that shows more of it self, the more tool bars I have open so in an older version I added many blank tool bars, how can I do this?

    Had to reinstall OS and everything on it including fire fox, but nothing looks the same. I think I was using version 28, I had like six blank tool bars, and now with the customize feature I don't know how to get them back. I'm also missing the large