Generating reports/exporting data?

2007-09-17 Thread chombee
Can anyone recommend an easy, free way to generate reports from a MySQL database in a nicely readable form? e.g. in plain text, HTML, PDF, or even visualised in the form of graphs and charts. For example, if I have constructed several queries and want to run them and export all of their results

RE: Generating reports/exporting data?

2007-09-17 Thread Daevid Vincent
: Monday, September 17, 2007 8:29 AM To: mysql@lists.mysql.com Subject: Generating reports/exporting data? Can anyone recommend an easy, free way to generate reports from a MySQL database in a nicely readable form? e.g. in plain text, HTML, PDF, or even visualised in the form of graphs

Re: Generating reports/exporting data?

2007-09-17 Thread Michael Dykman
[mailto:[EMAIL PROTECTED] Sent: Monday, September 17, 2007 8:29 AM To: mysql@lists.mysql.com Subject: Generating reports/exporting data? Can anyone recommend an easy, free way to generate reports from a MySQL database in a nicely readable form? e.g. in plain text, HTML, PDF, or even

Exporting Data To File and Can't Create/Write to File

2007-05-28 Thread John Kopanas
I am doing the following: echo 'SELECT * FROM jobs WHERE id = 1 INTO OUTFILE /Users/jkopanas/Sites/test_this_out.csv;' | mysql -uroot backlog_development And I get the following error: ERROR 1 (HY000) at line 1: Can't create/write to file '/Users/jkopanas/Sites/test_this_out.csv' (Errcode: 13)

Re: Exporting Data To File and Can't Create/Write to File

2007-05-28 Thread Baron Schwartz
Hi, John Kopanas wrote: I am doing the following: echo 'SELECT * FROM jobs WHERE id = 1 INTO OUTFILE /Users/jkopanas/Sites/test_this_out.csv;' | mysql -uroot backlog_development And I get the following error: ERROR 1 (HY000) at line 1: Can't create/write to file

Re: Exporting Data To File and Can't Create/Write to File

2007-05-28 Thread John Kopanas
Directory existed but I did not have the right permissions on the directory for the mysql user. Thanks my friend. :-) On 5/28/07, Baron Schwartz [EMAIL PROTECTED] wrote: Hi, John Kopanas wrote: I am doing the following: echo 'SELECT * FROM jobs WHERE id = 1 INTO OUTFILE

importing, exporting data in IIF format (for example quickbooks)

2005-04-11 Thread symbulos partners
Dear friends, one of our customer is asking to integrate a mysql application with an application called Quickbooks (accounting package, www.quickbooks.co.uk). Apparrently the application can only import export files in the format IIF. Has anybody any expereince in importing, exporting to this

re: Exporting Data via Command Line

2005-03-04 Thread MrExecutive
Hello Guys, I am a newbie to mySQL and im trying to export my database via the mySQL Command line but i cant seem to find any good documentation on how to do this. More articles are telling me to use phpAdmin or some other gui tool. I would like to learn the commands anyone has a good doc on

Re: Exporting Data via Command Line

2005-03-04 Thread Scott Hamm
http://www.mysql.com would be a nice place to start. On Fri, 04 Mar 2005 13:12:02 -0500, MrExecutive [EMAIL PROTECTED] wrote: Hello Guys, I am a newbie to mySQL and im trying to export my database via the mySQL Command line but i cant seem to find any good documentation on how to do

Re: Exporting Data via Command Line

2005-03-04 Thread jacob martinson
run: mysqldump --help On Fri, 04 Mar 2005 13:12:02 -0500, MrExecutive [EMAIL PROTECTED] wrote: Hello Guys, I am a newbie to mySQL and im trying to export my database via the mySQL Command line but i cant seem to find any good documentation on how to do this. More articles are telling

Re: Exporting Data via Command Line

2005-03-04 Thread jacob martinson
i'll usually pipe mysqldump into gzip if it's a large database, or gpg if there's sensitive data in it. -jacob On Fri, 4 Mar 2005 12:22:08 -0600, jacob martinson [EMAIL PROTECTED] wrote: run: mysqldump --help On Fri, 04 Mar 2005 13:12:02 -0500, MrExecutive [EMAIL PROTECTED] wrote:

re: Exporting Data via Command Line

2005-03-04 Thread SGreen
MrExecutive [EMAIL PROTECTED] wrote on 03/04/2005 01:12:02 PM: Hello Guys, I am a newbie to mySQL and im trying to export my database via the mySQL Command line but i cant seem to find any good documentation on how to do this. More articles are telling me to use phpAdmin or some

Re: Exporting Data via Command Line

2005-03-04 Thread Eric Bergen
Lets not forget about mysqlhotcopy. -Eric On Fri, 4 Mar 2005 13:42:48 -0500, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: MrExecutive [EMAIL PROTECTED] wrote on 03/04/2005 01:12:02 PM: Hello Guys, I am a newbie to mySQL and im trying to export my database via the mySQL Command

Exporting data

2003-12-15 Thread Roberts, Mark (Tulsa)
I have an order taking system where the tables are store in a MySql database. I need to develop a select statement to output all new orders to a .csv formatted file. Is this possible to do in MySql. I would try looking this up, however, I am not even sure what to look for in the documentation.

Re: Exporting data

2003-12-15 Thread Tobias Asplund
On Mon, 15 Dec 2003, Roberts, Mark (Tulsa) wrote: I have an order taking system where the tables are store in a MySql database. I need to develop a select statement to output all new orders to a .csv formatted file. Is this possible to do in MySql. I would try looking this up, however, I am

Exporting Data

2003-02-12 Thread Stephen Lewis
How would you export your data from the mysql tables to a tab or coma delimiter. Thank you, Stephen A. Lewis [EMAIL PROTECTED] - Before posting, please check: http://www.mysql.com/manual.php (the manual)

Re: Exporting Data

2003-02-12 Thread Greg Donald
How would you export your data from the mysql tables to a tab or coma delimiter. There are lots of ways, here are my favorite two: mysqldump: http://www.mysql.com/doc/en/mysqldump.html phpMyAdmin : http://phpmyadmin.sourceforge.net/ -- Greg Donald http://destiney.com/

exporting data

2002-08-02 Thread Desmond Lee
Hi guys I know that you can import data into a table by using 'load data infile' or 'mysql' import. however, is there something that allows you to export the create statemtns for the table schema and the data of a database for backup. SO that if we reinstall the whole thing from scratch all

Re: exporting data

2002-08-02 Thread Jeremy Zawodny
On Fri, Aug 02, 2002 at 03:55:52PM -0700, Desmond Lee wrote: Hi guys I know that you can import data into a table by using 'load data infile' or 'mysql' import. however, is there something that allows you to export the create statemtns for the table schema and the data of a database

Re: exporting data

2002-08-02 Thread Mike Johnson
Do you mean like 'mysqldump'? You can use mysqldump to dump tables +/- data and then upload it to a database later--or 'import' it, e.g., mysqldump -u user_name database all the tables from that database. mysqldump takes a variety of arguments. see 'man mysqldump' for more info. -mj

Re: exporting data

2002-08-02 Thread Desmond Lee
Thanks Jeremy :) From: Jeremy Zawodny [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Desmond Lee [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re: exporting data Date: Fri, 2 Aug 2002 15:59:01 -0700 On Fri, Aug 02, 2002 at 03:55:52PM -0700, Desmond Lee wrote: Hi guys I know

Exporting Data from web page

2002-05-07 Thread Dave
In simple terms I need to be able to click a link on a webpage which runs some SQL to produce a result set and then prompts the user to save this as a pipe delimited file onto their HDD. Or which does the saving to HDD without the prompt but it still needs to be triggered from the webpage.

RE: Exporting Data from web page

2002-05-07 Thread Gurhan Ozen
/S/E/SELECT.html Gurhan -Original Message- From: Dave [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 07, 2002 7:38 AM To: [EMAIL PROTECTED] Subject: Exporting Data from web page In simple terms I need to be able to click a link on a webpage which runs some SQL to produce a result set

RE: exporting data to a new DB

2002-01-29 Thread Demirchyan Oganes-AOD098
]] Sent: Tuesday, January 29, 2002 1:41 PM To: Demirchyan Oganes-AOD098 Subject: Re: exporting data to a new DB Your message cannot be posted because it appears to be either spam or simply off topic to our filter. To bypass the filter you must include one of the following words in your message

RE: exporting data to a new DB

2002-01-29 Thread Paul DuBois
At 15:48 -0600 1/29/02, Demirchyan Oganes-AOD098 wrote: Hello everyone, I need to export some data from one DB to another. Suppose I'm connected to DB1 and my trying to get stuff from there and insert into DB2. I'm using Insert Select statements. Once I'm connected to DB1, do I have to

Re: Exporting Data

2001-11-27 Thread Benjamin Pflugmann
Hi. On Mon, Nov 19, 2001 at 11:32:58PM -0600, [EMAIL PROTECTED] wrote: Hello, Sorry about the OT, but I need to export data from various MySQL tables and import into Excell spread sheets. Was hoping someone could suggest the best format, TAB, CSV..etc delimited, which is the preferred

Exporting Data

2001-11-20 Thread Giuseppe Maxia
You can export using SELECT fieldlist INTO OUTFILE filename FROM table; This will create a file with tab separated fields. It is Excel default separator. Within Excel, you can open the file, by giving filetype text, and a wizard will guide you through the translation. You can create a CSV file

Re: Exporting Data

2001-11-20 Thread Mike(mickalo)Blezien
Cancel this, I found the problem. Had to grant FILE privileges to this user! total forgot about that! TIA, On Tue, 20 Nov 2001 10:14:52 +0100, Giuseppe Maxia [EMAIL PROTECTED] wrote: You can export using SELECT fieldlist INTO OUTFILE filename FROM table; This will create a file with tab

Exporting Data

2001-11-19 Thread Mike(mickalo)Blezien
Hello, Sorry about the OT, but I need to export data from various MySQL tables and import into Excell spread sheets. Was hoping someone could suggest the best format, TAB, CSV..etc delimited, which is the preferred format? thanks, mysql database Mike(mickalo)Blezien

EXPORTING DATA: OK, this might be a bit general but..

2001-06-19 Thread David Ayliffe
I need some advice on how to export a tables data to import later into Access. This export HAS to be automated (and I'm using VC++ API for MySQL) The problems I'm faced with are (1) Before I can import this data into access I have to create the table in access; I'm familiar with ADO and

Re: EXPORTING DATA: OK, this might be a bit general but..

2001-06-19 Thread Erik Gillespie
I'm by no means an authority on this kind of stuff but you could write a portable C program that generates a big ol' SQL script containing INSERT INTO statements :) I can't really think of a fast way to do it since you want to go between MySQL and Access without ODBC and other utilities (I'm not

Exporting data from a MySQL database to an oracle database

2001-02-22 Thread Joe . O'Toole
Hi, I have a MySql database with customer information which is to be exported to an oracle database. I was wondering if someone could tell me the easiest way of doing this. Is there any such applications which look after the exporting of the data from the MySql database and importing to the new

Re: Exporting data from a MySQL database to an oracle database

2001-02-22 Thread Ed Carp
Joe.O'[EMAIL PROTECTED] (Joe.O'[EMAIL PROTECTED]) writes: I have a MySql database with customer information which is to be exported to an oracle database. I was wondering if someone could tell me the easiest way of doing this. Is there any such applications which look after the exporting of

SV: Exporting data from MySQL to Oracle

2001-02-14 Thread P?l Wester
: Exporting data from MySQL to Oracle Hi there, please check the oracle migration bench at the oracle technet. http://technet.oracle.com kind regards denis mettler -Urspr?ngliche Nachricht- Von: Noor Dawod [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 13. Februar 2001 17

Exporting data from MySQL to Oracle

2001-02-13 Thread Noor Dawod
Hello, I'm having a problem exporting MySQL BLOB's to Oracle, especially those records that has "Carriage Return" or "Line Feed" characters in them. Has anyone done this before, and how did they do it? I need an immediate help in this subject. I'd appreciate you help very much. Thanks Noor

RE: Exporting data from MySQL to Oracle

2001-02-13 Thread Cal Evans
Didn't Oracle just release a MySQL to Oracle migration kit? Check the Oracle website. Cal http://www.calevans.com -Original Message- From: Noor Dawod [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 8:41 AM To: MySQL List Subject: Exporting data from MySQL to Oracle Hello

RE: Exporting data from MySQL to Oracle

2001-02-13 Thread Noor Dawod
I couldn't find such product on Oracle's website. Noor -Original Message- From: Cal Evans [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 5:51 PM To: Noor Dawod; MySQL List Subject: RE: Exporting data from MySQL to Oracle Didn't Oracle just release a MySQL to Oracle

AW: Exporting data from MySQL to Oracle

2001-02-13 Thread Denis Mettler
: Exporting data from MySQL to Oracle I couldn't find such product on Oracle's website. Noor -Original Message- From: Cal Evans [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 5:51 PM To: Noor Dawod; MySQL List Subject: RE: Exporting data from MySQL to Oracle Didn't Oracle just

Exporting data

2001-02-10 Thread Mike Yuen
How do I dump all the contents of a table called "clients" into a .txt file (or anyother kind of file for that matter). Thanks for your help. Mike - Before posting, please check: http://www.mysql.com/manual.php (the

Re: Exporting data

2001-02-10 Thread Thalis A. Kalfigopoulos
Hello, if you want to have a file with just the bare data contents of the table, you simply do: mysql SELECT * FROM table_name INTO OUTFILE '/tmp/lala.txt'; otherwise if you want your data represented in SQL, so that you can reconstruct the table by importing at a later time (a backup form):

Re: Exporting data

2001-02-10 Thread Gerald R. Jensen
to be an invaluable reference. G. Jensen - Original Message - From: "Mike Yuen" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 10, 2001 7:03 PM Subject: Exporting data How do I dump all the contents of a table called "clients" into a .txt file (or a