SQL/データベースエラーエラー
0800308003 — Connection Does Not Exist
The specified database connection does not exist or has been closed.
postgresql
詳細を表示 40001The transaction was rolled back due to a serialization conflict.
Concurrent transactions attempted to modify the same data in a way that violates serializable isolation.
Retry the transaction automatically. Reduce contention by minimizing transaction scope. Consider a lower isolation level.
-- serialization_failure: retry the transaction
BEGIN ISOLATION LEVEL SERIALIZABLE;
-- ... queries ...
COMMIT; -- if fails with 40001, retry08003The specified database connection does not exist or has been closed.
22012A division by zero was attempted in a SQL expression.
22007A date, time, or timestamp value is in an invalid format.
MySQL 1406The data value exceeds the column's maximum length.
MySQL 2006The connection to the MySQL server was lost.
53300The maximum number of database connections has been reached.