We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to migrate specific sets of data from Oracle to MySQL using sqlines -qf=queries
sqlines -qf=queries
This is my queries file:
queries
MY_DB.TABLE1, select * from MY_DB.TABLE1 where NAME like 'Jane%'; MY_DB.TABLE1, select * from MY_DB.TABLE1 where NAME like 'Mike%';
Only the first query is executed. The second query does not get executed, I'm assuming, because the table name is the same.
Is there a way to migrate specific sets of data from the same table in a list of multiple queries?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to migrate specific sets of data from Oracle to MySQL using
sqlines -qf=queries
This is my
queries
file:Only the first query is executed. The second query does not get executed, I'm assuming, because the table name is the same.
Is there a way to migrate specific sets of data from the same table in a list of multiple queries?
The text was updated successfully, but these errors were encountered: