Home > database >  Power Bi Errorcode: 28- No space left on device
Power Bi Errorcode: 28- No space left on device

Time:11-16

I was testing powerBi for a while a dont get any problems. Now I am doing a huge query, bigger then ever and I got this error while evaluating my data. On my disk I have still over 300 GB of free space. How can I fix this error?

enter image description here

CodePudding user response:

This is not a problem arising from PowerBI Desktop, this is coming from MySQL - further supported by the referenced path of /var/lib/mysql... Check the disk on the server where mySQL is running. From a short Google it seems like you should be able to free up some space by purging binary logs which allow point in time recover and replication - remove these before a specific point in time that you are comfortable with. You may be able to perform other maintenance that alleviated disk pressure - or resize the allocation on the MySQL drive / mount.

PURGE BINARY LOGS BEFORE 'yyyy-mm-dd hh:mm:ss'; 

More info here.

  • Related