Reputation: 1
I've got DataGrip and I would like to add some INSERT INTO statements, but I'm getting an error that says
Content is too large (209,46 MB), limit is 20,97MB
I haven't found out how to increase that limit.
Upvotes: 0
Views: 426
Reputation: 1458
It's not a good idea to open such a big file, it can affect performance and memory consumption. But it's on your own. Please read this topic. You need to increase idea.max.content.load.filesize value, just go to Help -> Edit custom properties and paste something like this:
idea.max.content.load.filesize=250000
Upvotes: 3