Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Ahmed Ibrahim - SQL Server
It is mainly about SQL Server
RSS for posts
If you find something useful here please share it !!
Blog - Email Author
Contact - Ahmed Ibrahim - SQL Server
Name
Email
Subject
Message
Send
Blog - Browse Blogs
Clear
Blog
Posts
Last Post
0
N/A
-
-
0
N/A
-
0
N/A
Sandbox
2
26 Apr 2013
服务世界 开发未来
微软亚太研发集团服务器与开发工具事业部(中国)
149
1 Dec 2011
Next >
Common Tasks
Blog Home
Email Blog Author
About
RSS for comments
RSS for posts
Atom
Search
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
Blog - Links
Subscribe via RSS
Blog Home
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
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)
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Ahmed Ibrahim - SQL Server
T-SQL script to backup all user databases with time stamped backup file.
Posted
over 1 year ago
by
Ahmed Ibrahim - MSFT
13
Comments
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...
Ahmed Ibrahim - SQL Server
Patching SQL Server 2008 R2 using command line and un attended mode.
Posted
over 1 year ago
by
Ahmed Ibrahim - MSFT
2
Comments
The following command can be used to patch SQL server 2008 R2 instance in silent mode using command line unattended patching. <Servicepack.exe> /Action=Patch /InstanceName=MSSQLSERVER /Q /IAcceptSQLServerLicenseTerms
Ahmed Ibrahim - SQL Server
Upgrading SQL Server 2008 to SQL Server 2008 R2 using command line in unattended mode
Posted
over 1 year ago
by
Ahmed Ibrahim - MSFT
3
Comments
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
Ahmed Ibrahim - SQL Server
Installing SQL Server 2012 in unattended mode using command line and configuration file
Posted
over 1 year ago
by
Ahmed Ibrahim - MSFT
4
Comments
1-Create cmd file with below highlighted text and save it as c:\SQLCMDInstaller\InstallSQL.CMD <SQL media>l\setup.exe /Configurationfile="ConfigurationFile.ini" /IAcceptSQLServerLicenseTerms replace the <SQL media> with the path where...
Page 1 of 1 (4 items)