Quantcast
Channel: SQL Server Setup & Upgrade forum
Viewing all 7696 articles
Browse latest View live

A few transactional log shipping and DB Backup best practices questions

$
0
0

Hi all,

Disclaimer: Please forgive me on these questions (I feel that they are rather core to how backups and log shipping works in SQL and I should have gotten a better understanding of them by reading through MSDN documents, however my reading through the relative material just resulted in more confusion and questions)

I am trying to understand what the recommended approach is for a scenario where I am maintaining a hot backup of our DBs but at the same would like to be able to restore the DBs on our staging or development environments on demand. Let me try to give a little background on my current configuration:

We currently have about 15 databases (all SQL 2008 R2) we have enabled transactional log shipping on these databases to our secondary location. In addition we have maintenance plans created for weekly fully backups and daily differential backups on these databases.

Question 1: I currently use a separate job for each DB for backing up, copying, and finally restoring log shipping (this results in 3x15 about 45 jobs) Is this the recommended approach ? (It seems like at the least the copy operation should be done with a single job rather then multiple jobs to optimize the network usage as the traffic is going to a secondary data center at a different physical location), but if I use this approach and then go and delete one of the log shipping configurations wouldn't this also remove the copy job which will effect all DBs ?

Question 2: I have setup maintenance plans which take weekly full DB backups and daily differential backups, please help me understand what setting the expiration date for these plans do. Reading the MSDN documentation it say this will determine when the file will be overwritten however I am confused by this statement, in summary I am trying to understand how SQL determines which full backup file the differential backups are based off of and when it is actually safe to delete a file.  For example if I take a full backups every Sunday at 1:00 AM, and I have a different scheduled task which takes differential backups daily at 1:00 AM how does differential job know the which sunday full backup at 1:00 AM completed successfully (say you kept your bkp files around for 3 weeks you would end up with 3 .bkp files to choose from) and that it should be using that file as what it should base itself off of ?

Question 3: Building onto question 2, when using a once a week full backup and daily differential backups, is each daily differential backup cumulative of all the changes from previous differential backups or do you need all differential backups to that day to be able to bring a DB up to date ? ( so if I want to restore to a point in time on Wednesday do I need the full back up from last Sunday plus the differential backups from Monday and Tuesday or do I just need the differential backup from Tuesday ?)

Question 4: Because I enabled transaction log shipping it is my understanding that I should NOT be using a transactional log backup maintenance task in addition to this approach (there is also a note in the log shipping configuration which says "If you backup the transaction logs of this database with any other job or maintenance plan, Management studio will not be able to restore the backups on the secondary sever instances"). So given this how does one go about creating an up to date replica of our DB for staging or development use ? My assumption is you would take the most recent full backup then figure out which differential backups to use, however after that what do you do about which transaction logs you should be applying (it seems that the transaction logs generated for log shipping do not really line up with the differential backups created with the maintenance plan) ?

Thank you in advance for guidance.



Unicode required to support English and Canadian French?

$
0
0

Hi all,

 

Simple question hopefully. We are installing an app that requires Canadian English and Canadian French language support. When installing SQL server:

1) Do we require UNICODE?

2) What collation should we specify for the SQL server to support both languages in our database?

3) If our SQL server has been installed withdefault settings/collation, if we create the db in (whatever collation you specify in #2 above), will there be any behavioural problems for sorting, whatever?

 

Thanks, i guess i may not understand the use of unicode/collations that well...yet.

 

SQL Server Express 2014 - Server Name

$
0
0

Hi Guys,

I just now installed the free edition of SQL Server 2014 (Management Studio only edition).

During installation I was not allowed to provide an instance name. Post installation when I am trying to connect the server using the management  studio it fails consistently.

I have tried using LocalDB, (local), SQLExpress and all other combinations (machine\LocalDB) etc.

When I open the SQL Config Manager there "SQL Server Services" has no entries.

Can someone help me in getting the server name to connect to?

Regards,


HTH, Krishnan

if i have the public rights on sql server can i able to change the sql log locaton ?

$
0
0

Hi All,

I having public rights on sql server and I want to change the sql log location from old location to new location. can I do it with public rights ?

Thanks,


rup

SQL Server 2008 on windows 8

$
0
0

Hi Experts,

I want to install SQL Server 2008 Enterprise edition 32 bit on Windows 8 64 bit, I am not able to install the SQL, i tried to do in command prompt by using the below syntax but throws and error.

The arguement

'/Q/ACTION=INSTALL/FEATURES=SQL,AS,RS,IS,TOOLS/INSTALLSHARDWOWDIR/PID=XXXXX-XXXXX-XXXXX-XXXXX-XXXX is formatted incorrectly, The delimiter'=' is missing.

error code 0x84B40006.

Please suggest on the above issue.

Thank you all in advance.

getting problem while installing Sql Server 2012

$
0
0

I am using Windows 8 in my system. I am trying to install Sql Server 2012 in my system .

But i am getting following error in the final.

The required MSI package 'D:\SQL Server 2012\x86\setup\sql_engine_core_shared_msi' doesn't exist.

Please, help me quickly.

Urgent, Please help me in this problem.I am getting problem while installation

$
0
0

I am using Windows 8 in my system. I am trying to install Sql Server in system . Everything is fine, but finally  when i click on install button i am getting the following error .

please help me quickly. I well be thankful to you.

Failure installing Sql Server 2012 x64

$
0
0

Hello,

I am trying to install Sql Server 2012 x64 with SP1, but I am running into the following error(s). It occurs almost immediately after I run "setup.exe":

<error>

TITLE: SQL Server Setup failure.
------------------------------

SQL Server Setup has encountered the following error:

There was a failure to initialize a setting from type Microsoft.SqlServer.Configuration.SetupExtension.InstallSharedDirSetting.

Error code 0x8564000E.

For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft%20SQL%20Server&EvtSrc=setup.rll&EvtID=50000&EvtType=0x9F9575BA%25400x38AD03A5

------------------------------
BUTTONS:

OK
------------------------------

</error>

Any ideas what else I can do to get past this?



how insert smalldatetime variable into table by sqlCommand?

$
0
0

hi to all,

we want insert a value of smalldatetime variable into a table,but have problme,pls help us.

create table Test2
    (
        name varchar(100),
        b_date smalldatetime
    )

Declare @name varchar(100)='SAM2'
Declare @date smalldatetime='2013-08-24 00:00:00'
Declare @SQL_command varchar(max)

set @SQL_command=
    'insert into Test2
        (
            name,
            b_date
        )
    VALUES
        (
            '+CAST(@name as varchar(100))+',
            '+CAST(@date as varchar(25))+'
        )'

Exec(@SQL_command)    
        
select *
from Test2   


Result:

Msg 102, Level 15, State 1, Line 9
Incorrect syntax near '24'.

(1 row(s) affected)

SQL 2012 install fails with 'Object reference not set to an instance of an object.'

$
0
0

Hi, I'm trying to install SQL 2012 RTM Enterprise on a Windows 2008 R2 single node cluster.

The installer starts goes through some checks and then fails with the message 'Object reference not set to an instance of an object.' It happens while the small 'wait while...' dialog box is showing, another window pops up briefly (I think the feature selection window - can't really tell as it doesn't draw before disappearing). Then the ‘Object reference not set’ message comes up.

From the summary log file..

Overall summary:

  Final result:                 Failed: see details below

  Exit code (Decimal):          -2147467261

  Exit facility code:           0

  Exit error code:              16387

  Exit message:                 Object reference not set to an instance of an object.

  Start time:                   2012-09-26 08:52:53

  End time:                     2012-09-26 08:54:08

  Requested action:             InstallFailoverCluster

  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=0x9AF1AE5E%400x44A889F9&EvtType=0x9AF1AE5E%400x44A889F9

Exception summary:

The following is an exception stack listing the exceptions in outermost to innermost order

Inner exceptions are being indented

Exception type: System.NullReferenceException

   Message:

       Object reference not set to an instance of an object.

   Data:

     HelpLink.EvtType = 0x9AF1AE5E@0x44A889F9

     DisableWatson = true

   Stack:

       at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.ShouldRuleRun(Rule rule)

       at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.IsRuleSkipped(Rule rule)

       at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.LoadRule(String ruleId, List`1 ruleProperties, XmlSchema ruleSchema, XmlElementParserFactory elementParser)

       at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.LoadRules(IEnumerable`1 ruleIds)

       at Microsoft.SqlServer.Configuration.InstallWizard.RunRuleProgressController.Initialize()

I have rebooted, tried different media, tried uninstalling the setup files and rerunning but always get the same result.

Any help would be gratefully accepted.

Thanks,

Bruce.

Sql Server Express Fails - unable to save file

$
0
0
I am trying to install the free SQL Server Express application.  It had me first install some application installer.  The screen, when trying to do the install, says "Initializing" and then prompts me to save a file (which I am assuming is the Express package).  After I select a location, it thinks for a little bit and then I get "unable to save file" and prompts me for a new location.  I have administrator privileges and am trying to save it to a non-compressed drive. I could not find anything in the forums specific to this problem.  Any clues?

error on install: Performance counter registry hive consistency check - Status:Failed

$
0
0

Hi, I'm tryng to install sql server 2008 in win vista and in the System Configuration Check, item: Performance counter registry hive consistency check has the status FAILED  all the others items has PASSED and the setup stops here theonly option is CANCEL. Thus anyone knows the possible problem and resolution to this?

 

best regards

Uninstall SQL 2005 errors

$
0
0

Hi all,

I'm trying to uninstall sql 2005 CTP, so that I can install the standard version... but I keep on getting a whole range of errors.... I can't uninstall the ctp, and I can't upgrade with the standard version...

 This is the errorcode I got

TITLE: Microsoft SQL Server 2005 Setup
------------------------------

The setup has encountered an unexpected error while Setting Internal Properties. The error is: Fatal error during installation.


For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.06&EvtSrc=setup.rll&EvtID=1603&EvtType=sqlca%5csqlcax.cpp%40SetInstanceProperty%40SetInstanceProperty%40x534

------------------------------
BUTTONS:

OK
------------------------------

Any Ideas?

SQL 2012 install fails with 'Object reference not set to an instance of an object" On windows 8.1 Hyper-V

$
0
0

Hi All,  

Could you please help me here? On my Laptop which is running on windows 8.1 Operation system, I enabled the Hyper-V client feature and setup the Windows Fail-over Clustering using Windows 2012 Standard Edition. So, there are three machines which are running on the Hyper-V. Below are the machine details;

1st machine - Working as Domain controller and its name is "ACONDomainGroup" and allocated to 1GB RAM to use.

2nd machine - Working as Node1 and its name is "AconNODE1W2K12STD" and allocated to 2.5GB RAM to use.

3rd machine - Working as Node1 and its name is "AconNODE1W2K12STD" and allocated to 1.5GB RAM to use.

and the windows virtual cluster name is "AconWinCLTR". While I am doing the SQL Cluster Installation, I am getting below mentioned error. all systems have 4.5 .net installed. May you please guide me where and what i am missing to complete sql clustering.....

--------------------------------------------------------------------------------------------------------------

  Update Source:                 MU


User Input Settings:
  ACTION:                        InstallFailoverCluster
  AGTDOMAINGROUP:                <empty>
  AGTSVCACCOUNT:                 <empty>
  AGTSVCPASSWORD:                <empty>
  ASBACKUPDIR:                   Backup
  ASCOLLATION:                   Latin1_General_CI_AS
  ASCONFIGDIR:                   Config
  ASDATADIR:                     Data
  ASLOGDIR:                      Log
  ASPROVIDERMSOLAP:              1
  ASSERVERMODE:                  MULTIDIMENSIONAL
  ASSVCACCOUNT:                  <empty>
  ASSVCPASSWORD:                 <empty>
  ASSVCSTARTUPTYPE:              Automatic
  ASSYSADMINACCOUNTS:            <empty>
  ASTEMPDIR:                     Temp
  COMMFABRICENCRYPTION:          0
  COMMFABRICNETWORKLEVEL:        0
  COMMFABRICPORT:                0
  CONFIGURATIONFILE:             
  ENU:                           true
  ERRORREPORTING:                false
  FAILOVERCLUSTERDISKS:          <empty>
  FAILOVERCLUSTERGROUP:          
  FAILOVERCLUSTERIPADDRESSES:    <empty>
  FAILOVERCLUSTERNETWORKNAME:    <empty>
  FEATURES:                      
  FILESTREAMLEVEL:               0
  FILESTREAMSHARENAME:           <empty>
  FTSVCACCOUNT:                  <empty>
  FTSVCPASSWORD:                 <empty>
  HELP:                          false
  IACCEPTSQLSERVERLICENSETERMS:  false
  INDICATEPROGRESS:              false
  INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
  INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
  INSTALLSQLDATADIR:             <empty>
  INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
  INSTANCEID:                    <empty>
  INSTANCENAME:                  <empty>
  ISSVCACCOUNT:                  NT AUTHORITY\Network Service
  ISSVCPASSWORD:                 <empty>
  ISSVCSTARTUPTYPE:              Automatic
  MATRIXCMBRICKCOMMPORT:         0
  MATRIXCMSERVERNAME:            <empty>
  MATRIXNAME:                    <empty>
  PID:                           *****
  QUIET:                         false
  QUIETSIMPLE:                   false
  RSINSTALLMODE:                 DefaultNativeMode
  RSSHPINSTALLMODE:              DefaultSharePointMode
  RSSVCACCOUNT:                  <empty>
  RSSVCPASSWORD:                 <empty>
  RSSVCSTARTUPTYPE:              Automatic
  SAPWD:                         <empty>
  SECURITYMODE:                  <empty>
  SQLBACKUPDIR:                  <empty>
  SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
  SQLSVCACCOUNT:                 <empty>
  SQLSVCPASSWORD:                <empty>
  SQLSYSADMINACCOUNTS:           <empty>
  SQLTEMPDBDIR:                  <empty>
  SQLTEMPDBLOGDIR:               <empty>
  SQLUSERDBDIR:                  <empty>
  SQLUSERDBLOGDIR:               <empty>
  SQMREPORTING:                  false
  UIMODE:                        Normal
  UpdateEnabled:                 true
  UpdateSource:                  MU
  X86:                           false

  Configuration file:            C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140420_052344\ConfigurationFile.ini

Rules with failures:

Global rules:

There are no scenario-specific rules.

Rules report file:               C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140420_052344\SystemConfigurationCheck_Report.htm

Exception summary:
The following is an exception stack listing the exceptions in outermost to innermost order
Inner exceptions are being indented

Exception type: System.NullReferenceException
    Message: 
        Object reference not set to an instance of an object.
    HResult : 0x80004003
    Data: 
      HelpLink.EvtType = 0x9AF1AE5E@0x44A889F9
      DisableWatson = true
    Stack: 
        at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.ShouldRuleRun(Rule rule)
        at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.IsRuleSkipped(Rule rule)
        at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.LoadRule(String ruleId, List`1 ruleProperties, XmlSchema ruleSchema, XmlElementParserFactory elementParser)
        at Microsoft.SqlServer.Configuration.RulesEngineExtension.RulesEngine.LoadRules(IEnumerable`1 ruleIds)
        at Microsoft.SqlServer.Configuration.InstallWizard.RunRuleProgressController.Initialize()

Service Master Key could not be decrypted using one of its encryptions. See sys.key_encryptions for details.

$
0
0
html,body{padding:0;margin:0;font-family:Verdana,Geneva,sans-serif;background:#fff;}html{font-size:100%}body{font-size:.75em;line-height:1.5;padding-top:1px;margin-top:-1px;}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em}h3{font-size:1.16em}h4{font-size:1em}h5{font-size:.83em}h6{font-size:.7em}p{margin:0 0 1em;padding:0 .2em}.t-marker{display:none;}.t-paste-container{;left:-10000px;width:1px;height:1px;overflow:hidden}ul,ol{padding-left:2.5em}a{color:#00a}code, pre{font-size:1.23em}
I get this message on two different machines installing SQL2014 developer edition, a Windows 7 and a Windows 8 machine. Both machines have SQL2005 through SQL2012 developer machines installed and working great. I have tried uninstalling all SQL2014 stuff and installing again making sure I was running as an Administrator to no avail. 

How do I look at sys.key_encryptionswhen the server will not start to finish installation?

The links in the log only provide the  "We're Sorry" message.

This is the first error dialog info

TITLE: Microsoft SQL Server 2014 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=12.0.2000.8&EvtType=0xD15B4EB2%25400x4BDAF9BA%25401306%254026


The SQL Server error log has the message in the title.

2014-04-04 17:02:17.49 Server      Microsoft SQL Server 2014 - 12.0.2000.8 (X64) 
 Feb 20 2014 20:04:26 
 Copyright (c) Microsoft Corporation
 Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)

2014-04-04 17:02:17.49 Server      UTC adjustment: -4:00
2014-04-04 17:02:17.49 Server      (c) Microsoft Corporation.
2014-04-04 17:02:17.49 Server      All rights reserved.
2014-04-04 17:02:17.49 Server      Serverprocess ID is 9236.
2014-04-04 17:02:17.49 Server      System Manufacturer: 'Hewlett-Packard', System Model: 'HP EliteBook8760w'.
2014-04-04 17:02:17.49 Server      Authentication mode is MIXED.
2014-04-04 17:02:17.49 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Log\ERRORLOG'.
2014-04-04 17:02:17.49 Server      The service account is 'NT Service\MSSQL$SQL2014'. This is an informational message; no user action is required.
2014-04-04 17:02:17.49 Server      Registry startup parameters: 
  -d C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\master.mdf
  -e C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\Log\ERRORLOG
  -l C:\Program Files\Microsoft SQL Server\MSSQL12.SQL2014\MSSQL\DATA\mastlog.ldf
2014-04-04 17:02:17.49 Server      Command Line Startup Parameters:
  -s "SQL2014"
  -m "SqlSetup"
  -Q
  -q "SQL_Latin1_General_CP1_CI_AS"
  -T 4022
  -T 4010
  -T 3659
  -T 3610
  -T 8015
2014-04-04 17:02:17.79 Server      SQL Server detected 1 sockets with 4 cores per socket and 8 logical processors per socket, 8 total logical processors; using 8 logical processors based on SQL Server licensing. This is an informational message; no user action is required.
2014-04-04 17:02:17.79 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
2014-04-04 17:02:17.79 Server      Detected 8142 MB of RAM. This is an informational message; no user action is required.
2014-04-04 17:02:17.80 Server      Using conventional memory in the memory manager.
2014-04-04 17:02:17.92 Server      Default collation: SQL_Latin1_General_CP1_CI_AS (us_english1033)
2014-04-04 17:02:17.95 Server      Perfmoncounters for resource governor pools and groups failed to initialize and are disabled.
2014-04-04 17:02:17.96 Server      Query Store settings initialized with enabled = 1, 
2014-04-04 17:02:17.97 Server      The maximum number of dedicated administrator connections for this instance is '1'
2014-04-04 17:02:17.97 Server      This instance of SQL Server last reported using a process ID of 8760 at 4/4/2014 5:02:08 PM (local) 4/4/2014 9:02:08 PM (UTC). This is an informational message only; no user action is required.
2014-04-04 17:02:17.97 Server      Node configuration: node 0: CPU mask: 0x00000000000000ff:0 Active CPU mask: 0x00000000000000ff:0. This message provides a description of the NUMA configuration for this computer. This is an informational message only. No user action is required.
2014-04-04 17:02:17.97 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.
2014-04-04 17:02:18.00 Server      Database Mirroring Transport is disabled in the endpoint configuration.
2014-04-04 17:02:18.00 spid7s      Warning ******************
2014-04-04 17:02:18.00 spid7s      SQL Server started in single-user mode. This an informational message only. No user action is required.
2014-04-04 17:02:18.01 spid7s      Starting up database 'master'.
2014-04-04 17:02:18.02 Server      Software Usage Metrics is disabled.
2014-04-04 17:02:18.07 Server      CLR version v4.0.30319 loaded.
2014-04-04 17:02:18.11 spid7s      8 transactions rolled forward in database 'master' (1:0). This is an informational message only. No user action is required.
2014-04-04 17:02:18.24 spid7s      0 transactions rolled back in database 'master' (1:0). This is an informational message only. No user action is required.
2014-04-04 17:02:18.25 spid7s      Recovery is writing a checkpoint in database 'master' (1). This is an informational message only. No user action is required.
2014-04-04 17:02:18.26 Server      Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
2014-04-04 17:02:18.34 spid7s      Service Master Key could not be decrypted using one of its encryptions. See sys.key_encryptions for details.
2014-04-04 17:02:18.40 spid7s      SQL Server Audit is starting the audits. This is an informational message. No user action is required.
2014-04-04 17:02:18.40 spid7s      SQL Server Audit has started the audits. This is an informational message. No user action is required.
2014-04-04 17:02:18.44 spid7s      SQL Trace ID 1 was started by login "sa".
2014-04-04 17:02:18.44 spid7s      Server name is 'TOMGROSZKO-HP\SQL2014'. This is an informational message only. No user action is required.
2014-04-04 17:02:18.46 spid16s     Error: 17190, Severity: 16, State: 1.
2014-04-04 17:02:18.46 spid16s     Initializing the FallBackcertificate failed with error code: 1, state: 20, error number: 0.
2014-04-04 17:02:18.46 spid16s     Unable to initialize SSL encryption because a valid certificate could not be found, and it is not possible to create a self-signed certificate.
2014-04-04 17:02:18.46 spid16s     Error: 17182, Severity: 16, State: 1.
2014-04-04 17:02:18.46 spid16s     TDSSNIClientinitialization failed with error 0x80092004, status code 0x80. Reason: Unable to initialize SSL support. Cannot find object or property. 
2014-04-04 17:02:18.46 spid16s     Error: 17182, Severity: 16, State: 1.
2014-04-04 17:02:18.46 spid16s     TDSSNIClientinitialization failed with error 0x80092004, status code 0x1. Reason: Initialization failed with an infrastructure error. Check for previous errors. Cannot find object or property. 
2014-04-04 17:02:18.46 spid16s     Error: 17826, Severity: 18, State: 3.
2014-04-04 17:02:18.46 spid16s     Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log.
2014-04-04 17:02:18.46 spid16s     Error: 17120, Severity: 16, State: 1.
2014-04-04 17:02:18.46 spid16s     SQL Server could not spawn FRunCommunicationsManagerthread. Check the SQL Server error log and the Windows event logs for information about possible related problems.


And a copy of the install log.

Overall summary:
  Final result:                  Failed: see details below
  Exit code (Decimal):           -2061893606
  Start time:                    2014-04-04 16:23:39
  End time:                      2014-04-04 17:06:25
  Requested action:              Install

Setup completed with required actions for features.
Troubleshooting information for those features:
  Next step for RS:              Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Next step for SQLEngine:       Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Next step for DQ:              Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Next step for FullText:        Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Next step for Replication:     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.


Machine Properties:
  Machine name:                  TOMGROSZKO-HP
  Machine processor count:       8
  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

Product features discovered:
  Product              Instance             Instance ID                    Feature                                 Language             Edition              Version         Clustered  Configured
  SQL Server 2005      SQL2005              MSSQL.1                        Database Engine Services                1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005      SQL2005              MSSQL.1                        SQL Server Replication                  1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005      SQL2005              MSSQL.1                        Full-Text and Semantic Extractions for Search 1033                Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005      SQL2005              MSSQL.1                        SharedTools                             1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005      SQL2005              MSSQL.2                        Analysis Services                       1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005      SQL2005              MSSQL.3                        Reporting Services - Native             1033                 Developer Edition (64-bit) 9.00.1399.06    No         Yes       
  SQL Server 2005                                                          DTS                                     1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005                                                          Tools                                   1033                 Developer Edition (64-bit) 9.4.5069        No         Yes      
  SQL Server 2005                                                          ToolsClient                             1033                 Developer Edition (64-bit) 9.4.5069        No         Yes      
  SQL Server 2005                                                          ToolsClient\Connectivity                1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005                                                          ToolsDocument                           1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005                                                          ToolsDocument\BOL                       1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005                                                          ToolsDocument\Samples                   1033                 Developer Edition (64-bit) 9.4.5069        No         Yes       
  SQL Server 2005                                                          NS                                      1033                 Developer Edition (64-bit) 9.4.5069        No         Yes      
  SQL Server 2008 R2   SQL2008R2            MSSQL10_50.SQL2008R2           Database Engine Services                 1033                Developer Edition    10.51.2550.0    No         Yes       
  SQL Server 2008 R2   SQL2008R2            MSSQL10_50.SQL2008R2           SQL Server Replication                   1033                Developer Edition    10.51.2550.0    No         Yes       
  SQL Server 2008 R2   SQL2008R2            MSSQL10_50.SQL2008R2           Full-Text and Semantic Extractions for Search 1033                 Developer Edition    10.51.2500.0    No         Yes       
  SQL Server 2008 R2   SQL2008R2            MSAS10_50.SQL2008R2            Analysis Services                        1033                Developer Edition    10.51.2500.0    No         Yes       
  SQL Server 2008 R2   SQL2008R2            MSRS10_50.SQL2008R2            Reporting Services - Native              1033                Developer Edition    10.51.2550.0    No         Yes       
  SQL Server 2008 R2                                                       Management Tools - Basic                1033                 Developer Edition    10.51.2550.0    No         Yes       
  SQL Server 2008 R2                                                       Management Tools - Complete             1033                 Developer Edition    10.51.2500.0    No         Yes       
  SQL Server 2008 R2                                                       Client Tools Connectivity               1033                 Developer Edition    10.51.2500.0    No         Yes       
  SQL Server 2008 R2                                                       Client Tools Backwards Compatibility    1033                 Developer Edition    10.51.2500.0    No         Yes       
  SQL Server 2008 R2                                                       Client Tools SDK                        1033                 Developer Edition    10.51.2500.0    No         Yes       
  SQL Server 2008 R2                                                       Integration Services                    1033                 Developer Edition    10.51.2550.0    No         Yes       
  SQL Server 2012      SQL2012              MSSQL11.SQL2012                Database Engine Services                 1033                Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012      SQL2012              MSSQL11.SQL2012                SQL Server Replication                   1033                Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012      SQL2012              MSSQL11.SQL2012                Full-Text and Semantic Extractions for Search 1033                Developer Edition    11.1.3000.0     No         Yes       
  SQL Server 2012      SQL2012              MSSQL11.SQL2012                Data Quality Services                    1033                Developer Edition    11.1.3000.0     No         Yes       
  SQL Server 2012      SQL2012              MSAS11.SQL2012                 Analysis Services                       1033                 Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012      SQL2012              MSRS11.SQL2012                 Reporting Services - Native              1033                Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012                                                          Management Tools - Basic                1033                 Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012                                                          Management Tools - Complete             1033                 Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012                                                          Client Tools Connectivity               1033                 Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012                                                          Client Tools Backwards Compatibility    1033                 Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012                                                          Client Tools SDK                        1033                 Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012                                                          BIDS                                    1033                 Developer Edition    11.1.3128.0     No         Yes      
  SQL Server 2012                                                          SQL Server Data Tools - Business Intelligence for Visual Studio 2012 1033                                      11.1.3402.0     No         Yes       
  SQL Server 2012                                                          Integration Services                    1033                 Developer Edition    11.1.3128.0     No         Yes       
  SQL Server 2012                                                          LocalDB                                 1033                 Express Edition      11.1.3128.0     No         Yes      
  SQL Server 2012                                                          Master Data Services                    1033                 Developer Edition    11.1.3000.0     No         Yes       

Package properties:
  Description:                   Microsoft SQL Server 2014 
  ProductName:                   SQL Server 2014
  Type:                          RTM
  Version:                       12
  SPLevel:                       0
  Installation location:         C:\Downloads\SQL2014\SQL\x64\setup\
  Installation edition:          Developer

Product Update Status:
  None discovered.

User Input Settings:
  ACTION:                        Install
  ADDCURRENTUSERASSQLADMIN:      false
  AGTSVCACCOUNT:                 NT Service\SQLAgent$SQL2014
  AGTSVCPASSWORD:                *****
  AGTSVCSTARTUPTYPE:             Manual
  ASBACKUPDIR:                   C:\SQLData\MSSQL\SQL2014\Backup
  ASCOLLATION:                   Latin1_General_CI_AS
  ASCONFIGDIR:                   C:\Program Files\Microsoft SQL Server\MSAS12.SQL2014\OLAP\Config
  ASDATADIR:                     C:\SQLData\MSSQL\SQL2014\OLAP
  ASLOGDIR:                      C:\SQLData\MSSQL\SQL2014\OLAP
  ASPROVIDERMSOLAP:              1
  ASSERVERMODE:                  MULTIDIMENSIONAL
  ASSVCACCOUNT:                  NT Service\MSOLAP$SQL2014
  ASSVCPASSWORD:                 <empty>
  ASSVCSTARTUPTYPE:              Automatic
  ASSYSADMINACCOUNTS:            TomGroszko-HP\Tom Groszko
  ASTEMPDIR:                     C:\SQLData\MSSQL\SQL2014\OLAP
  BROWSERSVCSTARTUPTYPE:         Automatic
  CLTCTLRNAME:                   <empty>
  CLTRESULTDIR:                  <empty>
  CLTSTARTUPTYPE:                0
  CLTSVCACCOUNT:                 <empty>
  CLTSVCPASSWORD:                <empty>
  CLTWORKINGDIR:                 <empty>
  COMMFABRICENCRYPTION:          0
  COMMFABRICNETWORKLEVEL:        0
  COMMFABRICPORT:                0
  CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20140404_162339\ConfigurationFile.ini
  CTLRSTARTUPTYPE:               0
  CTLRSVCACCOUNT:                <empty>
  CTLRSVCPASSWORD:               <empty>
  CTLRUSERS:                     <empty>
  ENABLERANU:                    false
  ENU:                           true
  ERRORREPORTING:                true
  FEATURES:                      SQLENGINE, REPLICATION, FULLTEXT, DQ, AS, RS, RS_SHP, RS_SHPWFE, DQC, CONN, IS, BC, SDK, BOL, SSMS, ADV_SSMS, MDS
  FILESTREAMLEVEL:               3
  FILESTREAMSHARENAME:           SQL2014
  FTSVCACCOUNT:                  NT Service\MSSQLFDLauncher$SQL2014
  FTSVCPASSWORD:                 <empty>
  HELP:                          false
  IACCEPTSQLSERVERLICENSETERMS:  true
  INDICATEPROGRESS:              false
  INSTALLSHAREDDIR:              c:\Program Files\Microsoft SQL Server\
  INSTALLSHAREDWOWDIR:           c:\Program Files (x86)\Microsoft SQL Server\
  INSTALLSQLDATADIR:             <empty>
  INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
  INSTANCEID:                    SQL2014
  INSTANCENAME:                  SQL2014
  ISSVCACCOUNT:                  NT Service\MsDtsServer120
  ISSVCPASSWORD:                 <empty>
  ISSVCSTARTUPTYPE:              Automatic
  MATRIXCMBRICKCOMMPORT:         0
  MATRIXCMSERVERNAME:            <empty>
  MATRIXNAME:                    <empty>
  NPENABLED:                     0
  PID:                           *****
  QUIET:                         false
  QUIETSIMPLE:                   false
  ROLE:                          <empty>
  RSINSTALLMODE:                 DefaultNativeMode
  RSSHPINSTALLMODE:              SharePointFilesOnlyMode
  RSSVCACCOUNT:                  NT Service\ReportServer$SQL2014
  RSSVCPASSWORD:                 <empty>
  RSSVCSTARTUPTYPE:              Automatic
  SAPWD:                         *****
  SECURITYMODE:                  SQL
  SQLBACKUPDIR:                  C:\SQLData\MSSQL\SQL2014\Backup
  SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
  SQLSVCACCOUNT:                 NT Service\MSSQL$SQL2014
  SQLSVCPASSWORD:                <empty>
  SQLSVCSTARTUPTYPE:             Automatic
  SQLSYSADMINACCOUNTS:           TomGroszko-HP\Tom Groszko
  SQLTEMPDBDIR:                  C:\SQLData\MSSQL\SQL2014\Engine
  SQLTEMPDBLOGDIR:               <empty>
  SQLUSERDBDIR:                  C:\SQLData\MSSQL\SQL2014\Engine
  SQLUSERDBLOGDIR:               <empty>
  SQMREPORTING:                  true
  TCPENABLED:                    0
  UIMODE:                        Normal
  UpdateEnabled:                 true
  UpdateSource:                  MU
  USEMICROSOFTUPDATE:            false
  X86:                           false

  Configuration file:            C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20140404_162339\ConfigurationFile.ini

Detailed results:
  Feature:                       Management Tools - Complete
  Status:                        Passed

  Feature:                       Client Tools Connectivity
  Status:                        Passed

  Feature:                       Client Tools SDK
  Status:                        Passed

  Feature:                       Client Tools Backwards Compatibility
  Status:                        Passed

  Feature:                       Management Tools - Basic
  Status:                        Passed

  Feature:                       Reporting Services - Native
  Status:                        Failed: see logs for details
  Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
  Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Component name:                SQL Server Database Engine Services Instance Features
  Component error code:          0x851A001A
  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=12.0.2000.8&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026

  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:          0x851A001A
  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=12.0.2000.8&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026

  Feature:                       Data Quality Services
  Status:                        Failed: see logs for details
  Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
  Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Component name:                SQL Server Database Engine Services Instance Features
  Component error code:          0x851A001A
  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=12.0.2000.8&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026

  Feature:                       Full-Text and Semantic Extractions for Search
  Status:                        Failed: see logs for details
  Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
  Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Component name:                SQL Server Database Engine Services Instance Features
  Component error code:          0x851A001A
  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=12.0.2000.8&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026

  Feature:                       SQL Server Replication
  Status:                        Failed: see logs for details
  Reason for failure:            An error occurred for a dependency of the feature causing the setup process for the feature to fail.
  Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
  Component name:                SQL Server Database Engine Services Instance Features
  Component error code:          0x851A001A
  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=12.0.2000.8&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4026

  Feature:                       Master Data Services
  Status:                        Passed

  Feature:                       Integration Services
  Status:                        Passed

  Feature:                       Data Quality Client
  Status:                        Passed

  Feature:                       Analysis Services
  Status:                        Passed

  Feature:                       Reporting Services - SharePoint
  Status:                        Passed

  Feature:                       Reporting Services Add-in for SharePoint Products
  Status:                        Passed

  Feature:                       Documentation Components
  Status:                        Passed

Rules with failures:

Global rules:

Scenario specific rules:

Rules report file:               C:\Program Files\Microsoft SQL Server\120\Setup Bootstrap\Log\20140404_162339\SystemConfigurationCheck_Report.htm


Any suggestions for what step to take next will be appreciated.


Thanks


Tom G.


SQL 2012 SP 1 error -

$
0
0

I have done and read all possible blogs but there is no solution on below error -Please let me know if someone has faced Similar issue :

Action required:
Use the following information to resolve the error, uninstall this feature, and then run the setup process again.

Feature failure reason:
An error occurred during the setup process of the feature.

Error details:
§ Error installing SQL Server Distributed Replay Controller
The RPC server is unavailable.
Error code: 0x84BB0001
Visit http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.3128.0&EvtType=0xFB87BFDA%400x48149828&EvtType=0xFB87BFDA%400x48149828 to get help on troubleshooting.

Product Update:
Product Update has successfully applied KB 2674319 <http://support.microsoft.com/?id=2674319> and KB 2793634 <http://support.microsoft.com/kb/2793634>. These updates have set the patch level of the Setup operation to 11.1.3128.0.

__________________________________________________________________________________________

I have tried -Unistalling Reinstalling OS

SQL -2012 SP1 downloaded from MSDN -Fresh ISO Copy no go

THE RPC error will no go - Please suggest !!!


Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Anand Shankar

SSDT-BI Versions

$
0
0

Hi,

Do you know where I can check to see what kind of version of SSDT-BI for VS2012 I have installed?

Thank you.


Daniel

Windows Exchange Server 2010

SQL server 2014 cloud adapter (Azure) how to install manually?

SQL Express 2014 in place upgrade doesn't work

$
0
0

I have 64-bit Windows 8.1 with all the latest upgrades (downloaded from MSDN last week). I have had SQL Express 2012 With Advanced Services installed for a long time and all working correctly.

When I do an in-place upgrade to SQL Express 2014 with Advanced Services (RTM), it doesn't do the upgrade; it just disables and stops the Browser Service so I can't connect with SSMS. When I restart the Browser Service, I can connect again but the splash screen shows SQL 2012 and when I am connected, the version is 11.0.3128.

I subsequently tried a Repair option but this didn't achieve anything and there were no errors in the log file. If you can remind me where to find it, I can post it here.


Viewing all 7696 articles
Browse latest View live




Latest Images