In order to clear the problem you must dump the transaction log. This can be done as follows:
At this point, any completed transactions will be flushed out to disk. If you don't care about the recoverability of the database, you can issue the following command:dump tran db_name to data_device go
If that doesn't work, you can use the with no_log option instead of the with truncate_only.dump tran db_name with truncate_only
After successfully clearing the log the suspended connection(s) will resume.
Unfortunately, as mentioned above, there is the situation where the connection that is suspended is the culprit that filled the log. Remember that dumping the log only clears out completed transaction. If the connection filled the log with one large transaction, then dumping the log isn't going to clear the suspension.
select lct_admin("unsuspend", db_id("db_name"))