Viewing 15 posts - 16 through 30 (of 42 total)
Can you tell the version of SQL Server?
September 23, 2014 at 1:20 am
Thanks for this help actually I didn't find its solution but right now I am very thankful to you now I can solve it
September 22, 2014 at 11:17 pm
As the main reason of SQL error 823 is page level corruption. Basically SQL Server performs its I/O operation through API if he finds check fails then immediately it reports...
September 8, 2014 at 7:01 am
The best option to recover SQL database is to restore from full backup. In case backup is not available then must go with entrusted tool.
September 8, 2014 at 7:00 am
Well you access through SQL authentication also. I got an error code: 18456. After digging a bit I found the solution - SQL server error: 18456 overview - This error...
September 6, 2014 at 3:17 am
Insufficient disk space for storing abrupt SQL database may cause SQL database in stuck mode. Therefore you can switch the mode of the SQL database from Normal to Emergency....
July 24, 2014 at 10:48 pm
You need to go with external software which can resolve it accurately.
June 11, 2014 at 2:40 am
Follow these steps to attach MDF file without LDF
1.Open SSMS
2.Go to object explorer and Databases and make a right a click on it
3.Select attach option
4.Attachment window open click on...
May 27, 2014 at 3:55 am
Sometimes due to high page level corruption the DBCC CHECKDB command refused to repair the SQL database and shows consistency failure errors. So if you have good backup then restore...
May 26, 2014 at 6:18 am
1. Change the status of your database. Suppose database name is “BluechipDB”
EXEC sp_resetstatus '';
...
May 22, 2014 at 4:52 am
Enter this script in new query window od SQL Server Management Studio
EXEC sp_resetstatus 'yourDBname';
ALTER DATABASE yourDBname SET EMERGENCY
DBCC checkdb('yourDBname')
ALTER DATABASE yourDBname SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB ('yourDBname', REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE...
May 22, 2014 at 4:42 am
Follow simple steps to recover sql database suspect mode
1. Change the status of your database. Suppose database name is “BluechipDB”
...
May 22, 2014 at 4:34 am
Change SQL Server Password Using SQL Script
Try this :-
Open the SQL Server Management Studio.
Open a New Query.
Copy,...
May 20, 2014 at 12:57 am
Viewing 15 posts - 16 through 30 (of 42 total)