Viewing 12 posts - 31 through 43 (of 43 total)
Open the SQL Server Management Studio.
Open a New Query.
Copy, paste, and execute the following:
GO
...
SSMS Expert
May 19, 2014 at 4:32 am
Reset SQL SA Password in SQL Server Using SQL Server Management Studio
1. Connect to SQL Server Using SQL Server Management Studio 2. Expand Security -> Logins -> Right click sa...
SSMS Expert
May 19, 2014 at 4:26 am
Change SA Password in SQL Server Using SQL Server Management Studio
1.Connect to SQL Server Using SQL Server Management Studio 2. Expand Security -> Logins -> Right click sa to open...
SSMS Expert
May 19, 2014 at 4:18 am
Try and run this
DBCC CHECKDB (Database name) WITH NO_INFOMSGS, ALL_ERRORMSGS
SSMS Expert
May 15, 2014 at 4:06 am
The first, best solution if DBCC CHECKDB reports consistency errors is to restore from a known good backup. However, if you cannot restore from a backup, then CHECKDB provides a...
SSMS Expert
May 15, 2014 at 3:56 am
Here are few steps by which you can drive out your SQL database from recovery mode and perform action on it.
First step is to stop the SQL Services
Then change the...
SSMS Expert
May 12, 2014 at 12:40 am
If you persist error while attaching SQL MDF File that mean the MDF file is corrupted you need to restore it from full backup or use any SQL recovery application...
SSMS Expert
May 10, 2014 at 2:26 am
hi
As you know that DBCC CHECKDB Command's checks the logical and physical consistencies of the pages, clustered index etc. if he finds some some change or check fails then...
SSMS Expert
May 10, 2014 at 12:03 am
Hi
I also tried to search a right solution for successful login in SQL Server but there is no solution available then i try third party tool for sql password...
SSMS Expert
May 7, 2014 at 3:49 am
Go through SSMS to attach MDF file
1.Right click on Object explorer's Databases and select attach option
2. A window appears on the screen then click on ADD Button
3. Then you...
SSMS Expert
May 5, 2014 at 5:47 am
Go through this way
1.Right click on the database in SQL Server Management Studio, and hit Detach.
2.Select the Drop Connections checkbox only, and hit ok.
3.Then the database will disappear.
4.Right...
SSMS Expert
May 5, 2014 at 5:29 am
Using SSMS is the simplest way to attach MDF file without LDF file. I mentioned some steps in which you can execute this task.
Firstly open the SSMS and then choose...
SSMS Expert
May 5, 2014 at 1:02 am
Viewing 12 posts - 31 through 43 (of 43 total)