Viewing 7 posts - 1 through 7 (of 7 total)
Yes, I agree
But If someone will face this situation again & found this thread, It may help someone.
Thanks
November 29, 2022 at 9:07 am
Hi
You can restore SQL .bak file with few simple steps to process the same you will be required SQL Server (As you are using local server) & SQL Server Management...
November 29, 2022 at 7:31 am
Follow the given command below.
ALTER DATABASE [DBName] SET EMERGENCY;
GO
ALTER DATABASE [DBName] set single_user
GO
DBCC CHECKDB ([DBName], REPAIR_ALLOW_DATA_LOSS) WITH ALL_ERRORMSGS;
GO
ALTER DATABASE [DBName] set multi_user
GO
I believe it will fix your...
November 29, 2022 at 6:21 am
Few best practices to optimize SQL DB performance
- Reduce Table Size
- Simplify Joins
- Use SELECT Fields FROM Instead of SELECT * FROM
- Use EXISTS() Instead of COUNT()
- Use WHERE Instead...
November 10, 2022 at 11:54 am
The EMERGENCY mode is a perused just status used to peruse information from data sets in the RECOVERY PENDING/SUSPECT mode. Basically, when a data set status is changed to SUSPECT,...
July 14, 2022 at 10:38 am
It could be a problem with your .frm file
This error is widespread but there are also many ways to repair your database.
Follow Steps to fix.
To fix corrupt MyISAM tables, run...
May 13, 2022 at 5:55 am
This was removed by the editor as SPAM
April 11, 2022 at 5:12 am
Viewing 7 posts - 1 through 7 (of 7 total)