Sql server configuration manager error - sql

I am using Windows 7 32 bit OS and working on Microsoft SQL Server 2008, and when I open the configuration tool I got this error message.
Then I googled the error and got this below link.
http://www.microsoft.com/en-us/download/details.aspx?id=30437
Then I downloaded Microsoft® SQL Server 2008 R2 Service Pack 2
Then when I tried to install this application I got this error
How to solve this issue?? Any help appreciated.

In your question you write that you are using Microsoft SQL SERVER 2008but the download link is for Microsoft SQL Server 2008 R2, which is a different (newer) version. If you are indeed using the 2008 version and not 2008R2 what you want is the service pack for Microsoft SQL Server 2008: SQL Server 2008 Service Pack 3

Related

Error occur while installing Microsoft SQL server 2008

The error message is,
(In dialog box:)
This program has compatibility issues
Microsoft SQL server(2008 and 2008R2)
Microsoft
you can get help online and see more information about this program's compatibility issues.
SQL Server 2008 is supported on Windows 8/Windows Server 2012 but
requires a minimum of Service Pack 3.
Select Run this program (ignore the warning) and then install SQL Server 2008 SP3 http://www.microsoft.com/en-us/download/details.aspx?id=27594.
See http://blogs.msdn.com/b/psssql/archive/2012/09/01/installing-sql-server-on-windows-8.aspx

There was an unknown error applying the filestream settings. check the parameters are valid

I am getting the following error while trying to configure FileStream in SQL server 2012.
There was an unknown error applying the filestream settings. check the parameters are valid. (0x80041008)
I am configuring it using SQL server configuration manager.
Where as I am able to setup it for SQL server 2008 R2.
I had this same problem just yesterday.
In my case it was because I had a 64-bit Windows and a 32-Bit SQL Server.
You do not see the exact error, but if you try to do it with T-SQL, then the proper error comes up in SQL, telling you something about "WOW64" not supporting filestream.
I just uninstalled and installed the right bit version of SQL, and all worked 100% again.
In my case the problem I was running the SQL Server 2014 configuration manager. While this usually shouldn't cause problems, in my case it did. Configuring FILESTREAM using the SQL Server 2012 configuration manager worked.
If it still doesn't work, make sure you're up-to-date. SQL Server 2012 has received quite a lot of patches (SP2, SP3, and some updates).
TL;DR
I simply installed Service pack 2 (SP2) patch of SQL Server 2008 R2 and everything started working for me.
Read on if you want to know more. Configuration wise my box was all correct and the file stream feature should have been working on my default instance of SQL Server 2008 R2. Here are my box details:
Operating System: Windows 7 Ultitmate SP1 (64 Bit)
SQL Server Version: SQL Server 2008 R2 SP1
On SQL Server if I run this query select ##version it was returning following details:
Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64) Apr 2 2010 15:48:46 Copyright (c) Microsoft Corporation Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1)
Whenever I opened SQL Server 2008 Configuration manager I will face this issue. Luckily I also had SQL Server 2014 installed on my machine. So I tried enabling File Stream feature from configuration manager GUI of SQL Server 2014 but it started giving error mentioned in current post.
I simply installed Service pack 2 (SP2) patch of SQL Server 2008 R2 and everything started working for me. SQL Server Configuration manager for 2008 R2 also works fine and I'm able to enable File Stream feature also without any trouble. SQL Server 2008 R2 SP2 can be downloaded from here.

Using SQL Server 2012 with SSMS 2008

I am using SSMS 2008 on an XP machine, trying to access a SQL Server 2012 database and get error messages indicating index out of bounds of array. What do I need to do to fix?
EDIT: (thanks #bluefeet ) : You can't install SSMS 2012 on Windows XP. See here: SQL Server 2012 Management Studio for Windows XP
Cause
The server you are connecting to is using SQL Server 2012. The error
is a result of incompatibilities with previous versions of SQL Server
Management Studio i.e. 2005, 2008, & 2008 R2.
Resolution
You will need to download SQL Server 2012 Management Studio to make
changes to your database. You can download it from the MSSQL Express
2012 website.
Source of Answer: You Receive Errors When Connecting to MSSQL 2012 Using MSSQL 2008 or 2008 R2 Management Studio.

Microsoft SQL Server Management Studio missing

I'm on Windows 7 (64 bit). I cannot figure out why Microsoft SQL Server Management Studio does not exist.
I can see the SQL Server running and also tried installing SQL client, but I had no success with that.
I desperately need help please.
Thanks
In SQL Server 2016 it has its own link:
Just download it here: https://msdn.microsoft.com/en-us/library/mt238290.aspx
If you have the installation Disk(s), you can install Sql Server Management Studio (SSMS) by going into Add features to an existing instance of SQL Server 2008
See step by step guide here including screenshots.

SQL Server 2008 R2 isn't attaching a database file [duplicate]

This question already has answers here:
.mdf is too new (661) my database supports version 655
(5 answers)
How can I attach a database?
(3 answers)
Closed 9 years ago.
I'm using SQL Server. The version is as follow:
Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (Intel X86) Apr 2 2010 15:53:02
Copyright (c) Microsoft Corporation Enterprise Edition
on Windows NT 5.2 <X86> (Build 3790: Service Pack 2)
And when I try to attach Callbacks.mdf I get the following error:
Attach database failed for Server 'LT122580\SQLEXPRESS'.
(Microsoft.SqlServer.Smo)
The database 'Egor_Callback' cannot be opened because it is version 661. This server supports version 655 and earlier. A downgrade path is not supported.
Could not open new database 'Egor_Callback'. CREATE DATABASE is aborted. (Microsoft SQL Server, Error: 948)
I have no more available updates to SQL Server and I don't know what's causing this. Is it because I'm trying to attach it to SQL Server Express server? If so, How can I work around this problem without involving another server?
The big problem here is the misconception that SQL Server 2008 and SQL Server 2008 R2 are the same thing. They're not. 2008 R2 is not just a service pack to 2008, it is a completely different version, and the database structures are different.
Your database came from a SQL Server 2008 R2 instance (661) but you are trying to install it on 2008 (which only supports up to 655). In some ways this is like trying to take the carburetor from your '67 Corvette and trying to install it in your '64 Corvette. They're probably close, but not identical.
In order to use your 2008 R2 instance on your local Express instance, you will need to upgrade or add a new 2008 R2 instance of SQL Server Express. You could even install SQL Server 2012, which will be able to use databases from 2005, 2008, 2008 R2, and 2012.
Download SQL Server 2008 R2 Express
Download SQL Server 2012 Express