473,396 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Any GUI to import/export MySQL?

Hi,

I need to export a 200MB database from one domain to another.
phpMyAdmin timeout after a while and is not ideal.

I don't mind spending money if I have to but this is rather urgent.

I only work on win32 machines but the servers are Unix machines.
I don't have command line access to the servers.

Do you guys know anything I could use?

Many thanks

Simon

Feb 28 '06 #1
10 3562
Simon wrote:
Hi,

I need to export a 200MB database from one domain to another.
phpMyAdmin timeout after a while and is not ideal.

I don't mind spending money if I have to but this is rather urgent.

I only work on win32 machines but the servers are Unix machines.
I don't have command line access to the servers.

Do you guys know anything I could use?


Take a look at www.mysql.com, they do offer a couple of frontends that can be
used with mysql.
//Aho
Feb 28 '06 #2
J.O. Aho wrote:
Simon wrote:
Hi,

I need to export a 200MB database from one domain to another.
phpMyAdmin timeout after a while and is not ideal.

I don't mind spending money if I have to but this is rather urgent.

I only work on win32 machines but the servers are Unix machines.
I don't have command line access to the servers.

Do you guys know anything I could use?


Take a look at www.mysql.com, they do offer a couple of frontends that can
be used with mysql.
//Aho

hi
which one?hte migration toolkit?
--
www.gregerhaga.net
Feb 28 '06 #3
still using PHP:

1.
You can always dump an OUTFILE and insert elsewere as an INFILE
very fast. but both mysql users will require FILE privileges.

2.
Plus if you can access shell programs via PHP, so you can use the
`mysqldump` and `mysqladmin` programs. without needing command line access.
off the top of my head ... execute a shell command like:
`mysqldump -uxxx -pxxx -hlocalhost mydb > './tmpfile' &&
mysqldump -uzzz -pzzz -hremotehost newdb < './tmpfile' `


"Simon" <sp********@example.com> wrote in message
news:46************@individual.net...
Hi,

I need to export a 200MB database from one domain to another.
phpMyAdmin timeout after a while and is not ideal.

I don't mind spending money if I have to but this is rather urgent.

I only work on win32 machines but the servers are Unix machines.
I don't have command line access to the servers.

Do you guys know anything I could use?

Many thanks

Simon

Feb 28 '06 #4
>
1.
You can always dump an OUTFILE and insert elsewere as an INFILE
very fast. but both mysql users will require FILE privileges.
hum, how do you do that?

2.
Plus if you can access shell programs via PHP, so you can use the
`mysqldump` and `mysqladmin` programs. without needing command line
access.
off the top of my head ... execute a shell command like:
`mysqldump -uxxx -pxxx -hlocalhost mydb > './tmpfile' &&
mysqldump -uzzz -pzzz -hremotehost newdb < './tmpfile' `


Yes, I guess I could always do that.
I also found the MySQL administrator on www.mysql.com.

Both domains seem to have remote access, so I should be ok, (I hope).

A script would have been great, because the problem is that phpmyadmin
timeout after 30s, so a JavaScript type of script would have been nice.

Simon
Feb 28 '06 #5

"Simon" <sp********@example.com> wrote in message
news:46************@individual.net...

1.
You can always dump an OUTFILE and insert elsewere as an INFILE
very fast. but both mysql users will require FILE privileges.


hum, how do you do that?


SELECT INTO OUTFILE '/tmp/whatever' ...
see http://dev.mysql.com/doc/refman/4.1/en/select.html
- and -
LOAD DATA INFILE ....
see http://dev.mysql.com/doc/refman/4.1/en/load-data.html


Feb 28 '06 #6
>> >
1.
You can always dump an OUTFILE and insert elsewere as an INFILE
very fast. but both mysql users will require FILE privileges.


hum, how do you do that?


SELECT INTO OUTFILE '/tmp/whatever' ...
see http://dev.mysql.com/doc/refman/4.1/en/select.html
- and -
LOAD DATA INFILE ....
see http://dev.mysql.com/doc/refman/4.1/en/load-data.html


Yes, but then it will timeout after 30 sec, (I think).

Simon
Feb 28 '06 #7
>> SELECT INTO OUTFILE '/tmp/whatever' ...
see http://dev.mysql.com/doc/refman/4.1/en/select.html
- and -
LOAD DATA INFILE ....
see http://dev.mysql.com/doc/refman/4.1/en/load-data.html


Yes, but then it will timeout after 30 sec, (I think).

trust me its fast! you can dump thousands of rows in milliseconds.
and even if it did timeout, you can extend the PHP execution time with
set_time_limit()
see http://uk2.php.net/manual/en/functio...time-limit.php
Feb 28 '06 #8
On Tue, 28 Feb 2006 08:56:30 +0000, Simon wrote:
Hi,

I need to export a 200MB database from one domain to another.
phpMyAdmin timeout after a while and is not ideal.

I don't mind spending money if I have to but this is rather urgent.

I only work on win32 machines but the servers are Unix machines.
I don't have command line access to the servers.

Do you guys know anything I could use?


Tora works with MySQL as well (http://tora.sourceforge.net). It's a
Linux GUI tool, based on KDE and QT (there is also a Win32 version)
which is extremely handy for another variety of databases (tora stands
for "Tool for Oracle Applications developer" where Oracle Corp. is the
company that owns Innodb and makes that beautiful, fast kernel for MySQL.
Once again, this is not a joke: tora really does work with MySQL as well
as with Oracle.

--
http://www.mgogala.com

Mar 2 '06 #9
"Mladen Gogala" <go****@sbcglobal.net> wrote:
Tora works with MySQL as well (http://tora.sourceforge.net). It's a
Linux GUI tool, based on KDE and QT (there is also a Win32
version) which is extremely handy for another variety of databases
(tora stands for "Tool for Oracle Applications developer" where
Oracle Corp. is the company that owns Innodb and makes that
beautiful, fast kernel for MySQL.

Once again, this is not a joke: tora really does work with MySQL
as well as with Oracle.


Hello, Mladen.

This particular tool requires an oci.dll file. Would you know where
to pick up such?

Jim Carlock
Post replies to the group.
Mar 2 '06 #10
NC
Simon wrote:

I need to export a 200MB database from one domain to another.
phpMyAdmin timeout after a while and is not ideal.

I don't mind spending money if I have to but this is rather urgent.

I only work on win32 machines but the servers are Unix machines.
I don't have command line access to the servers.
Another potential problem is that your Web hosting company may be
blocking remote access to MySQL...
Do you guys know anything I could use?


Start with the obvious -- the command-line MySQL client tools. You can
install mysql client and related utilities on your Windows machine and
use it to access your remote servers. Just start MySQL client with a
-h key to access a remote server, something like this:

mysql -h mysql.myremoteserver.com -u myusername -p

There are also plenty of third-party tools to access and manage remote
MySQL servers. My personal favorite is MySQLmanager:

http://www.sqlmanager.net/en/products/mysql/manager

You can download a fully-functional 30-day trial version and actually
migrate your data before you buy...

Cheers,
NC

Mar 2 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Bruce A. Julseth | last post by:
Newbie Question: Is there a way to import MS Access into MySQL? Maybe create a CSV or something. If so, what would be the SQL to do this? Thanks... Bruce
2
by: Damien | last post by:
Hi to all, I need to design an import/export system. Data comes from a filemaker pro DB in a big CSV file. Some alterations are made on the data as it is imported into my mysql table. Data is...
0
by: Vidhya CS | last post by:
Hi , I am trying to export a database from one machine ie linux, and import the same database to another machine ie ,solaris . I exported the database using the following command . mysqldump...
2
by: Brian Huether | last post by:
I saved my website databgase to my home computer. I am setting up a local version of the site, and need to import the database. I have mysql and everything set up. But when I try to run the sql...
4
by: news | last post by:
Our production database in an exported textfil runs about 60 MB. Compressed that's about 9 MB. I'm trying to import the export into another machine running FC3 and mySQL 11.18, and it appears as...
5
by: Kajol | last post by:
Hi All, can u plz tell me how to import data from mysql to another database. & how to export data from anotherdata base to mysql Thanx for ur Advice Regards Kajol
1
by: Martin Herrman | last post by:
Hi all, I have installed MySQL on my Linux Mandrake 10 workstation; I didn't change any default values (except for the user-accounts). I used a CMS to create a website which I want to upload to...
7
by: phillip.s.powell | last post by:
We're looking at a GUI interface for our MySQL DB and I am interested in MySQL Administrator, however, one of our requirements is to be able to import/export databases. Is this possible or do I...
7
by: Randy | last post by:
Folks: We have a web-based app that's _really_ slowing down because multiple clients are writing their own private data into a single, central database. I guess the previous programmer did...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.