Have any existing MySQL 8.0 server installation on a Ubuntu 22.04 machine. Existing works without issue, but looking to import a very large DB but doing so in its current data directory will max out my available HD space.
As such, I'd like to import the new large DB to a secondary location (on an external HD) and ideally use existing MySQL server installation seamlessly (ie, could use MySQL 'USE db_name;' command to move back and forth between DBs and would simply redirect to secondary location for new large DB) (possibly some kind of symbolic link?).
Any way to accomplish this?