The Server Has Run Out of Disk Space
If your server has run out of disk space, you can try to regain some disk space by truncating the log files. You can do this in Model Explorer by right-clicking the database and selecting Backup > Backup and Truncate Log.
You can also perform the same operation using SSMS by running the following stored procedure on the master database:
EXECUTE spTruncateDatabaseLog <DBname>
* 
The above stored procedure works only if the log file size is greater than 2 GB. If it is, then the log file size is truncated to 64 MB.
For more information about stored procedures, refer to the following SQL Server help topic on how to execute a stored procedure:
For more information about backing up and deleting log files, see the Administration chapter of the Modeler help.