SQL-/databasefoutenFout
2200322003 — Numeric Value Out of Range
A numeric value is outside the range of the target column's data type.
postgresql
Details bekijken 55006The database object is currently in use and cannot be modified.
Another session has a lock or is actively using the object.
Wait for active queries to finish. Use pg_terminate_backend() if needed. Schedule DDL during maintenance windows.
-- object_in_use: cannot drop database being accessed
-- Disconnect other sessions first
SELECT pg_terminate_backend(pid) FROM pg_stat_activity
WHERE datname = 'mydb' AND pid <> pg_backend_pid();22003A numeric value is outside the range of the target column's data type.
2D000A transaction termination command was invalid in the current context.
23514An INSERT or UPDATE violates a CHECK constraint on the table.
SQLITE_RANGE (25)A parameter index passed to sqlite3_bind is out of range.
SQLITE_EMPTY (16)The database file exists but contains no tables.
22023A parameter value is invalid for the operation.