Re: Reg creating log

2005-03-15 Thread Gleb Paharenko
ouput file. I am able to see the > error messages in the command prompt. How to get these error messages in > the output file. Please help me in this. > > > Thanks, > Narasimha > > -Original Message- > From: Gleb Paharenko [mailto:[EMAIL PROTECTED]

RE: Reg creating log

2005-03-14 Thread Tom Crimmins
r messages > in the output file. Please help me in this. > > Thanks, > Narasimha > > -Original Message- > From: Gleb Paharenko > Sent: Friday, March 11, 2005 7:34 PM > To: mysql@lists.mysql.com > Subject: Re: Reg creating log > > Hello. > > You may use -

RE: Reg creating log

2005-03-14 Thread lakshmi.narasimharao
the ouput file. I am able to see the error messages in the command prompt. How to get these error messages in the output file. Please help me in this. Thanks, Narasimha -Original Message- From: Gleb Paharenko [mailto:[EMAIL PROTECTED] Sent: Friday, March 11, 2005 7:34 PM To: mysql@lists

Re: Reg creating log

2005-03-11 Thread Gleb Paharenko
Hello. You may use --tee option of mysql to store the results in the file. Or just redirect the output: mysql -uroot db_name < 'input_file' >'output_file'. See: http://dev.mysql.com/doc/mysql/en/mysql-commands.html [EMAIL PROTECTED] wrote: > > Hi, > > What is the comm

Reg creating log

2005-03-11 Thread lakshmi.narasimharao
Hi, What is the command to create log file while executing mysql command. I.e I want to run a file using mysql as follows Mysql -uroot db_name < "Inputfile" I want to log the above results into a log file, to do the same what option I have to use here with mysql