a question about MySQL

  • Hi,

    sorry to bother you here about a question about MySQL.

    I tried SSH to transfer a huge database from the old server to the new one, is there is a way more easy ??? because I'm not a programmer, and SSH not easy to use.

    if there is a way to transfer the website including the database, it will be perfect.

    best regards

  • You should post you question on a MySQL forum.

    Try the MySQL forum at http://www.dbforums.com/

  • You should post you question on a MySQL forum.

    Try the MySQL forum at http://www.dbforums.com/

    Or do you mean migrating from MySQL to MSSQL ?

    Wilfred
    The best things in life are the simple things

  • Nothing's perfect and what do you mean by ssh. The remote shell? That has nothing to do with transfers, that's a way of connecting.

  • There's actually a forum for non MSSQL questions as well

    http://www.sqlservercentral.com/Forums/Forum61-1.aspx

    As to moving a database, it's a file, or many files, depending on the Storage Engine. Treat it like a binary file copy. If you MIGRATE to another DB on another system (esp. if it's to MSSQL) that's something different.

  • MySQL provides the MySQLDump command. It can be run from both Windows (assuming the MySQL client/engine is intalled on Windows) and in *nix OS's.

    mysqldump --host={host name or IP} --user={user name} --password={pwd} {database} | mysql --host={host name or IP} --user={user name} --password={pwd} -C {database}

    DAB

  • jgrubb (10/31/2008)


    There's actually a forum for non MSSQL questions as well

    http://www.sqlservercentral.com/Forums/Forum61-1.aspx

    The "Anything that is NOT about SQL!" forum?

    You could also say that is the "Quantum mechanics" or "Medieval History" forum, but he would probably still be better off going to a forum where there are actually people that know something about MySQL to answer his question, instead of posting on the SQL Server 2005 Backups forum.

Viewing 7 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply