Cannot install SQL Server Management Studio 2012 - sql-server

Running Windows 8.1 Pro x64 (upgraded from 8.0) with all updates installed. I'm trying to install SQL Server Management Studio 2012 using SQLManagementStudio_x64_ENU.exe. When the setup is initializing, I get this error:
ScenarioEngine.exe - Configuration parser error
-----------------------------------------------
Error parsing C:\Windows\Microsoft.NET\Framework64\v2.0.50727\config\machine.config
Parser returned error 0xC00CE556
I tried replacing machine.config with machine.config.default but with no success. Google has no more information regarding this, as far as I can see.
Has anybody seen this error before? How do you solve it?

It can be solved by installing dotnet framework 4.0 on your system.

Replacing machine.config with machine.config.default for both the 32-bit and 64-bit versions did the trick.

Related

Trying to install SQL Server 2012 on win 7. Its a 64-bit machine. I get the following error

TITLE: Microsoft SQL Server 2012 Setup
The following error has occurred:
An error occurred during the installation of assembly 'Microsoft.VC80.ATL, version="8.0.50727.6229", publicKeyToken="1fc8b3b9a1e18e3b", processorArchitecture="x86",type="win32"'.
Please refer to Help and Support for more information.
HRESULT: 0x80070422.
The problem was with Windows update.The "Windows Module installer" service was disabled once i enabled it and cleared up all the updates in C:\Windows\software distribution folder, it started updating and when i install the sqlserver-2012 i dint get that error anymore.
This is where i found about the service.
https://answers.microsoft.com/en-us/windows/forum/all/windows-update-error-80070422/372f6482-ff7c-4f92-858c-228b637bfae4

Warning CS0618 resolution

I am trying to get rid of
Warning CS0618: 'IDtsClipboardService' is obsolete: Use 'Microsoft.SqlServer.IntegrationServices.Designer.Model.IClipboardService' instead. I am trying to locate Microsoft.SqlServer.IntegrationServices.Designer.Model assembly to no avail. Anybody aware what installs it?
I have got SQL Server 2014 installed with Integration Services, SSDTS for VS2017 installed, up to date VS2017 and build tools version 15.
Any clues are warmly welcomed! Thanks
Miraculously I have found where Microsoft.SqlServer.IntegrationServices.Designer.Model.IClipboardService is!
According to Microsoft https://learn.microsoft.com/en-us/previous-versions/sql/sql-server-2012/ms211237(v%3Dsql.110) - it sits nowhere..
Using ILDASM.EXE from Dev CMD I started opening every assembly related to IntegrationServices and found out that the inteface I am after sits here:
Microsoft.SqlServer.IntegrationServices.Graph.dll

Cannot succesfully install TimescaleDB on Postgres 10 (Windows Server 2016)

I am having trouble getting TimescaleDB to work on my windows server 2016 machine with Postgres 10.
I open up a fresh windows server 2016 instance with AWS and I install Postgres using the windows GUI installer. (C:\Postgres).
The installer automatically updates the path to include the bin directory (C:\PostgreSQL\pg10\bin).
I stop postgres.
I run the TimescaleDB windows installer file and it says it's successfully completed.
I update the conf file. (shared_preload_libraries = 'timescaledb').
I restart my computer and start postgres, but postgres never sucessfully starts. The windows event yells at me, saying I 2018-03-29 17:01:35 UTC [952]: [1-1] user=,db=,app=,client= FATAL: could not load library "C:/POSTGR~1/pg10/../pg10/lib/postgresql/timescaledb.dll": The specified module could not be found.
Any idea whats going on?
This may be related to https://github.com/timescale/timescaledb/issues/485#issuecomment-377533298 which is caused by a missing dependency, Visual C++ Redistributable for Visual Studio 2015.

PETSc installation on windows

I am trying to install PETSc library on Windows 7 to be used with Visual Studio Express 2008, but I didn't succeed so far.
I installed cygwin (default installation) with python, make, diff.
Then I clicked on
VS2008Exp->Tools->VSCommand Prompt
I went to the Petsc directory
cygdrive/d/Workspace/PETSc/petsc-2.3.3-p13
From there I tried
an official suggestion
installing first the "Microsoft HPC Pack 2008 R2" and "Microsoft HPC Pack 2008 R2 SDK"
but I had an error "Unable to configure with given options" referring to
--with-mpi-include="/cygdrive/c/Program\ Files/Microsoft\ HPC\ Pack\ 2008\ SDK/Include"
--with-mpi-lib="/cygdrive/c/Program\ Files/Microsoft\ HPC\ Pack\ 2008\ SDK/Lib/amd64/msmpi.lib"
Afterwords I tried
config/config.py -with-cc="win32fe cl" --with-fc=0 --download-c-blas-lapack=1 --download-mpich=1
and now the error complains about the path for MPI (that I asked to be installed ..).
Can anybody help me?
Error you described here is about the MSMPI installation path. Since it has space chars configuration utility fails. So you have two options you may install MSMPI on a simple path like C:\MSMPI or use following syntax
--with-mpi-include='[my msmpi path]'
I am using this for MSMPI;
--with-mpi-include=/cygdrive/c/MSMPI/Inc/ --with-mpi-lib='[/cygdrive/c/MSMPI/Lib/amd64/msmpi.lib,/cygdrive/c/MSMPI/Lib/amd64/msmpifec.lib]'
For further info you may see this link

how to install sqlserver2005 evaluation on xp sp2 machine

Duplicate
https://serverfault.com/questions/7541/how-to-install-sqlserver2005-evaluation-on-xp
Hi
I am unable to instal SQLSERVER2005 evaluation version on winXp service pack2 machine. iam getting the error such that error 87: dotnet framework 2.0 installation and parameter incorrect.
Before run the sqlserver 2005 setup i hav installed .NET FRAMEWORK2.0 manually rather than sqlserver2005 suite.
vs2003 is also installed on my machine.
is it problem vs2003 installation before sqlserver2005??
When you run the installer for SQLServer 2005, the first thing it does is to check if the installation prerequisites are present on the system. That portion of the installer should install a suitable version of .NET Framework 2.0 for SQL Server 2005. Please try installing the framework as a prerequisite to installing SQL.

Resources