I cant update my database anymore because of an error I'm getting. Error Executing Database Query. [Macromedia][SQLServer JDBC Driver][SQLServer]The log file for database 'mydatabase' is full. Back up the transaction log for the database to free up some log space. Code (markup): Any thoughts or help would be appreciated.
what kind of host it is Linux or windows Also what kind of hosting u r using shared or dedicated Regards Alex
I have CFML on a windows shared sever. Last night after some digging around i found a SQL statment <cfquery datasource="" name=""> DDBC SHRINKFILE (filename_log, 2) </cfquery> Code (markup): This shrunk the file down by 1k and now everything is running again. I also saw a SQL that would change the log setting to SIMPLE RECOVERY os something like that. It said to only do this if the log was not required for restoring the database. thanks for your response Here are some other sql's I found ALTER DATABASE databasename SET RECOVERY SIMPLE Code (markup): BACKUP LOG databasename WITH TRUNCATE_ONLY Code (markup):