Re: importing a dumpfile from with the mysql client

2006-05-07 Thread Luke Vanderfluit
one I have wondered about myself. Is there a way in mysql to "attach" to session to issue a commit? -Original Message- From: sheeri kritzer [mailto:[EMAIL PROTECTED] Sent: Friday, May 05, 2006 3:02 PM To: Luke Vanderfluit Cc: MySQL List Subject: Re: importing a dumpfile f

Re: importing a dumpfile from with the mysql client

2006-05-05 Thread sheeri kritzer
to session to issue a commit? -Original Message- From: sheeri kritzer [mailto:[EMAIL PROTECTED] Sent: Friday, May 05, 2006 3:02 PM To: Luke Vanderfluit Cc: MySQL List Subject: Re: importing a dumpfile from with the mysql client On 5/4/06, Luke Vanderfluit <[EMAIL PROTECTED]> wrote:

RE: importing a dumpfile from with the mysql client

2006-05-05 Thread George Law
:) ) This is a good question, one I have wondered about myself. Is there a way in mysql to "attach" to session to issue a commit? -Original Message- From: sheeri kritzer [mailto:[EMAIL PROTECTED] Sent: Friday, May 05, 2006 3:02 PM To: Luke Vanderfluit Cc: MySQL List Subject: Re

Re: importing a dumpfile from with the mysql client

2006-05-05 Thread sheeri kritzer
On 5/4/06, Luke Vanderfluit <[EMAIL PROTECTED]> wrote: [snip] I started this process remotely then went to the site to finish it. But when the dump finished (several hours later) I was not able to execute the following commands from my original location. mysql> SET FOREIGN_KEY_CHECKS = 1; mysq

importing a dumpfile from with the mysql client

2006-05-04 Thread Luke Vanderfluit
Hi. I recently imported a dumpfile into mysql4.1.18 I did this using the 'source' syntax from inside the mysql client. this is syntax I used: mysql>create database dbname; mysql>use dbname; -unset the creation of bin-logs in my.cnf mysql> SET SQL_LOG_BIN = 0 then some tips to fast import dump f

Re: Importing a dumpfile

2004-01-13 Thread Roger Baklund
* Matthew Stuart > Right having just got to grips with the mysqldump command, I would like > to be able to know how to import the database back in to MySQL should > anything happen to my PC. Good thinking. :) > Does mysqlimport have to be done in the command line window like > mysqldump, and if s

Re: Importing a dumpfile

2004-01-13 Thread Douglas Sims
Hi Mat mysqldump produces files containing SQL statements. mysqlimport allows you to load data from comma-delimited (or other) text files. For example, the following line will dump the contents of the table 'goat_painters' in the database 'the_goat_database' into a file called 'goat_painters.

Re: Importing a dumpfile

2004-01-13 Thread Daniel Kasak
Matthew Stuart wrote: Right having just got to grips with the mysqldump command, I would like to be able to know how to import the database back in to MySQL should anything happen to my PC. Does mysqlimport have to be done in the command line window like mysqldump, and if so, how? It's just th

Importing a dumpfile

2004-01-13 Thread Matthew Stuart
Right having just got to grips with the mysqldump command, I would like to be able to know how to import the database back in to MySQL should anything happen to my PC. Does mysqlimport have to be done in the command line window like mysqldump, and if so, how? It's just that I tried to import st