RE: export result from select statement

2011-01-10 Thread Jerry Schwartz
>-Original Message- >From: Michael Dykman [mailto:mdyk...@gmail.com] >Sent: Sunday, January 09, 2011 3:02 PM >To: LAMP; mysql@lists.mysql.com >Subject: Re: export result from select statement > >I second Jerry's recommendation. It always works like a charm for

RE: export result from select statement

2011-01-10 Thread Jerry Schwartz
>-Original Message- >From: LAMP [mailto:l...@afan.net] >Sent: Sunday, January 09, 2011 9:46 PM >To: mysql@lists.mysql.com >Subject: Re: export result from select statement > >maybe it's "clear" to other but it's pretty unclear. >#mysql -userna

Re: export result from select statement

2011-01-09 Thread Yogesh Kore
#mysql -username -p -e "select * from table_name where id=123" > '/home/me/test/test.txt' On Mon, Jan 10, 2011 at 8:15 AM, LAMP wrote: > maybe it's "clear" to other but it's pretty unclear. > #mysql -username -p "select * from table_name where id=123" > > '/home/me/test/test.txt' > actually do

Re: export result from select statement

2011-01-09 Thread LAMP
maybe it's "clear" to other but it's pretty unclear. #mysql -username -p "select * from table_name where id=123" > '/home/me/test/test.txt' actually doesn't work?!? Jerry Schwartz wrote: The technique I've settled on is this: mysql blah blah blah < the_select_query.sql > the_output_i_want.t

Re: export result from select statement

2011-01-09 Thread LAMP
Eric Bergen wrote: select into outfile is the correct way. What do you mean by doesn't work? Does it give you an error? It was an issue with permissions :-) Thanks On Sat, Jan 8, 2011 at 3:04 PM, LAMP wrote: Hi guys, I wonder how to store to csv or txt file result from SELECT query? n

Re: export result from select statement

2011-01-09 Thread Michael Dykman
I second Jerry's recommendation. It always works like a charm for me. - michael dykman On Sun, Jan 9, 2011 at 2:44 PM, Jerry Schwartz wrote: > The technique I've settled on is this: > > mysql blah blah blah < the_select_query.sql > the_output_i_want.txt > > That gives you a tab-delimited text

RE: export result from select statement

2011-01-09 Thread Jerry Schwartz
The technique I've settled on is this: mysql blah blah blah < the_select_query.sql > the_output_i_want.txt That gives you a tab-delimited text file with column headings. Regards, Jerry Schwartz Global Information Incorporated 195 Farmington Ave. Farmington, CT 06032 860.674.8796 / FAX: 860.674

Re: export result from select statement

2011-01-08 Thread Eric Bergen
select into outfile is the correct way. What do you mean by doesn't work? Does it give you an error? On Sat, Jan 8, 2011 at 3:04 PM, LAMP wrote: > Hi guys, > I wonder how to store to csv or txt file result from SELECT query? not a > whole table nor database. Just results from SELECT query. > Usua

Re: export db to oracle

2010-11-18 Thread Johan De Meersman
On Thu, Nov 18, 2010 at 2:54 PM, Sydney Puente wrot > a mysqldump might do that job too, but the output from mysqldump > --compatible > was rejected by oracle. > Hmm. Interesting, you might want to file an issue about that - now that MySQL is oracle-owned, you'd expect at least that to work, wou

Re: export db to oracle

2010-11-18 Thread Sydney Puente
rejected by oracle. -Syd - Original Message From: Kevin (Gmail) To: Johan De Meersman ; Shawn Green (MySQL) Cc: Sydney Puente ; mysql@lists.mysql.com Sent: Wed, 17 November, 2010 18:17:38 Subject: Re: export db to oracle Hello, It should be possible to connect Oracle to the MySQL

Re: export db to oracle

2010-11-17 Thread kengheng
You can try using Oracle SQL Developer Tool which got the data import function from MySql. On 11/17/2010 4:14 AM, Sydney Puente wrote: Hello, How can I export a mysql 5.0.45 db to Oracle? mysql is going to stau but I need to pass the data to oracle, just so the data can be transfered. I have c

Re: export db to oracle

2010-11-17 Thread Kevin (Gmail)
or ETL and data integration and it is very manageable. You can trap errors using cursors if the data has anomalies. Kevin O'Neill - Original Message - From: "Johan De Meersman" To: "Shawn Green (MySQL)" Cc: "Sydney Puente" ; Sent: Wednesday, Novemb

Re: export db to oracle

2010-11-17 Thread Johan De Meersman
On Wed, Nov 17, 2010 at 2:26 PM, who.cat wrote: > Maybe you can dump as a csv format,then create table all tables in oracle > .After that you can write a script program format the csv to oracle which > can be recognized. > MySQL's select into outfile may well be good enough to manage to output o

Re: export db to oracle

2010-11-17 Thread Johan De Meersman
On Wed, Nov 17, 2010 at 1:43 AM, Shawn Green (MySQL) < shawn.l.gr...@oracle.com> wrote: > On 11/16/2010 15:14, Sydney Puente wrote: > >> Hello, >> >> How can I export a mysql 5.0.45 db to Oracle? mysql is going to stau but I >> need >> to pass the data to oracle, just so the data can be transfered

Re: export db to oracle

2010-11-16 Thread Shawn Green (MySQL)
On 11/16/2010 15:14, Sydney Puente wrote: Hello, How can I export a mysql 5.0.45 db to Oracle? mysql is going to stau but I need to pass the data to oracle, just so the data can be transfered. I have carried out a mysql dump. This seems fine.create table etc. about 20 MB in total. Any ideas? It

Re: Export into txt file (comma delimited)

2010-01-08 Thread partha sarathy
HI, Just add this at the end of your command "fields termininated by ','" like below, select * from ae_a222 where ano=2009 and dia_juliano between '1' and '365' into outfile "C:\\Documents and Settings\\rbastos\\Meus documentos\\teste.txt" fields termininated by ',' ; - Partha www.mafiree.com

Re: Export into txt file (comma delimited)

2010-01-08 Thread Nicola Salvemini
- Rodrigo A. de Brito Bastos wrote >Hey guys! > >Is there a way to export a table into a txt file but delimited *with comma*? > Hello! you can use this syntax: select * from ae_a222 where ano=2009 and dia_juliano between '1' and '365' into outfile"C:\\Documents and Settings\\rbastos\\Meus d

Re: Export as csv

2009-12-13 Thread mos
At 01:17 PM 12/13/2009, bharani kumar wrote: hi friend Am working in php and mysql, i want to write the join query from the 4 table, Am very confused how to do , I'm not sure why you would want to join all of the tables together and then export them. It will mean you will have rows repeated

Re: Export Results?

2007-02-15 Thread Jesse
Thanks, Exactly what I was looking for. It helps to know what you are looking for when browsing the help file. Jesse - Original Message - From: "Chris White" <[EMAIL PROTECTED]> To: "Jesse" <[EMAIL PROTECTED]> Cc: Sent: Thursday, February 15,

Re: Export Results?

2007-02-15 Thread Chris White
Jesse wrote: Is there a way to export results of a query to a file? In other words, if I do a "select * from somefile", is there a phrase like "send output to somefile.txt", or something? I've searched the help file, and I guess I don't know what I'm looking for, if it even exists. I'm usin

Re: Export OpenOffice XML to Mysql

2005-08-02 Thread J. David Boyd
"Alvaro Cobo" <[EMAIL PROTECTED]> writes: > Hi guys: > > I have the following problem: > > In the organization I work for, we have several standard formats which > we have to write for each project we manage (for example: > reports). These are MS-Word documents, for which I have created a > databa

Re: export data as sql inserts

2005-08-01 Thread Peter Brawley
I was just wondering - does anyone have or know of a sql or php script for exporting a table's data as a whole bunch of INSERT statements? phpMyAdmin will generate that script for you. PB -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.338 / Virus Dat

RE: export data as sql inserts

2005-08-01 Thread Rob Agar
perfect! thanks Manoj > -Original Message- > From: ManojW [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 2 August 2005 10:01 AM > To: Rob Agar; mysql@lists.mysql.com > Subject: Re: export data as sql inserts > > > mysqldump is your friend. > > Man

Re: export data as sql inserts

2005-08-01 Thread ManojW
mysqldump is your friend. Manoj - Original Message - From: "Rob Agar" <[EMAIL PROTECTED]> To: Sent: Tuesday, August 02, 2005 8:53 AM Subject: export data as sql inserts > hi list > > I was just wondering - does anyone have or know of a sql or php script > for exporting a table's data

Re: Export from Access

2005-05-18 Thread Karam Chand
If you are on Windows then you can directly import data using SQLyog's ODBC Import Tool. www.webyog.com Regards, Karam --- "S.D.Price" <[EMAIL PROTECTED]> wrote: > Hi, > can anyone explain how I would export a database > created in Access to > MySQL using PHPMyAdmin - I can't seem to import the

Re: Export from Access

2005-05-18 Thread Alvaro Cobo
I've just seen the MySQL Migration Toolkit and looks very nice. Beautiful tool. On 5/17/05, S.D.Price <[EMAIL PROTECTED]> wrote: > Hi, > can anyone explain how I would export a database created in Access to > MySQL using PHPMyAdmin - I can't seem to import the data as csv or txt. > > Thanks > St

RE: Export from Access

2005-05-18 Thread Partha Dutta
, www.mysql.com Are you MySQL certified? www.mysql.com/certification > -Original Message- > From: EP [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 18, 2005 2:02 AM > To: Josh Trutwin; mysql@lists.mysql.com > Subject: Re: Export from Access > > I recently exported a lar

Re: Export from Access

2005-05-17 Thread EP
age > From: Josh Trutwin <[EMAIL PROTECTED]> > To: mysql@lists.mysql.com > Date: Tue, May-17-2005 10:19 AM > Subject: Re: Export from Access > > On Tue, 17 May 2005 17:17:31 +0100 > "S.D.Price" <[EMAIL PROTECTED]> wrote: > > > Hi, > >

Re: Export from Access

2005-05-17 Thread Alvaro Cobo
You can try a freeware utility you can find at: http://www.bullzip.com//products.php (I have tried it and works quite well) Additionally you could use DBDesigner (www.fabforce.com) and make a reverse engineer of you database and export it to a Sql file. Hope this help you. Best regards, Alvaro

Re: Export from Access

2005-05-17 Thread Josh Trutwin
On Tue, 17 May 2005 17:17:31 +0100 "S.D.Price" <[EMAIL PROTECTED]> wrote: > Hi, > can anyone explain how I would export a database created in Access > to MySQL using PHPMyAdmin - I can't seem to import the data as csv > or txt. Acess should allow exporting to CSV. Otherwise you can skip phpMyAdm

RE: Export database to XML/UML/Webpage?

2005-01-28 Thread Kevin Cowley
As long as you've only got 1 instance of Mysql and it's on the default port! Otherwise use one of the MySQL products. Kevin Cowley R&D Tel: 0118 902 9099 (direct line) Email: [EMAIL PROTECTED] Web: http://www.alchemetrics.co.uk > Fabforce's DBDesigner 4 is fantastic... *

RE: Export database to XML/UML/Webpage?

2005-01-28 Thread Erich Beyrent
[[snip]] > Have you looked into using the MySQL Administrator yet? It's a GUI program > that should do most of what you want (I know it doesn't diagram but it's > somewhere to start). You will have to search around to find some other > ER-based GUI administrator tools because I can't think of an

Re: Export database to XML/UML/Webpage?

2005-01-28 Thread SGreen
Mike Jennings <[EMAIL PROTECTED]> wrote on 01/28/2005 07:57:06 AM: > Hello, > >I am looking to export a mysql database to a gui type interface. > Basically i'm looking at a big database and I wanna dump it to a > webpage/uml where I can add notes on what each table is and what it > does, e

Re: export from older version

2004-12-31 Thread Don Stefani
Eric Bergen wrote: If you can use mysqldump to export the data from 3.23 with the -Q switch to quote all db, table, and column names. Thanks for the input, that has worked for me in the past, but it's on a hosted db server and I don't think I have rights to run mysqldump on it. I was hoping to av

Re: export from older version

2004-12-30 Thread Eric Bergen
If you can use mysqldump to export the data from 3.23 with the -Q switch to quote all db, table, and column names. On Thu, 30 Dec 2004 11:31:42 -0800, Don Stefani <[EMAIL PROTECTED]> wrote: > Hello, > > I am trying to import a table structure from ver 3.23.52 to ver > 4.1.7-max and I am getting

Re: Export and destroy relation

2004-08-06 Thread Eamon Daly
>From within MySQL 3? I doubt it. It's pretty easy to do in the language of your choice, though. Here's a version in perl: use DBI; my $dbh = DBI->connect('DBI:mysql:database=test', user, pass); for (@{ $dbh->selectall_arrayref('SELECT * FROM users') }) { my ($id, @user_data) = @{ $_ };

Re: Export query to text file ***[SPAM]*** **SPAM HTMLM**

2004-05-06 Thread Victoria Reznichenko
Yingyos <[EMAIL PROTECTED]> wrote: > > I type this command line. > > mysql -uuser -N -e"select date_format('2004-02-29','%X')" > sample2.txt > > When i open in text editor,it show that '2004' only. > > But i want format display on text file. > > mysql> select date_format('2004-02-29','%X'); >

Re: Export query to text file

2004-05-05 Thread Michael Kruckenberg
#x27;2004-02-29','%X')" > sample2.txt -Original Message- From: Yingyos To: Victor Pendleton Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 5/4/04 11:04 PM Subject: Re: Export query to text file Victor Pendleton wrote: The `INTO OUTFILE` clause is expecting a table r

Re: Re: Export query to text file ***[SPAM]*** **SPAM HTMLM**

2004-05-05 Thread Yingyos
ingyos Santipasert Victor Pendleton wrote: mysql -uuser -N -e"select date_format('2004-02-29','%X')" > sample2.txt -Original Message- From: Yingyos To: Victor Pendleton Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 5/4/04 11:04 PM Subject: Re: Export que

RE: Export query to text file

2004-05-05 Thread Victor Pendleton
mysql -uuser -N -e"select date_format('2004-02-29','%X')" > sample2.txt -Original Message- From: Yingyos To: Victor Pendleton Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 5/4/04 11:04 PM Subject: Re: Export query to text file Victor Pendleton wrot

Re: Export query to text file

2004-05-04 Thread Yingyos
Victor Pendleton wrote: The `INTO OUTFILE` clause is expecting a table reference. An alternatvie is mysql -uuser -N -e"select now()" > sample2.txt -Original Message- From: Yingyos To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 5/4/04 2:20 AM Subject: Export query to text file Hi, I have M

RE: Export query to text file

2004-05-04 Thread Victor Pendleton
The `INTO OUTFILE` clause is expecting a table reference. An alternatvie is mysql -uuser -N -e"select now()" > sample2.txt -Original Message- From: Yingyos To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: 5/4/04 2:20 AM Subject: Export query to text file Hi, I have MySQL 4.0.17 on Windows

RE: export to csv or excel

2004-04-15 Thread Jack Coxen
I use a PERL module called Spreadsheet::WriteExcel. You can get it from CPAN at http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-0.42/. I generate tons of reports monthly using cron to fire off PERL scripts that output my data as Excel spreadsheets using this module. Implementation is

RE: export to csv or excel

2004-04-15 Thread Amit_Wadhwa
Use phpmyadmin. Damn good for data dump in any format you wish... -Original Message- From: Bart De Man [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 6:59 AM To: [EMAIL PROTECTED] Subject: export to csv or excel Hi, Do you know a good tool to export mysql tables to csv or exc

Re: Export Database Structure sans data

2004-01-26 Thread Adam Goldstein
phpMyAdmin also give a nice, simple frontend for doing this... copy tables or db's with/without data. Personally, I don't think mysql should be used on a box without phpMyAdmin on it, at least as a backup admin tool;) -- Adam Goldstein White Wolf Networks http://whitewlf.net On Jan 26, 2004, at

Re: Export Database Structure sans data

2004-01-26 Thread Daniel Kasak
David Perron wrote: Im looknig for the function that will allow me to export the database structure into a static file, without the actual data. I would like to create an ERD diagram with the output file. David mysqldump -d -- Daniel Kasak IT Developer NUS Consulting Group Level 5, 77 Pacific

RE: Export in XML

2003-12-08 Thread Wouter van Vliet
On maandag 8 december 2003 14:08 Jay Blanchard told the butterflies: > [snip] > > Well Todd, it is a little more complex than this. How much do you > > know about XML? > > In fact, exporting is quite simple. Just give > > > mysqldump --xml --password=[password] \ > [-u usernam

RE: Export in XML

2003-12-08 Thread Jay Blanchard
[snip] > Well Todd, it is a little more complex than this. How much do > you know about XML? In fact, exporting is quite simple. Just give > mysqldump --xml --password=[password] \ [-u username] \ databasename \ [tables] A try. Of course, s

RE: Export in XML

2003-12-02 Thread Wouter van Vliet
On maandag 1 december 2003 15:40 Jay Blanchard told the butterflies: > [snip] > Is there a way to export/import MySQL tables in XML format? [/snip] > > Well Todd, it is a little more complex than this. How much do > you know about XML? In fact, exporting is quite simple. Just give > mysq

Re: Export in XML

2003-12-01 Thread Chris Boget
> Or from my place, "It pays for me to read the docs - thoroughly". Oh! > Docs! What are they? :-[ Or just "mysqldump --help" :p Chris -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Export in XML

2003-12-01 Thread Todd Cary
h, Dan Greene -Original Message- From: John Griffin [mailto:[EMAIL PROTECTED]] Sent: Monday, December 01, 2003 10:49 AM To: Dan Greene; Todd Cary; Jay Blanchard Cc: [EMAIL PROTECTED] Subject: RE: Export in XML Look at http://www.mysql.com/doc/en/mysql.html. The -X option may gi

RE: Export in XML

2003-12-01 Thread Jay Blanchard
[snip] The most guarenteed way to have a feature in a product pointed out is to make a public statement that it's not available :) > Look at http://www.mysql.com/doc/en/mysql.html. The -X option > may give you what you need. [/snip] As always, more than one way to skin a cat. -- MySQL General

Re: Export in XML

2003-12-01 Thread Todd Cary
Blanchard Cc: [EMAIL PROTECTED] Subject: RE: Export in XML I think that to answer Todd's question, no there is no inherent way in MySQL to export results as XML the way that sqlserver and oracle do. Another solution that comes to mind (if you're using java) is to write a simple class tha

RE: Export in XML

2003-12-01 Thread Dan Greene
t; To: Dan Greene; Todd Cary; Jay Blanchard > Cc: [EMAIL PROTECTED] > Subject: RE: Export in XML > > > Look at http://www.mysql.com/doc/en/mysql.html. The -X option > may give you what you need. > > > -Original Message- > From: Dan Greene [mailto:[EMAIL PROTE

RE: Export in XML

2003-12-01 Thread John Griffin
Look at http://www.mysql.com/doc/en/mysql.html. The -X option may give you what you need. -Original Message- From: Dan Greene [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 9:57 AM To: Todd Cary; Jay Blanchard Cc: [EMAIL PROTECTED] Subject: RE: Export in XML I think that to

RE: Export in XML

2003-12-01 Thread Dan Greene
: Jay Blanchard > Cc: [EMAIL PROTECTED] > Subject: Re: Export in XML > > > Jay - > > I am not an expert with XML, however I use it with Delphi and > Delphi's > TClientDataset. In this usage, I use the builtin SaveTo and > LoadFrom > methods. > >

RE: Export in XML

2003-12-01 Thread jeffrey_n_Dyke
first part of your questionphpMyAdmin can export in XMLthe less complex peice, in my mind... www.phpmyadmin.net [snip] Is there a way to export/import MySQL tables in XML format? [/snip] Well Todd, it is a little more complex than this. How much do you know about XML? -- MySQL Gen

RE: Export in XML

2003-12-01 Thread Jay Blanchard
[snip] I am not an expert with XML, however I use it with Delphi and Delphi's TClientDataset. In this usage, I use the builtin SaveTo and LoadFrom methods. >[snip] >Is there a way to export/import MySQL tables in XML format? >[/snip] > >Well Todd, it is a little more complex than this. How muc

Re: Export in XML

2003-12-01 Thread Fagyal, Csongor
Todd Cary wrote: Is there a way to export/import MySQL tables in XML format? Yep. It's called "perl" :-)) Sorry 'bout that... ;-) - Csongor -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Export in XML

2003-12-01 Thread Todd Cary
Jay - I am not an expert with XML, however I use it with Delphi and Delphi's TClientDataset. In this usage, I use the builtin SaveTo and LoadFrom methods. Todd Jay Blanchard wrote: [snip] Is there a way to export/import MySQL tables in XML format? [/snip] Well Todd, it is a little more comp

RE: Export in XML

2003-12-01 Thread Jay Blanchard
[snip] Is there a way to export/import MySQL tables in XML format? [/snip] Well Todd, it is a little more complex than this. How much do you know about XML? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: export to textfile -solved :)

2003-10-21 Thread Bernd Tannenbaum
Hi and thx to all who answered :) Okay, finally found my mistake with ur help. One can add the needed options within the "select" statement, not within the "mysql -e" statement as i tried. Working solution is now: ./mysql --skip-column-names -e "select ek_satzart,[...] into outfile 'File' FIELD

Re: export to textfile

2003-10-21 Thread Rory McKinley
gt; Sent: Tuesday, October 21, 2003 1:40 PM Subject: Re: export to textfile Helloand ty for the fast answers, but Am Dienstag, 21. Oktober 2003 13:10 schrieben Sie: > Hi Bernd > If you are just interested in dumping the data in CSV (or whatever) format > you can do it like so

Re: export to textfile

2003-10-21 Thread Bernd Tannenbaum
Helloand ty for the fast answers, but Am Dienstag, 21. Oktober 2003 13:10 schrieben Sie: > Hi Bernd > If you are just interested in dumping the data in CSV (or whatever) format > you can do it like so: > SELECT * > INTO OUTFILE 'arb_file.csv' FIELDS TERMINATED BY ',' LINE TERMINATED BY > '

Re: export to textfile

2003-10-21 Thread Victoria Reznichenko
Bernd Tannenbaum <[EMAIL PROTECTED]> wrote: > > Have only a small problem with my mysql and hope that i can get a lil hint > from ya how to go on. > Currently i`m importing Log-files in the mysql-database with a cronjob > (bashscript in Linux). After some processing in the db itself i try now to

Re: export to textfile

2003-10-21 Thread Alec . Cawley
Possibly you need the SELECT ... INTO OUTFILE command (http://www.mysql.com/doc/en/SELECT.html) which has export options (explained on http://www.mysql.com/doc/en/LOAD_DATA.html, because the command is the complement to LOAD DATA INFILE). |-+--> | |

Re: export to textfile

2003-10-21 Thread Rory McKinley
Hi Bernd If you are just interested in dumping the data in CSV (or whatever) format you can do it like so: SELECT * INTO OUTFILE 'arb_file.csv' FIELDS TERMINATED BY ',' LINE TERMINATED BY '\n' FROM arb_table WHERE arb_conditions There are quite a few options available, so I suggest you check th

Re: export from Access so MYsql can read it

2003-10-10 Thread Illyes Laszlo
Use myodbc www.mysql.com/downloads/api-myodbc.html Best regards On Fri, 10 Oct 2003 12:34:48 -0400, Montagna, Dan wrote > Hi everyone, > > I'm using an Access database and trying to use a macro to export to > a text file for mysql. It's no problem to export to a text file, > but it's in a

Re: Export xml, import into filemakerpro 6.0

2003-06-18 Thread Janice Wright
Sometime recently Zac Korpi said: > I'm new to mysql. Currently I am using php myadmin to manage my database. I'd like > to be able to export mysql database as xml and, in turn, import the xml into a > filemaker pro 6.0 database. If someone else has worked on something similar, any > advice w

Re: Export MySQL to DBF

2003-02-10 Thread Jonathan Disher
On Sat, 8 Feb 2003, Rubens Oliveira wrote: > Hi all, > > I need to regularly export my Web mySQL db to a .dbf format and download > it, so I can use it with another desktop app. > > Does anyone know if I can do this with PHP or Perl, or even ASP? Or any > other idea? I've seen a couple utilities

Re: Export, then Import HUGE number of rows/data?

2002-10-15 Thread Alex Pilson
At 4:46 PM -0500 10/15/02, Paul DuBois wrote: >At 14:56 -0400 10/15/02, Bill Leonard wrote: >>We have a client who wants to switch their hosting over to us, but has an >>issue with his MySQL database. >> >>It's about 1.4 million rows, and about 350MB of data. PhpMyAdmin apparently >>times out when

Re: Export, then Import HUGE number of rows/data?

2002-10-15 Thread Paul DuBois
At 14:56 -0400 10/15/02, Bill Leonard wrote: >We have a client who wants to switch their hosting over to us, but has an >issue with his MySQL database. > >It's about 1.4 million rows, and about 350MB of data. PhpMyAdmin apparently >times out when he is doing the dump. Is that a MySQL issue, or a

Re: Export, then Import HUGE number of rows/data?

2002-10-15 Thread MySQL
Hi, Well I've tried to export 12 million rows with success from mysql to Oracle. I used MS Access and created an ODBC connection to get the data from Mysql, then i exported all rows to a .csv file. Then i used Oracle Sql-loader, because I wanted em in an Oracle DB. But you can import it to anot

Re: Export of text fields from Access2000

2002-10-14 Thread Tac
t;[EMAIL PROTECTED]> To: "Ivo Dvorak" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, October 14, 2002 11:34 AM Subject: RE: Export of text fields from Access2000 If you create the tables beforehand in MySQL and then export the data into the already created table,

RE: Export of text fields from Access2000

2002-10-14 Thread Greg Knaddison
If you create the tables beforehand in MySQL and then export the data into the already created table, that should allow you finer control of your data types. To save time you could export the table from Access, then truncate it to clear out the data, and then change the data types as necessary

RE: export to .sql to other SQL platforms

2002-09-29 Thread Savaidis
I repeat my question to a diferent form : how is possible to export my MySQL data to a diferent SQL form? Makis -Original Message- From: Savaidis [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 1:38 PM To: [EMAIL PROTECTED] Subject: export to .sql to other SQL platforms I

Re: export table?

2002-07-08 Thread Chip Wiegand
On Mon, 2002-07-08 at 04:42, Victoria Reznichenko wrote: > > What about mysqldump? > http://www.mysql.com/doc/m/y/mysqldump.html > > You can make dump file of your table, copy from one server to > another and restore table or > mysqldump database_name table_name | mysql -hhost_name

Re: export table?

2002-07-08 Thread Victoria Reznichenko
Chip, Monday, July 08, 2002, 8:11:20 AM, you wrote: CW> Where is info on exporting a table? I checked the mysql docs and the CW> only reference to export has nothing to do with exporting a table. I CW> want to copy a table from one server to another, should be simple CW> enough, right? What abou

Re: export table?

2002-07-07 Thread Terence
simplist way i know and use, is through mysqlfront www.mysqlfront.de - Original Message - From: "Chip Wiegand" <[EMAIL PROTECTED]> To: "MySQL" <[EMAIL PROTECTED]> Sent: Monday, July 08, 2002 1:11 PM Subject: export table? Where is info on exporting a table? I checked the mysql docs and

RE: Export

2002-04-17 Thread RBRoa
To: [EMAIL PROTECTED] Subject: Re: Export It can help to take backup on the basis of table . But I wants to take backup of complete database and store them in some particular file. Manish - Original Message - From: <[EMAIL PRO

RE: Export

2002-04-17 Thread RBRoa
Use MySQLDumpit can help make backups R.B.Roa PhilCom Corporation Tel. No. 858- Mobile No. (63) (919-xxx) -Original Message- From: Manish Mehta [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 5:45 PM To: mysql S

Re: Export Data From Mysql to CSV

2002-03-04 Thread Paul DuBois
At 11:06 + 3/4/02, Amit Dilip Lonkar wrote: >Hi > >How can I export data, from the database tables in Mysql, to a Comma >Seperated File(CSV). If you have the FILE privilege, you can use SELECT ... INTO OUTFILE. If you don't, I have a Perl script that can export directly as CSV to a file on t

Re: Export Data From Mysql to CSV

2002-03-04 Thread Richard
Hi, SELECT columns INTO OUTFILE 'path/to/directory/file.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY "\n" FROM table for more info checkout: http://www.mysql.com/doc/S/E/SELECT.html cheers Richard At 11:06 04/03/2002 +, Amit Dilip Lonkar wrote: >Hi > >How

Re: export file

2002-02-12 Thread DL Neil
Roger, > * DL Neil > > Mysqldump is a command that is typed at the MySQL command > > line - just as you would SELECT... > huh? mysqldump is a command line utility... it can not be entered in the > mysql monitor, it must be entered on the unix/linux/dos prompt. > > > =to be honest, I rarely use i

RE: export file

2002-02-12 Thread Roger Baklund
* DL Neil > Mysqldump is a command that is typed at the MySQL command > line - just as you would SELECT... huh? mysqldump is a command line utility... it can not be entered in the mysql monitor, it must be entered on the unix/linux/dos prompt. > =to be honest, I rarely use it. well, at least no

Re: export file

2002-02-12 Thread DL Neil
Hi, > thanks!! =my pleasure. > i think the dumping commnad is a shell command! am i right? > if it is can you tell me how to change command header > mysql> to shell> > or tell me where i misunderstood. =when people talk of a "shell command", I tend to assume they are talking about Unix comman

Re: export file

2002-02-10 Thread DL Neil
Greetings > i an doing my assignment using mysql to establish a database!! > i already create the table and insert the data, > but i don't know how to create a export file, > anyone can help me!! Check out the online manual (4.8.5 mysqldump, Dumping Table Structure and Data), or take a look a

Re: Export database

2002-01-24 Thread Gerald Clark
Can you be more specific? Export to what/where? Manish Mehta wrote: >Hi > >i have 3.23.32 version of mysql. i wants to export the database from >\mysql\bin\ >please tell. > >thanks in advance > >Manish Mehta >CORE Solucomm Limited >423 B, Hamilton Court, >DLF City, Phase IV, >Gurgaon, >India -

Re: Export just part of a table to a CSV file

2001-11-22 Thread Richard R. Harms
Check out the 'INTO OUTFILE' portion of the SELECT statement. http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#SELECT -rh >Hello all, > >Usually I back-up my tables importing them to .csv files. > >What I do is I issue the following command : > >mysqldump - h localhost -