Re: copying table fo other database

2006-04-15 Thread Jorrit Kronjee
[EMAIL PROTECTED] wrote: > Hi to all! > > I have to transfer copy of the one table from one to other database. > I was working with phpMyAdmin. I exported table in sql file but, when > tried to Import it to other database I got > Fatal error: Allowed memory size of 8388608 bytes exhausted (tried t

RE: Copying table to another server.

2005-01-06 Thread Tom Crimmins
It should just exit unless you are using -p with mysql. In that case, if mysqldump got an access denied, nothing would output to stdout and mysql would be left waiting for a password. I would try the following: >mysqladmin -h 'other_hostname' create db_name >mysqldump --opt db_name > dump.sql >my

Re: Copying table V.2.0

2001-09-12 Thread Kevin Kotun
I think you need a new approach. It appears that update does not support the join you are attempting. It seems that you are trying to update the value for a column from one table with the value of a column from another table. If this is the case, i would use a shell script to first extract

Re: copying table

2001-01-19 Thread Richard Ellerbrock
Read the manual on INSERT statement. You can INSERT and SELECT at the same time. Alejandro Lujan Toro wrote: > > I have a calendar db, and in there a base table (with > holidays and such). I need to create a table, exactly the > same as the base (data included). Is there an easy way of > doing t