-- Create the service accountCREATE USER 'artie' IDENTIFIED BY 'password';-- Grant the necessary permissions to the service account for us to merge data and manage schema evolution.GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, ALTER ON *.* TO 'artie';