Re: Data sync offline

2005-08-24 Thread Arno Coetzee

Alex Greg wrote:


Hi,


Our company is considering migrating some tablesfrom MyISAM to InnoDB,
as it has row-level locking and other improvements over MyISAM.

However, one of the things we do at the moment is rsync the MySQL data
directory to our development server every night over an 2Mbps ADSL
connection (as we have 40GB of data, downloading it all every night
isn't a viable option).

I am aware that you can't copy the InnoDB binaries around to different
installations. Does anyone have any suggestions as to how we could
continue to do incremental downloads of this data over a slow
connection?


Regards,


-- Alex

 

make a dump file of only the previous days data compress it , transfer 
the file , decompress it and import that days records into the other 
database.
remember that you should have a complete copy of the the database on 
the other server before you start the daily process.


--
Arno Coetzee
Developer
Flash Media Group
Office : 2712 342 7595
Mobile : 2782 693 6180


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Data sync offline

2005-08-24 Thread Jason Pyeron

On Wed, 24 Aug 2005, Arno Coetzee wrote:


Alex Greg wrote:


Our company is considering migrating some tablesfrom MyISAM to InnoDB,
as it has row-level locking and other improvements over MyISAM.

However, one of the things we do at the moment is rsync the MySQL data
directory to our development server every night over an 2Mbps ADSL
connection (as we have 40GB of data, downloading it all every night
isn't a viable option).

I am aware that you can't copy the InnoDB binaries around to different
installations. Does anyone have any suggestions as to how we could
continue to do incremental downloads of this data over a slow
connection?

make a dump file of only the previous days data compress it , transfer the 
file , decompress it and import that days records into the other database.
remember that you should have a complete copy of the the database on the 
other server before you start the daily process.


http://dev.mysql.com/doc/mysql/en/backup.html

you can rsync the bin logs.

our server flushes 4 times a day for the backup script.


--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-   -
- Jason Pyeron  PD Inc. http://www.pdinc.us -
- Partner  Sr. Manager 7 West 24th Street #100 -
- +1 (443) 921-0381 Baltimore, Maryland 21218   -
-   -
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

This message is for the designated recipient only and may contain 
privileged, proprietary, or otherwise private information. If you 
have received it in error, purge the message from your system and 
notify the sender immediately.  Any other use of the email by you 
is prohibited.


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Data sync offline

2005-08-24 Thread Karam Chand
http://www.sitepoint.com/article/mysql-data-sqlyog-job-agent

SJA is available for both Linux and Windows.

Karam

--- Alex Greg [EMAIL PROTECTED] wrote:

 Hi,
 
 
 Our company is considering migrating some tablesfrom
 MyISAM to InnoDB,
 as it has row-level locking and other improvements
 over MyISAM.
 
 However, one of the things we do at the moment is
 rsync the MySQL data
 directory to our development server every night over
 an 2Mbps ADSL
 connection (as we have 40GB of data, downloading it
 all every night
 isn't a viable option).
 
 I am aware that you can't copy the InnoDB binaries
 around to different
 installations. Does anyone have any suggestions as
 to how we could
 continue to do incremental downloads of this data
 over a slow
 connection?
 
 
 Regards,
 
 
 -- Alex
 
 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:   

http://lists.mysql.com/[EMAIL PROTECTED]
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Data sync offline

2005-08-24 Thread Gleb Paharenko
Hello.



Think about replication among other solutions. See:

  http://dev.mysql.com/doc/mysql/en/replication.html





Alex Greg [EMAIL PROTECTED] wrote:

 Hi,

 

 

 Our company is considering migrating some tablesfrom MyISAM to InnoDB,

 as it has row-level locking and other improvements over MyISAM.

 

 However, one of the things we do at the moment is rsync the MySQL data

 directory to our development server every night over an 2Mbps ADSL

 connection (as we have 40GB of data, downloading it all every night

 isn't a viable option).

 

 I am aware that you can't copy the InnoDB binaries around to different

 installations. Does anyone have any suggestions as to how we could

 continue to do incremental downloads of this data over a slow

 connection?

 

 

 Regards,

 

 

 -- Alex

 



-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.NET http://www.ensita.net/
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Gleb Paharenko
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.NET
   ___/   www.mysql.com




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]