problem in mysql
hello every one,
well my problem is that i have one root database folder of mysql...(frm file) i want that when i copy of my database folder(all frm files) in diffrent system then its not opening in mysql its says "table Does not exists". but i want to open all tables. if this is possible in mysql then let me know please its too urgent...........
thanks in Advance

Gokula KrishnanPosted Apr 7, 2010, 2:58 AM
Did you heard about MySQL Administrative tool. This tool is free of cost. Down load from mysql website. This tool provide many options. There is the query builder, Import , Export options, ....
Try this tool. You feal better...
Regards,
GokulaKrishnan.
Kirtan PatelPosted Dec 5, 2009, 9:23 AM
My SQL Stores File Differently then The SQL Server SQl Server Stores Data in Single File But MYSQL makes Diffrent File For Each table . also mysql can not be used as Local database as We Use mdf file as local database ..
Naeem KhanPosted Dec 5, 2009, 6:59 AM
Kirtan PatelPosted Dec 2, 2009, 8:41 AM
Naeem KhanPosted Dec 2, 2009, 7:33 AM
Lalit MPosted Dec 2, 2009, 7:21 AM
could you try this way ?you can also tack a database dump and transfer another system try this
Usually you run mysqldump to create database copy:
$ mysqldump -u user -p db-name > db-name.out
Copy db-name.out file using sftp/ssh to remote MySQL server:
$ scp db-name.out [email protected]:/backup
Restore database at remote server (login over ssh):
$ mysql -u user -p db-name < db-name.out
copy a MySQL database from one computer/server to another
Short answer is you can copy database from one computer/server to another using ssh or mysql client.
You can run all the above 3 commands in one pass using mysqldump and mysql commands (insecure method, use only if you are using VPN or trust your network):
$ mysqldump db-name | mysql -h remote.box.com db-nameUse ssh if you don't have direct access to remote mysql server (secure method):
$ mysqldump db-name | ssh [email protected] mysql db-nameYou can just copy table called foo to remote database (and remote mysql server remote.box.com) called bar using same syntax:
$ mysqldump db-name foo | ssh [email protected] mysql barAnother Way may be help