How to start / stop mySQL with NetBeans 6.7 under Apple MAC OS X 10.5 LEOPARD ?

2009-06-25 Thread Jacques PIOTROWSKI
>Description: In the tab "services", item "databases", choice "mySQL server at localhost", right click, "admin properties" tab of window "mySQl server properties" Path to start command "/usr/local/mysql/support-files/mysql.server" with argument "start" : don't work Path to stop com

MySQL Server 5.4.1-beta has been released

2009-06-25 Thread Timothy Smith
Dear MySQL users, MySQL Server 5.4.1-beta, a new version of the popular Open Source Database Management System, has been released. Bear in mind that this is a beta release, and as with any other pre-production release, caution should be taken when installing on production level systems or system

Re: Indexing dynamics in MySQL Community Edition 5.1.34

2009-06-25 Thread mos
Mike, I re-posted your Show Status to the group to see if anyone can offer a way to speed up the indexing for you. BTW, you are adding ALL of the indexes to the table using ONE sql statement right? And not a separate SQL statement to build each index? Mike At 02:01 AM 6/25/2009, you w

Re: How can we stock the query result into a text file

2009-06-25 Thread John Daisley
SELECT INTO OUTFILE does almost the same thing as spool in SQL*Plus SELECT columnname from tablename into outfile '/path/and/filename.txt' Regards John > Hi > > In mysql , how can we stock the query result into a text file > > the table is too large , i don't want to dump it , but select a par

How can we stock the query result into a text file

2009-06-25 Thread Lin Chun
Hi In mysql , how can we stock the query result into a text file the table is too large , i don't want to dump it , but select a part of it, i wrote a script perl to do this, but each time i have to change the parameters in the script to get another table, when i google it, i find the function in

RE: Indexing dynamics in MySQL Community Edition 5.1.34

2009-06-25 Thread Jerry Schwartz
>-Original Message- >From: Mike Spreitzer [mailto:mspre...@us.ibm.com] >Sent: Thursday, June 25, 2009 1:38 AM >To: mysql@lists.mysql.com >Subject: Re: Indexing dynamics in MySQL Community Edition 5.1.34 > >Actually, my characterization of the current state is wrong. It appears >that one

Re: how to fetch and calculate data from remote database and insert into local database

2009-06-25 Thread Lin Chun
Hi I think you mean that you want to get some results (by calculating the data in remote database) and then stock them in local database; so dosen't need to dump the db and transfer to local,but need to do some program to fetch the result and insert into the local database; In addition, like John s

Re: how to fetch and calculate data from remote database and insert into local database

2009-06-25 Thread bharani kumar
u asking any scripts On 6/25/09, John Daisley wrote: > Depending on what you mean by 'Calculate the data', you could try using a > tool like Talend (www.talend.com). > >> What exactly do you want to calculate? >> >> Generally, export (mysqldump cmd) and import (mysql cmd) of data is done >> as >

Re: how to fetch and calculate data from remote database and insert into local database

2009-06-25 Thread John Daisley
Depending on what you mean by 'Calculate the data', you could try using a tool like Talend (www.talend.com). > What exactly do you want to calculate? > > Generally, export (mysqldump cmd) and import (mysql cmd) of data is done > as > below: > > Supposing "japan" is the source db and "usa" is your

Re: how to fetch and calculate data from remote database and insert into local database

2009-06-25 Thread Uma Bhat
What exactly do you want to calculate? Generally, export (mysqldump cmd) and import (mysql cmd) of data is done as below: Supposing "japan" is the source db and "usa" is your destination db, 1) Dump the database on source server: $ cd $ mysqldump -u -S -p japan > ./source_japan.dbdmp 2) ssh t