How to restart SQL Server in single user mode? How to start
SQL Server in minimal configuration mode?
Answer Posted / ganeshsamurti
• Open "Control Panel->Administrative Tools->Services"
• Mouse right click on specified SQL Server instance service
and select "Properties" menu to bring up following
configuration window:
• Specify start parameters as following:
-s{ Instance name } -m
If instance is default instance (no instance name) ,then
just enter
-s -m
• Restart the SQL Server instance service
SQL Server can be started from command line, using the
SQLSERVR.EXE. This EXE has some very important parameters
with which a DBA should be familiar with. -m is used for
starting SQL Server in single user mode and -f is used to
start the SQL Server in minimal confuguration mode.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are different types of roles provided by ssrs?
How to execute stored procedure and set temp table in sql server?
What causes index fragmentation?
What is the process of normalization?
in the physical file layout, where should the transaction log be stored in relation to the data file? : Sql server administration
When I delete any data from a table, does the sql server reduce the size of that table?
What is a table called, if it has neither cluster nor non-cluster index? What is it used for?
What do you understand by the analysis services in sql server?
How to create a login account in ms sql server to access the database engine using "create login" statements?
How to send a ssrs report from ssis?
How can a user-defined datatype be created?
How you can get the list of largest tables in a database?
explain databases and sql server databases architecture? : Sql server database administration
Name and describe few console utilities for ssrs?
You want to implement the many-to-many relationship while designing tables. How would you do it?