Installing SQL Server 2012 in unattended mode using command line and...
1-Create cmd file with below highlighted text and save it as c:\SQLCMDInstaller\InstallSQL.CMD<SQL media>l\setup.exe /Configurationfile="ConfigurationFile.ini"...
View ArticleInstalling SQL Server 2012 + Service Pack 1 + SP1 Cumulative update in one...
1-Let us have below folder structure where media for RTM, Service pack 1 and cumulative update exist. 2-Create below configuration file that will determine all setup parameters required during...
View ArticleInstalling SQL Server 2012(Enterprise & Express), SQL Server 2008 R2...
Installing SQL Server 2012(Enterprise\Express), SQL Server 2008 R2 (Enterprise\Express) on Windows 8 Release Preview using command line and un-attended installation. 1-Downloaded Windows 8...
View ArticleSQL Server set compatibility level for all server databases
use master; go DECLARE UserDatabases_CTE_Cursor Cursor FOR — Selecting user database names. select name as DatabaseName from sys.sysdatabases where ([dbid] > 4) and ([name] not like ‘$’)...
View ArticleInstalling SQL Server 2012 with Cumulative Update 1 (CU1) using Product...
1-let us assume that we have CU1 package located in “C:\SQL2012Updates”, SQL server 2012 is installed from E: drive. 2-The command to install SQL server and CU1 will be setup.exe...
View ArticleInstalling SQL Server 2008 plus Service Pack 3 using slipstream on Windows...
1-Enable .NET3.5 from the command line using the following command Dism.exe /online /enable-feature /featurename:NetFX3 /All...
View ArticleMigrating SQL Server 2000 user databases to SQL server 2012
T-SQL scripts to migrate SQL server 2000 user databases to SQL server 2012 1. Backup SQL 2000 user databases using below scripts: Please customize parts highlighted in yellow...
View ArticleInstalling SQL Server 2012 Developer edition using SQL Server 2012 Enterprise...
DVD corruption is common problem that may happen when installing SQL Server 2012, one way to solve this problem is to download SQL server 2012 Enterprise evaluation...
View ArticleEnabling TDE(Transparent Data Encryption) on all user databases
Below blog post provides TSQL script that encrypts all user databases, please note: This posting is provided “AS IS” with no warranties, and confers no rights. References...
View ArticleRecovering from SQL Server upgrade failure
1. The scenario here we are trying to upgrade from SQL Server 2008 R2 to SQL Server 2012, so I turned off the machine (simulating power outage) while upgrade is in progress . 2. When I try to run...
View ArticleCommon questions posted on SQL Server setup & deployment Forum
1. Licensing questions: Call (8004269400), Monday through Friday, 6:00 AM to 6:00 PM PST to speak directly to Microsoft licensing specialist....
View ArticleInstalling SQL Server 2012 + Service Pack 1 + SP1 Cumulative update in one...
1-Let us have below folder structure where media for RTM, Service pack 1 and cumulative update exist. 2-Create below configuration file that will determine all setup parameters required during...
View ArticleHello world!
Welcome to Developer Network. This is your first post. Edit or delete it, then start blogging!
View Article