I created a user using the below sql stmts but still the user cant access remotely from sqldbx tool .
CREATE USER ‘california’@’%’ IDENTIFIED BY ‘Tesla123#’;
grant group ‘am_data_read_only_group’ to ‘california’@’%’;
grant group ‘am_data_read_write_group’ to ‘california’@’%’;
GRANT ALL PRIVILEGES ON . TO ‘california’@’%’ WITH GRANT OPTION;
Pls let me know what else I need to do.