FILESTREAM garbage collector in sql server 2012

HI
what is FILESTREAM garbage collector in sql server 2012
I restored a backup of a sharepoint 2010  content database it is rbs enabled
when I restore  blobs are deleting from a rbs storage folder how its happen
adil

This is a good read
http://www.sqlskills.com/blogs/paul/filestream-garbage-collection/
Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Similar Messages

  • SQL Server 2012 Database with FileStream enabled tables

    Hi,
    I have some questions concerning the SQL Server 2012 FileStream feature.
    In a database combining both Filestream connected tables and none filestream connected tables. It is obviously possible to tell the root path to a filestream FILEGROUP. It's also possible to create database primary data file (.mdf) and several
    optional secondary data files (.ndf), and multiple log files.
    If I have two filestream connected tables, which each in turn have a couple of other referenced tables (none filestream connected). Is it possible to put the filestream filegroup1 (eg. the filestream connected table1) and its referenced none filestream connected
    tables, their data, indexes etc., on the same physical data file? And the other filestream connected table and its referenced tables to another physical file (.ndf)? If this is possible and recommended, how do I declare such an create database statement?
    For ex. when having tables for both none archived state, archived state, in the same database. Or is the best solution to split the two (and its referenced tables) in separate databases?
    SWEDEV

    Hello,
    File groups a just contains for the objects, you e.g. can split one table over several file Groups/secondarie files using partitioning. And a filestream is also just a table. You can reference all table Independent of file Groups / file stream.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Full-Text search is not working with PDF files - SQL Server 2012 64 bit

    Hi,
    We are in the process of storing PDF files in SQL Server 2012 with Full-Text search capability.
    I followed the steps as below and it works fine with word document but not for PDF files. I tried with PDF ifiler 11 & 9 and both are unsuccessful.
    Server/DB Level Settings:
    1)
    Enable FileStream
    2)
    Install Full-Text
    then restart
    3)
    Use [specific db]
    alter
    database [db name]
    add
    filegroup Files
    contains filestream;
    alter
    database [db name]
    add
    file (
    name = N'Files',
    filename =
    N'D:\SQL\DATA') to
    filegroup [Files];
    3)
    Database level
    Settings:
    FileStream:
    FileStream
    Directory name:
    [Set the name]
    FileStream
    non-transacted
    Access: [set Appropriate]
    3a)
    Add a
    datafile to DB
    with filestreamdata
    filetype.
    4)
    Share D:\SQL\DATA
    directory and
    add specific accounts
    with read/write
    access
    5)
    Give bulkadmin
    access to those
    specific accounts
    at server
    level
    6)
    From the
    page (link)
    download and
    install the *.pdf
    IFilter for
    FTS. Link:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    7)
    To the
    PATH global system
    variable add
    path to the
    catalog,
    where you installed
    the plugin.
    Default for
    this version is:
    C:\Program
    Files\Adobe\Adobe
    PDF iFilter 9
    for 64-bit
    platforms\bin
    8)
    From the
    page (link)
    download a
    FilterPackx64.exe
    and install
    it. Link:
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=20109
    9)
    Now from
    SSMS execute the following
    procedures:
    -sp_fulltext_service
    'load_os_resources',1
    -sp_fulltext_service
    'verify_signature', 0
    EXEC
    sp_fulltext_service
    'update_languages';
    -- update language list
    EXEC
    sp_fulltext_service
    'restart_all_fdhosts';
    -- restart daemon
    reconfigure
    with override;
    10)
    Restart the
    server
    11)
    select document_type,
    path from
    sys.fulltext_document_types
    where document_type
    = '.pdf'
    -select
    document_type,
    path from sys.fulltext_document_types
    where document_type
    = '.docx'
    12) Results are OK.
    Following is my Table /Index/ catalog script:
    CREATE
    TABLE dbo.DocumentFilesTest
    DocumentId  INT
    IDENTITY(1,1)
    NOT NULL
    PRIMARY KEY,
    AddDate datetime
    NOT NULL,
    Name nvarchar(50)
    NOT NULL,
    Extension nvarchar(10)
    NOT NULL,
    Description nvarchar(1000)
    NULL,
    FileStream_Id UNIQUEIDENTIFIER
    ROWGUIDCOL NOT
    NULL UNIQUE DEFAULT
    NEWSEQUENTIALID(),
    FileSource varbinary(MAX)
    FILESTREAM DEFAULT(0x)
    go
    --Add default add date for document   
    ALTER
    TABLE dbo.DocumentFilesTest
    ADD CONSTRAINT
    DF_DocumentFilesTest_AddDate
    DEFAULT sysdatetime()
    FOR AddDate
    EXEC
    sp_fulltext_database
    'enable'
    GO
    IF
    NOT EXISTS
    (SELECT
    TOP 1 1 FROM sys.fulltext_catalogs
    WHERE name
    = 'Ducuments_Catalog_test')
    BEGIN
    EXEC sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'create',
    'D:\SQL\PDFBlob';
    END
    --EXEC sp_fulltext_catalog 'Ducuments_Catalog_test', 'drop'
    DECLARE
    @indexName nvarchar(255)
    = (SELECT
    Top 1 i.Name
    from sys.indexes
    i
    Join sys.tables
    t on 
    i.object_id
    = t.object_id
    WHERE t.Name
    = 'DocumentFilesTest'
    AND i.type_desc
    = 'CLUSTERED')
    PRINT @indexName
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'create',
    'Ducuments_Catalog_test', 
    @indexName
    EXEC
    sp_fulltext_column
    'DocumentFilesTest',
    'FileSource',
    'add', 0,
    'Extension'
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'activate'
    EXEC
    sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'start_full'
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    ENABLE
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    SET CHANGE_TRACKING
    = AUTO
    ALTER
    FULLTEXT CATALOG
    Ducuments_Catalog_test REBUILD
    WITH ACCENT_SENSITIVITY=OFF;
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'pdf'
    'BOL12006553.pdf'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\BOL12006553.pdf',
    SINGLE_BLOB)
    AS BLOB;
    GO
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'docx'
    'test.docx'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\test.docx',
    SINGLE_BLOB)
    AS Document;
    GO
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'BILL')
    Returns nothing. it should come from PDF file
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'TEST')
    Returns from word document as follows:
    2           2014-06-04 10:11:41.393            test.docx docx           
    NULL   [BINARY Value]  [Binary Value]
    Any help is appreciated. Its been a long wait.
    Thanks,
    Vel
    Vel Thavasi

    Hello,
    Did you check the fulltext log files for more details about the errors. If the filter isn’t working, there should be errors in the error log file.
    The following thread is about similar issue, please refer to:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/69535dbc-c7ef-402d-a347-d3d3e4860d72/sql-server-2008-64bit-fulltext-indexing-pdf-not-working-cant-find-ifilter
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • FILE STREAM error while enabling it in SQL SERVER 2012

    I'm trying to use Filetable in my Project. For which i need to enable FILESTREAMS ,
    when i try to do that through Configuration Manager i'm getting following error:
    "There is a unknown error in filestream settings 2012"
    ChecK the Parameters are valid. (0X80041008)
    Can anyone reply as to how i can fix this.
    Thanks in Advance

    Hi sthilaks,
    Have you installed SQL Server 2012 Service Pack 1? If not, I suggest installing it and check the result again.
    SQL Server 2012 SP1 Is Now Available!
    http://blogs.msdn.com/b/sqlreleaseservices/archive/2012/11/07/sql-server-2012-sp1-is-now-available.aspx
    Allen Li
    TechNet Community Support

  • Full Text Search in PDF file Not Working in SQL Server 2012

    OS: Windows Server 2012 @ Azure
    DB: SQL Server 2012 SP 1 with Cum Update 6
    Filter: OfficeFilter installed, PDFFilter64 11 installed (actually I tried 9 too)
    I have done the following steps:-
    1. Configure SQL Server Instance to enable FILESTREAM for Transaction-SQL Access (IO Access and Allow Remote Client Access to FileStream data) and restart the instance service.
    2. Set Stream Access Level to Full Access and  
    3. Create Database with file stream folder and set the created database Properties.Options: FileStreamDirectorName = fileContainer and FileStream Non-Transaction Access = Full.
    4. Create a FileTable with file director
    5. Execute the following scripts to ensure all installed components working. PDF is listed as one of the supported filter.
    EXEC sp_fulltext_service @action='load_os_resources', @value=1;
    EXEC sp_fulltext_service 'verify_signature', 0 -- don't verify signatures
    EXEC sp_fulltext_service 'update_languages'; -- update language list
    EXEC sp_fulltext_service 'restart_all_fdhosts';
    EXEC sp_help_fulltext_system_components 'filter'
    reconfigure with override
    6. Copy a few PPTX, DOCX, PDF file into the file director.
    7. Search the data by following command. I can PPTX and DOCX files can return right result but PDF is not returned although it contains the searching contents.
    SELECT *
    FROM dbo.Course
    WHERE CONTAINS(file_stream, 'Counsellor');
    Any expert advise?
    Ant in SG

    Are you seeing any errors in the SQL Server Error Log, the Windows Application or System logs?  How about in the Full-text crawl logging?
    Troubleshooting Errors in a Full-Text Population (Crawl)
    If your server has a mix of multi-threaded iFilters and single-threaded iFilters, this can cause serious problems with building the full text index.  (How do I know this?  Well, let's just say that I have suffered as well. And I was shocked!) 
    The efficiency was greatly increased by this article: 
    Troubleshooting: Slow Full-Text Indexing Performance Due to Filtering Process
    This means changing the threading model for the multi-threaded (e.g. Microsoft Office) filters to be Apartment Threaded.  Or perhaps if you are full text indexing PDF files, abandoning the free single-threaded Adobe IFilter and purchasing the FoxIt
    (or some other) multi-threaded PDF iFilter would benefit you.
    RLF

  • SQL Server 2012 Express SP1 will not install on Windows Server 2012 Essentials R2

    I have been attempting to install SQL Server 2012 with SP1 Express Edition for about a two weeks and have been unsuccessful.  My organization recently purchased a new Dell PowerEdge T320 Server (64 Bit) with Intel Xeon Proc.-E5-2420; 2.2Ghz, 32 Gb RAM,
    1 Tb RAID 5 H/D, and Windows Server 2012 R2 Essentials (preinstalled).  The server will be configured as an on premises server.  We are running a small church management application that requires SQL Server 2012 SP1 Express.  Per the direction
    of our application vendor, we downloaded the SQL Server 2012 SP1 Express file (SQLEXPRADV_x64_ENU.exe) from the Microsoft SQL Server Website.  We ran the file "As Administrator" and the SQL Server 2012 Setup program began. 
    We selected New SQL Server Stand-Alone Installation, successfully installed the needed Product Updates, and accepted the MS SQL Server 2013 Express License terms. 
    When the Feature Selection Page appeared we checked only the "Data Base Eng Services".  The
    Instance Configuration Page was displayed and we inserted a "Named Instance= Shelby",then pressed next.  On the
    Server Configuration Page the only change was setting the "sql server browser = automatic".  The Database Engine Configuration Page appeared
    and we inserted the following settings:1] Server Configuration Tab; a) mixed mode, b)inserted SQL Server Admin pswd, c) added current user as administrator: 2] Data Directories Tab; default/no changes: 3] User Instanced Tab; default/no
    changes: and 4] Filestream Tab; default/no changes.  Next the
    Reporting Services Configuration Page came up and the reporting services native mode was set to
    "install and configure".  The Error Reporting Page appeared and was left as the
    "default".  The SQL Server 2012 Setup program proceeded to Installation Progress Page and started to install. Just before the install program ended it displayed a message saying that there
    were errors and the Database Eng Services did not succeed. I uninstalled SQL Server 2012 SP1 Express three (3) times, ran Windows Update after every uninstall, attempted to install the Database Engine and got the same results.  Are there any patches or
    special procedures for correctly installing SQL Server 2012 SP1 Express on my hardware configuration or Windows Server 2012 Essentials R2?  Any insight would be greatly appreciated.

    Can you post the setup Summary and detail logs, which will help to figure out the problem? The details about the location can be found at https://msdn.microsoft.com/en-us/library/ms143702(v=sql.110).aspx
    Satish Kartan www.sqlfood.com

  • SQL Server 2012 SP2 Cumulative Update 5

    We are starting to take a look at Cumulative update 5 for SQL Server 2012 SP2.  The Installation was going smooth until the very in, where it sat on trying to start MSSQLServer for several minutes and finally timed out.  Why does Cumulative
    patch 5 says it failed to start the service when the server is already running?  Version number changed, and everthing looks ok, except for the error message in the log file.
    Is this a valid installation or do I need to try again? 
    Thanks.
    DJ

    Thanks for the reply.  The ErrorLog is too large to post in 1 reply.  Will post multiple times.
    Version of the SQL Server shows 11.0.5582.0
    Dj
    Post 1
    2015-03-24 14:13:23.82 Server      Microsoft SQL Server 2012 - 11.0.5582.0 (X64)
     Feb 27 2015 18:10:15
     Copyright (c) Microsoft Corporation
     Enterprise Edition: Core-based Licensing (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    2015-03-24 14:13:23.82 Server      (c) Microsoft Corporation.
    2015-03-24 14:13:23.82 Server      All rights reserved.
    2015-03-24 14:13:23.82 Server      Server process ID is 37184.
    2015-03-24 14:13:23.82 Server      System Manufacturer: 'VMware, Inc.', System Model: 'VMware Virtual Platform'.
    2015-03-24 14:13:23.82 Server      Authentication mode is MIXED.
    2015-03-24 14:13:23.82 Server      Logging SQL Server messages in file 'L:\SQL Server\Log Files\ERRORLOG'.
    2015-03-24 14:13:23.82 Server      The service account is 'NT Service\MSSQLSERVER'. This is an informational message; no user action is required.
    2015-03-24 14:13:23.82 Server      Registry startup parameters:
      -d H:\\System DB\Data\master.mdf
      -e L:\SQL Server\Log Files\ERRORLOG
      -l G:\\System DB\Logs\mastlog.ldf
    2015-03-24 14:13:23.82 Server      Command Line Startup Parameters:
      -s "MSSQLSERVER"
    2015-03-24 14:13:24.15 Server      SQL Server detected 1 sockets with 2 cores per socket and 2 logical processors per socket, 2 total logical processors; using 2 logical processors based on SQL Server licensing. This is an informational
    message; no user action is required.
    2015-03-24 14:13:24.15 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.15 Server      Detected 8191 MB of RAM. This is an informational message; no user action is required.
    2015-03-24 14:13:24.15 Server      Using locked pages in the memory manager.
    2015-03-24 14:13:24.15 Server      Common Criteria compliance mode is enabled. This is an informational message only; no user action is required.
    2015-03-24 14:13:24.22 Server      This instance of SQL Server last reported using a process ID of 39820 at 3/24/2015 2:09:46 PM (local) 3/24/2015 6:09:46 PM (UTC). This is an informational message only; no user action is required.
    2015-03-24 14:13:24.23 Server      Node configuration: node 0: CPU mask: 0x0000000000000003:0 Active CPU mask: 0x0000000000000003:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2015-03-24 14:13:24.23 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2015-03-24 14:13:24.24 Server      Software Usage Metrics is disabled.
    2015-03-24 14:13:24.24 spid4s      Starting up database 'master'.
    2015-03-24 14:13:24.30 spid4s      9 transactions rolled forward in database 'master' (1:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.32 spid4s      0 transactions rolled back in database 'master' (1:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.32 spid4s      Recovery is writing a checkpoint in database 'master' (1). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.33 Server      CLR version v4.0.30319 loaded.
    2015-03-24 14:13:24.36 Server      Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
    2015-03-24 14:13:39.41 spid6s      SQL Server has encountered 1 occurrence(s) of I/O requests taking longer than 15 seconds to complete on file [H:\\System DB\Data\master.mdf] in database [master] (1).  The OS file handle is 0x0000000000000598. 
    The offset of the latest long I/O is: 0x0000000002a000
    2015-03-24 14:13:53.94 spid4s      Recovery completed for database master (database ID 1) in 29 second(s) (analysis 3 ms, redo 39 ms, undo 8 ms.) This is an informational message only. No user action is required.
    2015-03-24 14:13:54.19 spid4s      CHECKDB for database 'master' finished without errors on 2015-03-06 08:35:22.387 (local time). This is an informational message only; no user action is required.
    2015-03-24 14:13:54.19 spid4s      Resource governor reconfiguration succeeded.
    2015-03-24 14:13:54.19 spid4s      SQL Server Audit is starting the audits. This is an informational message. No user action is required.
    2015-03-24 14:13:54.19 spid4s      SQL Server Audit has started the audits. This is an informational message. No user action is required.
    2015-03-24 14:13:54.21 spid4s      Server name is 'Server'. This is an informational message only. No user action is required.
    2015-03-24 14:13:54.22 spid4s      Failed to verify Authenticode signature on DLL 'S:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Binn\ftimport.dll'.
    2015-03-24 14:13:54.22 spid9s      Starting up database 'mssqlsystemresource'.
    2015-03-24 14:13:54.22 spid14s     Starting up database 'msdb'.
    2015-03-24 14:13:54.23 spid15s     Starting up database 'Mgmt'.
    2015-03-24 14:13:54.24 spid16s     Starting up database 'Web2'.
    2015-03-24 14:13:54.24 spid12s     The certificate [Cert Hash(sha1) "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"] was successfully loaded for encryption.
    2015-03-24 14:13:54.24 spid18s     Starting up database 'Web2A'.
    2015-03-24 14:13:54.24 spid9s      The resource database build version is 11.00.5582. This is an informational message only. No user action is required.
    2015-03-24 14:13:54.25 spid12s     Server is listening on [ 'any' <ipv6> 1433].
    2015-03-24 14:13:54.25 spid12s     Server is listening on [ 'any' <ipv4> 1433].
    2015-03-24 14:13:54.25 spid12s     Server local connection provider is ready to accept connection on [
    \\.\pipe\SQLLocal\MSSQLSERVER ].
    2015-03-24 14:13:54.26 spid12s     Server local connection provider is ready to accept connection on [
    \\.\pipe\sql\query ].
    2015-03-24 14:13:54.26 Server      Server is listening on [ ::1 <ipv6> 1434].
    2015-03-24 14:13:54.26 Server      Server is listening on [ 127.0.0.1 <ipv4> 1434].
    2015-03-24 14:13:54.26 Server      Dedicated admin connection support was established for listening locally on port 1434.
    2015-03-24 14:13:54.26 Server      SQL Server is attempting to register a Service Principal Name (SPN) for the SQL Server service. Kerberos authentication will not be possible until a SPN is registered for the SQL Server service. This
    is an informational message. No user action is required.
    2015-03-24 14:13:54.33 Server      The SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [ MSSQLSvc/Server.local ] for the SQL Server service.
    2015-03-24 14:13:54.33 Server      The SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [ MSSQLSvc/Server.local:1433 ] for the SQL Server service.
    2015-03-24 14:13:54.39 spid9s      Starting up database 'model'.
    2015-03-24 14:13:54.42 spid4s      1 transactions rolled back in database 'msdb' (4:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.42 spid4s      Recovery is writing a checkpoint in database 'msdb' (4). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.46 spid9s      1 transactions rolled forward in database 'model' (3:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.47 spid9s      0 transactions rolled back in database 'model' (3:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.62 spid9s      Clearing tempdb database.
    2015-03-24 14:14:17.34 spid9s      Starting up database 'tempdb'.
    2015-03-24 14:14:27.05 spid19s     The Service Broker endpoint is in disabled or stopped state.
    2015-03-24 14:14:27.06 spid19s     The Database Mirroring endpoint is in disabled or stopped state.
    2015-03-24 14:14:27.07 spid19s     Service Broker manager has started.
    2015-03-24 14:14:27.21 spid15s     CHECKDB for database 'Mgmt' finished without errors on 2014-09-14 00:02:54.637 (local time). This is an informational message only; no user action is required.
    2015-03-24 14:14:27.58 spid16s     CHECKDB for database 'Web2' finished without errors on 2015-03-22 00:00:43.253 (local time). This is an informational message only; no user action is required.
    2015-03-24 14:14:27.65 spid4s      Database 'master' is upgrading script 'ProvisionAgentIdentity.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.65 spid4s      Database 'master' is upgrading script 'no_op.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.93 spid4s      Database 'master' is upgrading script 'no_op.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.94 spid4s      -----------------------------------------
    2015-03-24 14:14:27.94 spid4s      Starting execution of dummy.sql
    2015-03-24 14:14:27.94 spid4s      -----------------------------------------
    2015-03-24 14:14:27.94 spid4s      Database 'master' is upgrading script 'repl_upgrade.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.94 spid4s      Executing replication upgrade scripts.
    2015-03-24 14:14:27.99 spid4s      Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required.
    2015-03-24 14:14:28.07 spid4s      Using 'xpstar.dll' version '2011.110.5058' to execute extended stored procedure 'xp_instance_regread'. This is an informational message only; no user action is required.
    2015-03-24 14:14:28.09 spid4s      Executing sp_vupgrade_replication.
    2015-03-24 14:14:28.50 spid4s      Upgrading publication settings and system objects in database [Mgmt].
    2015-03-24 14:14:28.89 spid4s      Upgrading publication settings and system objects in database [Web2].
    2015-03-24 14:14:29.98 spid4s      Upgrading publication settings and system objects in database [Web2A].
    2015-03-24 14:14:30.48 spid4s      Could not open database [LEGACY_DSS]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_1]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when the
    database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_LS]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_NG]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_RSV]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.52 spid4s      Upgrading subscription settings and system objects in database [Mgmt].
    2015-03-24 14:14:31.17 spid4s      Attempting to load library 'xprepl.dll' into memory. This is an informational message only. No user action is required.
    2015-03-24 14:14:31.19 spid4s      Using 'xprepl.dll' version '2011.110.5582' to execute extended stored procedure 'xp_repl_encrypt'. This is an informational message only; no user action is required.
    2015-03-24 14:14:31.19 spid4s      Upgrading subscription settings and system objects in database [Web2].
    2015-03-24 14:14:31.75 spid4s      Upgrading subscription settings and system objects in database [Web2A].
    2015-03-24 14:14:32.31 spid4s      Could not open database [LEGACY]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when the
    database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_1]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when the
    database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_LS]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_NG]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_RSV]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:32.33 spid4s      Attempting to copy article resolvers from SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\Replication\ArticleResolver
    2015-03-24 14:14:32.59 spid4s      sp_vupgrade_replication executed successfully
    2015-03-24 14:14:32.59 spid4s      Saving upgrade script status to 'SOFTWARE\Microsoft\MSSQLServer\Replication\Setup'.
    2015-03-24 14:14:32.59 spid4s      Saved upgrade script status successfully.
    2015-03-24 14:14:32.59 spid4s      Database 'master' is upgrading script 'upgrade_ucp_cmdw_discovery.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:32.92 spid4s      Database 'master' is upgrading script 'msdb110_upgrade.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:32.92 spid4s      ----------------------------------
    2015-03-24 14:14:32.92 spid4s      Starting execution of PRE_MSDB.SQL
    2015-03-24 14:14:32.92 spid4s      ----------------------------------
    2015-03-24 14:14:33.08 spid4s      Setting database option COMPATIBILITY_LEVEL to 100 for database 'msdb'.
    2015-03-24 14:14:33.17 spid4s      -----------------------------------------
    2015-03-24 14:14:33.17 spid4s      Starting execution of PRE_SQLAGENT100.SQL
    2015-03-24 14:14:33.17 spid4s      -----------------------------------------
    2015-03-24 14:14:33.17 spid4s      Setting database option COMPATIBILITY_LEVEL to 110 for database 'msdb'.
    2015-03-24 14:14:33.22 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:14:33.22 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:15:00.06 spid6s      SQL Server has encountered 1 occurrence(s) of I/O requests taking longer than 15 seconds to complete on file [G:\\System DB\Logs\MSDBLog.ldf] in database [msdb] (4).  The OS file handle is 0x0000000000000790. 
    The offset of the latest long I/O is: 0x00000000efac00
    2015-03-24 14:16:00.87 spid4s      DBCC TRACEOFF 1717, server process ID (SPID) 4. This is an informational message only; no user action is required.
    2015-03-24 14:16:00.87 spid4s      DBCC execution completed. If DBCC printed error messages, contact your system administrator.
    2015-03-24 14:16:00.88 spid4s      
    2015-03-24 14:16:00.88 spid4s      Creating table temp_sysjobschedules
    2015-03-24 14:16:01.00 spid4s      
    2015-03-24 14:16:01.00 spid4s      Alter table sysdownloadlist...
    2015-03-24 14:16:01.00 spid4s      
    2015-03-24 14:16:01.00 spid4s      Alter table sysjobhistory...
    2015-03-24 14:16:01.02 spid4s      
    2015-03-24 14:16:01.02 spid4s      Alter table systargetservers...
    2015-03-24 14:16:01.02 spid4s      
    2015-03-24 14:16:01.02 spid4s      Alter table sysjobsteps...
    2015-03-24 14:16:01.09 spid4s      Configuration option 'allow updates' changed from 1 to 0. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.09 spid4s      Configuration option 'allow updates' changed from 1 to 0. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.09 spid4s      
    2015-03-24 14:16:01.09 spid4s      -----------------------------------------
    2015-03-24 14:16:01.09 spid4s      Execution of PRE_SQLAGENT100.SQL complete
    2015-03-24 14:16:01.09 spid4s      -----------------------------------------
    2015-03-24 14:16:01.10 spid4s      DMF pre-upgrade steps...
    2015-03-24 14:16:01.25 spid4s      DC pre-upgrade steps...
    2015-03-24 14:16:01.25 spid4s      Check if Data collector config table exists...
    2015-03-24 14:16:01.25 spid4s      Data Collector state before upgrade: 0
    2015-03-24 14:16:01.25 spid4s      pre_dc100::Check if syscollector_collection_sets_internal table exists...
    2015-03-24 14:16:01.25 spid4s      pre_dc100::Capturing Collection set status in temp table...
    2015-03-24 14:16:01.33 spid4s      Deleting cached auto-generated T-SQL Data Collection packages from msdb...
    2015-03-24 14:16:01.33 spid4s      End of DC pre-upgrade steps.
    2015-03-24 14:16:01.33 spid4s      DAC pre-upgrade steps...
    2015-03-24 14:16:01.33 spid4s      Starting DAC pre-upgrade steps ...
    2015-03-24 14:16:01.33 spid4s      End of DAC pre-upgrade steps.
    2015-03-24 14:16:01.33 spid4s      ----------------------------------
    2015-03-24 14:16:01.33 spid4s      Starting execution of MSDB.SQL
    2015-03-24 14:16:01.33 spid4s      ----------------------------------
    2015-03-24 14:16:01.39 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.39 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.42 spid4s      Checking the size of MSDB...
    2015-03-24 14:16:01.60 spid4s      
    2015-03-24 14:16:01.60 spid4s      Setting database option TRUSTWORTHY to ON for database 'msdb'.
    2015-03-24 14:16:01.60 spid4s      Setting database option RECOVERY to SIMPLE for database 'msdb'.
    2015-03-24 14:16:01.63 spid4s      ----------------------------------
    2015-03-24 14:16:01.63 spid4s      Finished execution of MSDB.SQL
    2015-03-24 14:16:01.63 spid4s      ----------------------------------
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      Starting execution of MSDB_VERSIONING.SQL
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      Finished execution of MSDB_VERSIONING.SQL
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      Dropping view MSdatatype_mappings...
    2015-03-24 14:16:01.63 spid4s      Dropping view sysdatatypemappings...
    2015-03-24 14:16:30.94 spid4s      Dropping table MSdbms_datatype_mapping...
    2015-03-24 14:16:30.95 spid4s      Dropping table MSdbms_map...
    2015-03-24 14:16:30.96 spid4s      Dropping table MSdbms_datatype...
    2015-03-24 14:16:30.96 spid4s      Dropping table MSdbms...
    2015-03-24 14:16:30.99 spid4s      Creating table MSdbms
    2015-03-24 14:16:31.00 spid4s      Creating table MSdbms_datatype
    2015-03-24 14:17:30.96 spid4s      Creating table MSdbms_map
    2015-03-24 14:17:30.96 spid4s      Creating table MSdbms_datatype_mapping
    2015-03-24 14:17:30.97 spid4s      Definining default datatype mappings
    2015-03-24 14:17:30.98 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE8
    2015-03-24 14:17:31.08 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE9
    2015-03-24 14:17:31.12 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE10
    2015-03-24 14:17:31.17 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE11
    2015-03-24 14:17:31.22 spid4s      Creating datatype mappings for MSSQLSERVER to DB2
    2015-03-24 14:17:31.28 spid4s      Creating datatype mappings for MSSQLSERVER to SYBASE
    2015-03-24 14:17:31.33 spid4s      Creating datatype mappings for ORACLE8 to MSSQLSERVER
    2015-03-24 14:17:31.38 spid4s      Creating datatype mappings for ORACLE9 to MSSQLSERVER
    2015-03-24 14:17:31.45 spid4s      Creating datatype mappings for ORACLE10 to MSSQLServer
    2015-03-24 14:17:50.00 spid4s      Creating datatype mappings for ORACLE11 to MSSQLServer
    2015-03-24 14:17:59.30 spid4s      Creating view MSdatatype_mappings
    2015-03-24 14:17:59.31 spid4s      Creating view sysdatatypemappings
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_enum_proxy_for_subsystem
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_enum_login_for_proxy
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sysmail_delete_mailitems_sp
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_get_startup_info
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_has_server_access
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_get_perf_counters
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_notify
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sysmail_delete_log_sp
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_is_sqlagent_starting
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_verify_job_identifiers
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_verify_schedule_identifiers
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_jobproc_caller
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_downloaded_row_limiter
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_post_msx_operation
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_performance_condition
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_job_date
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_job_time
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_alert
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_update_alert
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_delete_job_references
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_delete_all_msx_jobs
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_accountparams_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_generate_target_server_job_assignment_sql
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_generate_server_description
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_principal_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_set_account
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_profile_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_get_account
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_account_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_delete_operator
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_add_profile_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_defect
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_update_profile_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_enlist
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_delete_profile_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_delete_targetserver
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_help_profile_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_enlist_tsx
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_create_user_credential_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_get_sqlagent_properties
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_alter_user_credential_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_set_sqlagent_properties
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_drop_user_credential_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_add_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_add_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_update_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_update_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_delete_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_delete_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_help_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_help_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_add_targetsvrgrp_member
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_help_admin_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_delete_targetsvrgrp_member
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_add_profileaccount_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_verify_category
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_update_profileaccount_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_add_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_delete_profileaccount_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_update_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_profileaccount_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_delete_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_configure_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_configure_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_targetserver
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_configure_value_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_resync_targetserver
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_add_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_purge_jobhistory
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_update_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_jobhistory_full
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_delete_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_jobhistory_summary
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_jobhistory
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_logmailevent_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_add_jobserver
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_start_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_delete_jobserver
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sysmail_stop_sp
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_help_jobserver
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sysmail_help_status_sp
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_help_downloadlist
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sysmail_help_queue_sp
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_enum_sqlagent_subsystems_internal
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_SendMailMessage
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_enum_sqlagent_subsystems
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_isprohibited
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_verify_subsystem
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_SendMailQueues
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_verify_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_ProcessResponse
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_add_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_MailItemResultSets
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_attach_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_process_DialogTimer
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_detach_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_readrequest
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_update_replication_job_parameter
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_GetAttachmentData
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_update_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_RunMailQuery
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_delete_schedule
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_validate_user
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_get_jobstep_db_username
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_send_dbmail
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_verify_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_ExternalMailQueueListener
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_add_jobstep_internal
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_sysmail_activate
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_add_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_update_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_delete_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_help_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_write_sysjobstep_log
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_delete_log
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_help_jobsteplog
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_delete_subplan
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_delete_jobsteplog
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_update_subplan_tsx
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_get_schedule_description
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_subplans_by_job
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_add_jobschedule
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_open_logentry
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_update_jobschedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_close_logentry
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_jobschedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_update_log
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_schedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_update_subplan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_jobschedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_delete_plan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_verify_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_start
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_get_script
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_update_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_clear_dbmaintplan_by_db
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_maintenance_plan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_get_composite_job_info
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_maintenance_plan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_maintenance_plan_db
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_jobcount
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_maintenance_plan_db
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_jobs_in_schedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_maintenance_plan_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_manage_jobs_by_login
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_maintenance_plan_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_apply_job_to_targets
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_help_maintenance_plan
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_remove_job_from_targets
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_get_job_alerts
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_start_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_stop_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_add_log_shipping_monitor_jobs
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_cycle_agent_errorlog
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_add_log_shipping_primary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_get_chunked_jobstep_params
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_add_log_shipping_secondary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_check_for_owned_jobs
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_log_shipping_monitor_jobs
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_check_for_owned_jobsteps
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_log_shipping_primary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_sqlagent_refresh_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_log_shipping_secondary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_jobhistory_row_limiter
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_log_shipping_in_sync
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_sqlagent_log_jobhistory
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_log_shipping_get_date_from_file
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_sqlagent_check_msx_version
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_get_log_shipping_monitor_info
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_sqlagent_probe_msx
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_update_log_shipping_monitor_info
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_set_local_time
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_delete_log_shipping_monitor_info
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_multi_server_job_summary
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_remove_log_shipping_monitor_account
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_target_server_summary
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_log_shipping_monitor_backup
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_uniquetaskname
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_log_shipping_monitor_restore
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_addtask
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_change_monitor_role
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_droptask
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_create_log_shipping_monitor_account
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: trig_targetserver_insert
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_add_alert_internal
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_ssis_addlogentry
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_add_alert
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_ssis_listpackages
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_delete_alert
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_ssis_listfolders
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_help_alert
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_deletepackage
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_deletefolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_add_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_sqlagent_is_srvrolemember
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_getpackage
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_update_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_category_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_getfolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_help_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_putpackage
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_help_operator_jobs
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_proxy_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_operator_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_credential_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_addfolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_notify_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_subsystems
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_renamefolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_notification
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_subsystem_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_setpackageroles
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_add_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_verify_login_identifiers
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_ssis_getpackageroles
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_update_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_verify_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_delete_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_add_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_delete_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_jobactivity
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_update_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_sqlagent_is_member
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_verify_proxy_permissions
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_sem_add_message
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_sem_drop_message
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_get_message_description
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_grant_proxy_to_subsystem
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_jobhistory_sem
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_grant_login_to_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_convert_jobid_to_char
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_revoke_login_from_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_revoke_proxy_from_subsystem

  • Error while installing SQL Server 2012 X64 SP2,

    Error while installing SQL Server 2012 X64 SP2,
     When I installed the SQL Server 2012 X64 SP1, I got the attached error.
     What might be the issue here?
     Thank you
     Best
    Jamal

    Hello,
    Are you trying to install SQL Server on a compressed or encrypted drive? SQL Server won’t install on a drive/folder with these attributes.
    Are you trying to install SQL Server on a ReFS file system? It is not supported on SQL Server 2012.
    Disable any security/antivirus software and download the media again. Mount the media (.ISO file) and try to install again.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Unable to install sql server 2012 eval edition with the downloaded files

    Error which I get when i try to launch the installer 
    I  have downloaded them in a single folder 
    Note : windows os is win 7 with sp1
    Mudassar

    TITLE: Microsoft SQL Server 2012 Service Pack 1 Setup
    The following error has occurred:
    Unable to open Windows Installer file 'C:\Users\mabdu1\Downloads\SQLServer2012SP1-FullSlipstream-ENU-x64\x64\setup\sql_engine_core_inst_msi\sql_engine_core_inst.msi'.
    Windows Installer error message: The system cannot open the device or file specified.
    Click 'Retry' to retry the failed action, or click 'Cancel' to cancel this action and continue setup.
    For help, click: http://go.microsoft.com/fwlink?
    LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3000.0&EvtType=0xDC80C325
    BUTTONS:
    &Retry
    Cancel
    Now I am getting this error after I downloaded 2012 sp1 iso and extracted it to do the installation
    Mudassar

  • Unable to run sql server 2012 setup

    Hi All,
      I installed SharePoint 2013 on Application Server and Database(Sql Server 2012) on another server. But for reporting application I need to install some components of SQL on Application Server as well. When I try to run the installer it crashes and
    shows this below dialog box. 
    When I debug this I get the below error.
    I saw some suggestions saying it won't work with Remote Desktop so directly connected the monitor to the server and tried to install but nothing works again. Let me know if I am doing anything wrong.
    Thanks,

    Hi,
    Did you install the .net framework 4.0?
    Meanwhile, for the SQL issue, i think you may ask in SQL forums:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/home?category=sqlserver
    Regards.
    Vivian Wang

  • Unable to install SQL Server 2012 Developer

    I have a problem with installing SQL Server 2012 (no matter which edition I choose). Installation usually runs well, but near the end shows up an error:
    TITLE: Microsoft SQL Server 2012 Service Pack 1 Setup
    The following error has occurred:
    Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
    For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xD15B4EB2%25400x4BDAF9BA%25401306%254026
    BUTTONS:
    OK
    The help link points to not-existing article on MSDN page. After I click OK button, the installation reaches it's end and shows up another, which tells, that Database Engine Services, Reporting Services - Native, Data Quality Services, Full-Text and Semantic
    Extractions for Search and SQL Server Replication failed to install.
    After that I am able to start, for example SQL Management Studio, but cannot connect to database. Also services of SQL Server (Server, Server Agent, Full-text Filter, Reporting Services) are stopped and I am not able to start them manually (any try throws an
    error: "The request failed or the service did not respond in a timely fashion. Consult the event log or other applicable error logs for details").
    I tried complete reinstalling of SQL Server, cleaning registry entries, different editions of that software - none method helped. Also, I tried the .iso images of installation media on other computers - it worked well and installed without any errors. My OS
    is Windows 8.1 x64.

    Hello,
    Please uninstall SQL server completely from add remove program.Make sure you uninstall it completely
    Now right click on Setup.exe file which is there in SQL Server installable and select run as administrator to start installation.
    On page where you are asked to provide startup account for SQL Server service select NT Authority\System or Local System account.
    This issue is basically after installation SQL Server is not able to bring online database services using account which you selected .Local system account will allow it to come online
    After installation change startup account to domain account with least privilege
    Hope this helps
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Unable to uninstall sql server 2012 from Windows 7(ultimate) 64-bit SP1 version.

    I am trying to install sql sever 2012 on my m/c but it's giving me error after partial installation.
    Now I have successfully installed Sql Server 2008 R2 on my machine but when I am trying to uninstall 2012 sql server from my machine its giving an error regarding unsupported OS. However as mentioned earlier I have Windows 2007 Ultimate SP1 (64-bit) installed
    on my machine which is included in valid platform for sql server 2012. Also I installed visual studio 2013 on my machine but it existed with error SqlServer\LocalDB not installed.

    Hi pritamk,
    According to your error message, as other post, you can uninstall SQL Server from command line, inaddition, another workaround is that change the compatibility mode of setup.exe to Vista SP2, then run “Remove” option from the control panel. You can refer
    to the following steps.
    Browse to your SQL setup bootstrap folder, For SQL Server 2012, this is the path "C:\Program Files \Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\".
    Go to Setup.exe file and right click on Setup.exe. Then go to properties and click on "Compatibility" tab. Under "Compatibility mode", click on Run this program in compatibility mode for "Windows Vista (Service Pack 2)". Then Click on "Apply" then "OK".
    After that go to control panel -> Programs and Features -> and remove SQL Server 2012
    There is similar issue about uninstalling SQL Server 2012 RC0 from control panel. You can review the following post.
    https://connect.microsoft.com/SQLServer/feedback/details/707706/unable-to-uninstall-sql-server-2012-rc0-from-control-panel
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Unable to install SQL server 2012 on windows 7 64bit

    Overall summary:
    Final result: Failed: see details below
    Exit code (Decimal): -2057043966
    Exit facility code: 1380
    Exit error code: 2
    Exit message: There was a failure to calculate the applicability of setting ALLINSTANCES.
    Start time: 2015-03-17 21:43:13
    End time: 2015-03-17 21:43:34
    Requested action: LandingPage
    Exception help link: http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.2100.60&EvtType=0x4F2D2386%400xE9BC3D64&EvtType=0x4F2D2386%400xE9BC3D64
    Machine Properties:
    Machine name: ELKR-1214-1745
    Machine processor count: 4
    OS version: Windows 7
    OS service pack: Service Pack 1
    OS region: United States
    OS language: English (United States)
    OS architecture: x64
    Process architecture: 64 Bit
    OS clustered: No
    Package properties:
    Description: Microsoft SQL Server 2012
    ProductName: SQL Server 2012
    Type: RTM
    Version: 11
    SPLevel: 0
    Installation location: c:\afaeb7739e47ceedb4b5f79a1e14a784\x64\setup\
    Installation edition:
    User Input Settings:
    ACTION: LandingPage
    CONFIGURATIONFILE:
    ENU: true
    HELP: false
    INDICATEPROGRESS: false
    QUIET: false
    QUIETSIMPLE: false
    UIMODE: AutoAdvance
    X86: false
    Configuration file: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20150317_214254\ConfigurationFile.ini
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file: The rule result report file is not available.
    Exception summary:
    The following is an exception stack listing the exceptions in outermost to innermost order
    Inner exceptions are being indented
    Exception type: Microsoft.SqlServer.Chainer.Infrastructure.CalculateSettingApplicabilityException
    Message:
    There was a failure to calculate the applicability of setting ALLINSTANCES.
    HResult : 0x85640002
    FacilityCode : 1380 (564)
    ErrorCode : 2 (0002)
    Data:
    SettingId = ALLINSTANCES
    WatsonData = Microsoft.SqlServer.Chainer.Infrastructure.CalculateSettingApplicabilityException@2
    HelpLink.EvtType = 0x4F2D2386@0xE9BC3D64
    DisableWatson = true
    Stack:
    at Microsoft.SqlServer.Chainer.Infrastructure.Setting.CalculateApplicability()
    at Microsoft.SqlServer.Chainer.Infrastructure.InputSettingService.CalculateAllSettings(Boolean chainerSettingOnly)
    at Microsoft.SqlServer.Configuration.SetupExtension.FinalCalculateSettingsAction.ExecuteAction(String actionId)
    at Microsoft.SqlServer.Chainer.Infrastructure.Action.Execute(String actionId, TextWriter errorStream)
    at Microsoft.SqlServer.Setup.Chainer.Workflow.ActionInvocation.ExecuteActionHelper(TextWriter statusStream, ISequencedAction actionToRun, ServiceContainer context)
    Inner exception type: Microsoft.SqlServer.Chainer.Infrastructure.CalculateSettingChangeabilityException
    Message:
    There was a failure to calculate the changeability of setting ALLINSTANCES.
    HResult : 0x85640003
    FacilityCode : 1380 (564)
    ErrorCode : 3 (0003)
    Data:
    SettingId = ALLINSTANCES
    WatsonData = Microsoft.SqlServer.Chainer.Infrastructure.CalculateSettingChangeabilityException@3
    Stack:
    at Microsoft.SqlServer.Chainer.Infrastructure.Setting.CalculateChangeabilityByUser()
    at Microsoft.SqlServer.Deployment.PrioritizedPublishing.PublishingQueue.CallQueuedSubscriberDelegates()
    at Microsoft.SqlServer.Deployment.PrioritizedPublishing.PublishingQueue.Publish(Publisher publisher)
    at Microsoft.SqlServer.Chainer.Infrastructure.Setting.CalculateApplicability()
    Inner exception type: Microsoft.SqlServer.Chainer.Infrastructure.UnableRetrieveConfigObjectForSettingException
    Message:
    Unable to retrieve a public configuration object type Microsoft.SqlServer.Configuration.SetupExtension.SlpInputSettings for setting ALLINSTANCES.
    HResult : 0x85640007
    FacilityCode : 1380 (564)
    ErrorCode : 7 (0007)
    Data:
    SettingId = ALLINSTANCES
    ConfigObjectType = Microsoft.SqlServer.Configuration.SetupExtension.SlpInputSettings
    WatsonData = Microsoft.SqlServer.Chainer.Infrastructure.UnableRetrieveConfigObjectForSettingException@7
    Stack:
    at Microsoft.SqlServer.Chainer.Infrastructure.SettingBridge.GetHostingObject()
    at Microsoft.SqlServer.Chainer.Infrastructure.SettingBridge.ChangeabilityByUser()
    at Microsoft.SqlServer.Deployment.PrioritizedPublishing.PublishingQueue.CallFunctionWhileAutosubscribing[T](SubscriberDelegate subscriberDelegate, Int32 priority, AutosubscribingFunctionDelegate`1 function)
    at Microsoft.SqlServer.Chainer.Infrastructure.Setting.CalculateChangeabilityByUser()
    Inner exception type: Microsoft.SqlServer.Chainer.Infrastructure.ChainerInfrastructureException
    Message:
    Unable to generate a temporary class (result=1).
    error CS0009: Metadata file 'c:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll' could not be opened -- 'File is corrupt'
    HResult : 0x84b10001
    FacilityCode : 1201 (4b1)
    ErrorCode : 1 (0001)
    Stack:
    at Microsoft.SqlServer.Chainer.Infrastructure.DataStoreService.DeserializeObject(String rootPath, Type type, String elementXPath)
    at Microsoft.SqlServer.Chainer.Infrastructure.DataStoreService.DeserializeObject(String rootPath, Type type)
    at Microsoft.SqlServer.Chainer.Infrastructure.SettingBridge.GetHostingObject()
    Inner exception type: System.InvalidOperationException
    Message:
    Unable to generate a temporary class (result=1).
    error CS0009: Metadata file 'c:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll' could not be opened -- 'File is corrupt'
    Stack:
    at System.Xml.Serialization.Compiler.Compile(Assembly parent, String ns, XmlSerializerCompilerParameters xmlParameters, Evidence evidence)
    at System.Xml.Serialization.TempAssembly.GenerateAssembly(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, Evidence evidence, XmlSerializerCompilerParameters parameters, Assembly assembly, Hashtable assemblies)
    at System.Xml.Serialization.TempAssembly..ctor(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, String location, Evidence evidence)
    at System.Xml.Serialization.XmlSerializer.GenerateTempAssembly(XmlMapping xmlMapping, Type type, String defaultNamespace)
    at System.Xml.Serialization.XmlSerializer..ctor(Type type, String defaultNamespace)
    at Microsoft.SqlServer.Chainer.Infrastructure.DataStoreService.DeserializeObject(String rootPath, Type type, String elementXPath)

    Hi,
    I would like to add that if you see summary.txt file you would see
    Message:
    Unable to generate a temporary class (result=1).
    error CS0009: Metadata file 'c:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll' could not be opened -- 'File is corrupt'
    HResult : 0x84b10001
    FacilityCode : 1201 (4b1)
    ErrorCode : 1 (0001)
    You can see file is corrupt. So either you have to download the setup file again or there can be chance that Antivirus caused some issue.
    Plus if you see starting of summary.txt you could see
    Requested action: LandingPage
    The error message came while landing page was being loaded/or was in action so again I think it is some thing related to corrupt media or antivirus.
    Please
    1. Download ISO file again and extract using WINRAR, don't use Winzip
    2. Disable Antivirus.
    3. Make a new folder and extract installable there.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Unable to upgrade SQL Server 2008 R2 to SQL Server 2012 SP1

    I'm encountering error after error, after successfully installing the upgrade advisor (which took some doing) and running it with essentially no warnings/errors (the one warning was on the connection strings, as I recall -- and all of the warnings had a
    "fix after" status.
    First failure involved SSRS and the inability to create the "managed account". Backed out the upgrade using http://sqldbanotes.blogspot.com/2013/10/how-to-fix-failed-in-place.html
    Now the failure involves SSAS and unable to connect to analysis services with name MSSQLServerOLAPService.  That is the logical name for the service, although it shows up as just MSSQLServer when looking at it in the services list.  I tried
    setting the service account to a local account as  well as to Local System -- did not make a difference, the upgrade couldn't apparently find it regardless.
    Has anybody successfully done an in place upgrade from SQL Server 2008 R2 to SQL Server 2012?

    Hi Bob,
    Thanks for your post and I am glad to hear that the issue is resolved. Thanks for you posting a reply to share your solution and I had marked it as answer. That way, other community members could benefit from your sharing.
    Regards,
    Sofiya Li
    If you have any feedback on our support, please click here.
    Sofiya Li
    TechNet Community Support

  • Unable to install SQL Server 2012 Standard: Error code 0x851A0019

    Hi All,
    I am trying to install sql server 2012 standard edition on windows server 2008R2 but at the end of the installation it is giving me the following error message: 
    "The following error has occurred:
    Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes."
    And in the log file I got the following error message:
    Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred during the setup process of the feature.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A0019
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.2100.60&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4025&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4025
    (I have posted part of the log file)
    Need your help to resolve this issue.
    Thanks,
    MKNayeem

    Hi,
    Thanks for your reply.
    I have already followed that article. I have changed the user to local account user, but it did not work.
    Like you said the sql server is installed, but it is not starting the services. Following is the error log file message:
    2015-03-16 10:12:15.27 Server      Microsoft SQL Server 2012 - 11.0.2100.60 (X64) 
    Feb 10 2012 19:39:15 
    Copyright (c) Microsoft Corporation
    Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    2015-03-16 10:12:15.27 Server      (c) Microsoft Corporation.
    2015-03-16 10:12:15.27 Server      All rights reserved.
    2015-03-16 10:12:15.29 Server      Server process ID is 5724.
    2015-03-16 10:12:15.29 Server      System Manufacturer: 'VMware, Inc.', System Model: 'VMware Virtual Platform'.
    2015-03-16 10:12:15.29 Server      Authentication mode is MIXED.
    2015-03-16 10:12:15.29 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\Log\ERRORLOG'.
    2015-03-16 10:12:15.29 Server      The service account is 'NT Service\MSSQL$BNG1SECISO'. This is an informational message; no user action is required.
    2015-03-16 10:12:15.29 Server      Registry startup parameters: 
    -d C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\DATA\master.mdf
    -e C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\Log\ERRORLOG
    -l C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\DATA\mastlog.ldf
    2015-03-16 10:12:15.29 Server      Command Line Startup Parameters:
    -s "BNG1SECISO"
    2015-03-16 10:12:15.57 Server      SQL Server detected 2 sockets with 1 cores per socket and 1 logical processors per socket, 2 total logical processors; using 2 logical processors based on SQL Server licensing. This is an informational message;
    no user action is required.
    2015-03-16 10:12:15.57 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2015-03-16 10:12:15.57 Server      Detected 16383 MB of RAM. This is an informational message; no user action is required.
    2015-03-16 10:12:15.57 Server      Using conventional memory in the memory manager.
    2015-03-16 10:12:15.67 Server      This instance of SQL Server last reported using a process ID of 2452 at 16-03-2015 07:03:13 (local) 16-03-2015 01:33:13 (UTC). This is an informational message only; no user action is required.
    2015-03-16 10:12:15.67 Server      Node configuration: node 0: CPU mask: 0x0000000000000003:0 Active CPU mask: 0x0000000000000003:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2015-03-16 10:12:15.69 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2015-03-16 10:12:15.69 Server      Software Usage Metrics is disabled.
    2015-03-16 10:12:15.70 spid6s      Starting up database 'master'.
    2015-03-16 10:12:15.78 Server      CLR version v4.0.30319 loaded.
    2015-03-16 10:12:15.82 Server      Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
    2015-03-16 10:12:17.36 spid6s      Error: 824, Severity: 24, State: 2.
    2015-03-16 10:12:17.36 spid6s      SQL Server detected a logical consistency-based I/O error: incorrect pageid (expected 1:377; actual 261:2228225). It occurred during a read of page (1:377) in database ID 1 at offset 0x000000002f2000 in
    file 'C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\DATA\master.mdf'.  Additional messages in the SQL Server error log or system event log may provide more detail. This is a severe error condition that threatens database integrity and
    must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online.
    Thanks
    MKNayeem

Maybe you are looking for

  • My iMac freezes at start. I just get the gray screen and apple symbol.

    I turned it off and on and then nothing. Just gray screen and spinning wheel. I also see the mouse pointer.

  • Change Data Capture, insert+delete instead of update

    Hello everyone, I'm having an odd issue, that I need some help understanding.  I've got a number of tables enabled for Change Data Capture, but I've noticed some behavior that doesn't make sense. I am utilizing CDC to populate an ODS via SSIS package

  • Purpose of "Refresh Organizational Environment"

    Hi, I have a workflow which is working fine in development. But in quality, when the approver clicks on Approve, it is showing error "No administrator found for the task". From sdn, I found that we have to "Refresh Organizational Environement" to sol

  • Client Copy Error - ERROR: Type 'F' user exit with SYS_ERROR:

    Hello, We want to create a client copy from client 001 to clien 715. The client copy test runs successfully. The following error occurs in normal mode of client copy. 1 ETA028XClient copy from "03.11.2010" "17:12:43" 1 ETA029 System ID...............

  • Audio Sync issues - PLEASE help

    I have created many videos in iMovie '09.    I have used the HD setting for them, 1280x720 even though they were shot in SD format.  I have uploaded them to YouTube and they all view just fine.  They all viewed just fine in Quicktime version 7.6.6, a