Author: actsupp-r0cks

Reported attack site

To remove “Reported attack site” banner from the website, website should be checked for Malware or malicious links. The following sites are helpful in identifying the malware in a site. 1.  sitecheck.sucuri.net/scanner/ 2.  unmaskparasites.com Still the domain needs to be checked with the help of a programmer to remove it thoroughly. Once it is cleared, […]

Continue Reading

Shrink 2008 MSSQL database

Shrinking SQL 2008 database is nowhere related to SQL 2000/2005 Method. Because SQL Server 2008 no longer allows you to truncate the transaction log using the no_log syntax But here is the special code to shrink the database: USE MASTER GO ALTER DATABASE database_name SET RECOVERY SIMPLE GO USE database_name GO DBCC SHRINKFILE (database_name_log, 1) […]

Continue Reading