As for your second question, SELECT INTO OUTFILE (making sure mysql user has 
write privileges in the directory/file you want to write to).

MySQL give the example:

SELECT a,b,a+b INTO OUTFILE '/tmp/result.text'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM test_table;

...as producing a CSV file of lines of field-output 'a', 'b' and 'a+b'.

On Monday 16 May 2005 15:15, Seena Blace wrote:
> Hi,
> I want to migrate 1 table from MYSQL to oracle ?
> how to do that ?
>
> How to get output of table into text file?
> thanks
> .
>
>
> ---------------------------------
> Yahoo! Mail Mobile
>  Take Yahoo! Mail with you! Check email on your mobile phone.

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

Reply via email to