Error code

SQL Server 9002

SQL SERVER9002
Database Error Code· An error code returned by a database server such as PostgreSQL or MySQL.

What it means

the transaction log for database is full — log space exhausted.

How to fix it

  1. Back up the transaction log with BACKUP LOG to truncate it and free log space.
  2. Switch to SIMPLE recovery model temporarily if log backups are not required.
  3. Add a new log file or expand the existing one with ALTER DATABASE ... MODIFY FILE.

Not affiliated with SQL Server. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.