You can cut a db after each table plus contents. Usually it starts like this with "create table" and then comes the contents with "insert into". If you keep these 2 components together, the creation of the table and its contents, then you can upload every table separately.
Text Formatted Code
DROP TABLE IF EXISTS `gl_access`;
CREATE TABLE IF NOT EXISTS `gl_access` (
`acc_ft_id` mediumint(8) NOT NULL default '0',
`acc_grp_id` mediumint(8) NOT NULL default '0',
PRIMARY KEY (`acc_ft_id`,`acc_grp_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
--
INSERT INTO `gl_access` (`acc_ft_id`, `acc_grp_id`) VALUES (1, 3);
INSERT INTO `gl_access` (`acc_ft_id`, `acc_grp_id`) VALUES (2, 3);
and so on...