While we fetch articles in "fetch from Postman" option in despatch module, it may shown the postman db error like shown in below.
Solution
The database of Postman may be corrupted.
Try once by restarting the server or follow the steps as below
- Take backup of Counter and postman database and close all the application which are using.
- Run the below sql queries in Microsoft SQL server management studio line by line
USE master
ALTER DATABASE counter SET single_user
DBCC checkdb ('counter','repair_rebuild')
DBCC checkdb ('counter','REPAIR_FAST')
DBCC checkdb ('counter','repair_allow_data_loss')
ALTER DATABASE counter SET multi_user
use Counter dbcc checkdb
USE master ALTER DATABASE
Postman SET single_user
DBCC checkdb ('Postman','repair_rebuild')
DBCC checkdb ('Postman','REPAIR_FAST')
DBCC checkdb ('Postman','repair_allow_data_loss')
ALTER DATABASE Postman SET multi_user
use Postman dbcc checkdb
- In the Message, last line shows the allocation errors and consistency errors, if this is 0 means, your database is recovered.
Note:Take backup of counter and postman database again and use the despatch application now.
Updates:
Follow us on WhatsApp, Telegram Channel, Twitter and Facebook for all latest updates
Post a Comment