SQL/Database ErrorsError
5500655006 — Object In Use
The database object is currently in use and cannot be modified.
postgresql
View details 53200The database server ran out of memory.
The server could not allocate memory for a query. Caused by large queries, insufficient work_mem, or too many connections.
Reduce work_mem. Limit max_connections. Optimize queries. Add more RAM. Use connection pooling.
-- out_of_memory: increase work_mem or shared_buffers
SHOW work_mem;
SET work_mem = '256MB';55006The database object is currently in use and cannot be modified.
28P01The password provided for authentication is incorrect.
42712A table alias is used more than once in the same query.
MySQL 1153The query or result exceeds max_allowed_packet.
08001The client could not establish a connection to the database server.
22P02A value could not be converted to the required data type.