Is there way to compare mysql db i saved in file.sql with opther original.sql on my local computer without internet connection or without setting up any kind of mysql server, just copare local files.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you to compare if they’re different you can use the
diff(Mac, Linux) orcomp(Windows) command:Or
If the two files are identical the tool won’t return anything. If they’re different then you’ll see an output like
You can learn more about the format of the output here.
If you don’t want to deal with command-like tools you could use something like Beyond Compare