Error code

SQL Server 3621

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

What it means

the statement has been terminated — a prior error caused the batch to abort.

How to fix it

  1. Fix the root error reported immediately before this message.
  2. Check SET XACT_ABORT ON to ensure transactions are rolled back automatically on errors.
  3. Review error handling in stored procedures to use TRY/CATCH blocks.

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