Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
Search
Archives
Archives
January 2013
(1)
October 2012
(2)
September 2012
(1)
August 2012
(2)
July 2012
(2)
June 2012
(2)
May 2012
(4)
April 2012
(1)
Tags
all user databases
Backup
command line
commandline
config file
configuration file
CU1
cumulative update
databases
install
installation
Product updates
setup
silent
slipstream
SQL server
SQL Server 2000
SQL Server 2008
SQL Server 2008 R2
SQL Server 2012
un-attended
UpdateSource
upgrade
User databases
Windows Server 2012
Common Tasks
Blog Home
Email Blog Author
About
RSS for posts
RSS for comments
Tagged Content List
Blog Post:
Common questions posted on SQL Server setup & deployment Forum
Ahmed Ibrahim - MSFT
1. Licensing questions: Call (8004269400), Monday through Friday, 6:00 AM to 6:00 PM PST to speak directly to Microsoft licensing specialist. http://www.microsoft.com/sqlserver/en/us/get-sql-server/how-to-buy.aspx http://www.microsoft.com/sqlserver/en/us/get-sql-server/licensing...
on
18 Oct 2012
Blog Post:
Migrating SQL Server 2000 user databases to SQL server 2012
Ahmed Ibrahim - MSFT
Ahmed Ibrahim Ahmed Ibrahim 2 15 2012-08-09T01:43:00Z 2012-08-09T01:43:00Z 5 1062 6060 Microsoft Corporation 50 14 7108 14.00 Clean Clean false false false false EN-US X-NONE X-NONE ...
on
8 Aug 2012
Blog Post:
Installing SQL Server 2008 plus Service Pack 3 using slipstream on Windows Server 2012 RC in un-attended mode.
Ahmed Ibrahim - MSFT
1-Enable .NET3.5 from the command line using the following command Dism.exe /online /enable-feature /featurename:NetFX3 /All 2-Download SQL server 2008 service pack 3 from http://www.microsoft.com/en-us/download/details.aspx?id=27594 3-Double click on package exe to install...
on
19 Jul 2012
Blog Post:
SQL Server set compatibility level for all server databases
Ahmed Ibrahim - MSFT
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 '$' ) OPEN UserDatabases_CTE_Cursor DECLARE @dbName varchar ( 100 ); ...
on
12 Jun 2012
Blog Post:
T-SQL script to backup all user databases with time stamped backup file.
Ahmed Ibrahim - MSFT
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 '$' ) OPEN UserDatabases_CTE_Cursor DECLARE @dbName varchar ( 100 ); ...
on
29 May 2012
Blog Post:
Upgrading SQL Server 2008 to SQL Server 2008 R2 using command line in unattended mode
Ahmed Ibrahim - MSFT
The below command can be used to upgrade SQL server 2008 to SQL server 2008 R2 silently , please enter the correct instance name. setup.exe /Action=Upgrade / InstanceName=MSSQLSERVER /q /IAcceptSQLServerLicenseTerms
on
7 May 2012
Page 1 of 1 (6 items)