[DiscordArchive] mysqldump: Got error: 1114: The table '/tmp/#sq...
[DiscordArchive] mysqldump: Got error: 1114: The table '/tmp/#sq...
Archived author: Needle • Posted: 2025-01-05T13:48:03.002000+00:00
Original source
Archived author: Needle • Posted: 2025-01-05T13:48:03.523000+00:00
Original source
Thread automatically created by M'dic V in <#415944535718494208>
Archived author: Deleted User • Posted: 2025-01-05T13:56:48.506000+00:00
Original source
If they are getting massive try increasing the tmp file sizes :
```SET GLOBAL tmp_table_size = 256M;
SET GLOBAL max_heap_table_size = 256M;```
Archived author: Deleted User • Posted: 2025-01-05T13:57:06.925000+00:00
Original source
Might be worth checking what huge queries you or doing or optimize them
Archived author: Deleted User • Posted: 2025-01-05T13:58:21.799000+00:00
Original source
Alternatively don't use LOCK TABLES and use :
```START TRANSACTION;
-- code here
COMMIT;```
Archived author: RektByFaith • Posted: 2025-01-05T16:51:38.345000+00:00
Original source
Where do I put this?
Archived author: RektByFaith • Posted: 2025-01-05T16:52:12.648000+00:00
Original source
I tried to set this, but just said
Query OK, 0 rows affected (0.00 sec)
and seems it didn't do much of a change
Archived author: Deleted User • Posted: 2025-01-05T17:05:31.755000+00:00
Original source
Is this a mysql export? Need more context