After about 15 mins trying to resolve the issue I came across a solution on the web. It was the log files that has over grown and has to be clear or shrink. I have to execute this command;
USE
GO
DBCC SHRINKFILE(
BACKUP LOG
DBCC SHRINKFILE(
GO
for example;
USE SharePoint_Config
GO
DBCC SHRINKFILE(SharePoint_Config_log, 1)
BACKUP LOG sharePoint_Config WITH TRUNCATE_ONLY
DBCC SHRINKFILE(SharePoint_Config_log, 1)
GO
I hope this will help somebody out in the future
ENJOY