I am really sorry if this is not the right place to post this question. If it is not, please mark the thread and close it.
A client sent me some files which needs to be edited and some functionalities added. But he didn’t send me MySQL tables which is necessary in order to install it on my server. I have database credentials (like hostname, password and username). The host-name is something like: abcd1234.secureserver.net. Is it possible to get table structure using these information?
Thanks and regards,
Abhisek
Use
mysqldumpwith-Hparameter to specify the hostname. Also use-dif you want only the structure of the tables and not the data.The above assumes that the MySQL server is listening on the public IP. If not, then you have to login to the server and run
mysqldumplocally without-H.