Re: Mysql - Tables Export to Excel!

2010-04-18 Thread Prabhat Kumar
Note : if you table name it will export all tables from given database; eg:* mysqldump -u user -ppassword wordpress --no-data > Dumpdata.txt * It will export all tables from db wordpress. On Mon, Apr 19, 2010 at 8:57 AM, Prabhat Kumar wrote: > use can use mysqldump with option *-no-data* > eg.

Re: Mysql - Tables Export to Excel!

2010-04-18 Thread Prabhat Kumar
use can use mysqldump with option *-no-data* eg. *mysqldump -u user -ppassword wordpress user --no-data > Dumpdata.txt * where wordpress is my database and user is my table. Thanks On Sun, Apr 18, 2010 at 9:48 PM, Shawn Green wrote: > Vikram A wrote: > >> Hi, >> >> I would like to export my t

Re: Mysql - Tables Export to Excel!

2010-04-18 Thread Shawn Green
Vikram A wrote: Hi, I would like to export my table structure from MYSQL from a particular db. Is there any tool for doing this? There are several ways to get "structure" information from within MySQL: the SHOW COLUMNS... command the SHOW INDEXES... command the SHOW CREATE TABLE... command

Re: Mysql - Tables Export to Excel!

2010-04-08 Thread Claudio Nanni
Or MySQL Connector :) On Apr 8, 2010 10:11 AM, "Carsten Pedersen" wrote: The MySQL ODBC driver? / Carsten On Thu, 8 Apr 2010 10:42:28 +0530 (IST), Vikram A wrote: > Hi, > > I would like to export my table structure from MYSQL from a particular db. > Is there any... > !DSPAM:451,4bbd65f93304

RE: Mysql - Tables Export to Excel!

2010-04-08 Thread George Pitcher
2010 08:18 To: Vikram A Cc: MY SQL Mailing list Subject: Re: Mysql - Tables Export to Excel! Hi Vikram, You can use toad for mysql ( It's a free tool) to export table structure or data. Even you can use mysqldump also. Krishna On Thu, Apr 8, 2010 at 10:42 AM, Vikram A wrote: > Hi, >

Re: Mysql - Tables Export to Excel!

2010-04-08 Thread Krishna Chandra Prajapati
Hi Vikram, You can use toad for mysql ( It's a free tool) to export table structure or data. Even you can use mysqldump also. Krishna On Thu, Apr 8, 2010 at 10:42 AM, Vikram A wrote: > Hi, > > I would like to export my table structure from MYSQL from a particular db. > Is there any tool for d

Re: Mysql - Tables Export to Excel!

2010-04-08 Thread Carsten Pedersen
The MySQL ODBC driver? / Carsten On Thu, 8 Apr 2010 10:42:28 +0530 (IST), Vikram A wrote: > Hi, > > I would like to export my table structure from MYSQL from a particular db. > Is there any tool for doing this? > > Please guide me. > > Thank you > > VIKRAM A > > > >

Re: MySQL Tables

2004-08-11 Thread EWAGW
Thanks Victor - Original Message - From: "Victor Pendleton" <[EMAIL PROTECTED]> To: "'EWAGW '" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, August 11, 2004 11:38 AM Subject: RE: MySQL Tables > Unless you are specifyin

RE: MySQL Tables

2004-08-11 Thread Victor Pendleton
Unless you are specifying some other type in your table creation statements, your tables will be created as MyISAM. -Original Message- From: EWAGW To: [EMAIL PROTECTED] Sent: 8/11/04 11:30 AM Subject: MySQL Tables Hi list, If I am converting an access db to mysql what will the tables be

Re: MySQL Tables

2004-08-11 Thread Martijn Tonies
> Hi list, If I am converting an access db to mysql what will the tables be > MyISAM? Thanks That depends on your tool, your settings and what not. Ask a better question if you want a better answer. With regards, Martijn Tonies Database Workbench - developer tool for InterBase, Firebird, My

Re: MySQL Tables Load Slowly

2004-06-13 Thread Michael Loftis
--On Sunday, June 13, 2004 12:56 -0700 David Blomstrom <[EMAIL PROTECTED]> wrote: Aha! I added "EXPLAIN," like this... Please read the docs. And use the mysql CLI/monitor tool. Explain does just that, it EXPLAINs to you, the database programmer, what the MySQL engine will do when it goes about

Re: MySQL Tables Load Slowly

2004-06-13 Thread Michael Loftis
INDEXes grasshopper, INDEXes. --On Sunday, June 13, 2004 11:26 -0700 David Blomstrom <[EMAIL PROTECTED]> wrote: I have a MySQL table with about 3,500 rows and 30 columns. There are rows for each of the world's nations, each of the 50 states, some 3,000 U.S. counties, Canada's provinces, etc. Obv

Re: MySQL Tables Load Slowly

2004-06-13 Thread David Blomstrom
--- Emmett Bishop <[EMAIL PROTECTED]> wrote: > David, > > It sounds like you need some indexes on your table. > Do > this... put the word EXPLAIN in front of the select > statement to you use to get your data. For more > info, > check out this link > http://dev.mysql.com/doc/mysql/en/EXPLAIN.html

Re: MySQL tables performance question

2003-07-23 Thread Brent Baisley
If you are going to be needing to add columns and/or tables, you should probably rethink your data model. I'm not sure what data you are tracking, but perhaps you can consolidate it a bit more. Make your columns into rows with a row type field. A simple example would be tracking phone numbers.

Re: MySQL tables named 'column' cause problems.

2002-03-17 Thread Tozz
Hello, > He didn't name a column 'column', he named a table 'column'. This may > have seemed reasonable given his application. > In any case, bad idea or not, his point is well-taken. It worked in one > place but not another. While column is a reserved word, the directions at > http://www.mys

Re: MySQL tables named 'column' cause problems.

2002-03-16 Thread Michael Stassen
He didn't name a column 'column', he named a table 'column'. This may have seemed reasonable given his application. In any case, bad idea or not, his point is well-taken. It worked in one place but not another. While column is a reserved word, the directions at http://www.mysql.com/doc/L/e/Le

Re: MySQL tables named 'column' cause problems.

2002-03-16 Thread Bob Hall
On Sun, Mar 17, 2002 at 05:31:52AM +0100, Tozz wrote: > Hey > > > Column is a mysql reserved word. > > Just like desc or asc or tons of others. > > See here: > > http://www.mysql.com/doc/R/e/Reserved_words.html > > Dan > > Then, imho I think its stupid that MySQL lets you create tables with > re

RE: MySQL tables named 'column' cause problems.

2002-03-16 Thread Tozz
Hey > Column is a mysql reserved word. > Just like desc or asc or tons of others. > See here: > http://www.mysql.com/doc/R/e/Reserved_words.html > Dan Then, imho I think its stupid that MySQL lets you create tables with reserved words, but it stops you from making dumps. Still seems like a bug t

RE: MySQL tables named 'column' cause problems.

2002-03-16 Thread Dan Vande More
Column is a mysql reserved word. Just like desc or asc or tons of others. See here: http://www.mysql.com/doc/R/e/Reserved_words.html Dan -Original Message- From: Tozz [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 16, 2002 8:58 PM To: [EMAIL PROTECTED] Subject: MySQL tables named 'colu

Re: MySQL Tables

2001-02-21 Thread Rolf Hopkins
- Original Message - From: "Arturo Busleiman" <[EMAIL PROTECTED]> To: "Rolf Hopkins" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, February 21, 2001 20:38 Subject: Re: MySQL Tables > On Wed, 21 Feb 2001, Rolf Hopkins wrote: &g

Re: MySQL Tables

2001-02-21 Thread Arturo Busleiman
On Wed, 21 Feb 2001, Rolf Hopkins wrote: > Have you tried checktable? Are there many numbers giving weird results or > just one? Are you running an old version of Mysql? Any of the columns auto > inc by any chance. in the database there's only one auto_increment field in another table. I haven

Re: MySQL Tables

2001-02-20 Thread Rolf Hopkins
se someone knows the answer but didn't get your first posting. - Original Message - From: "Arturo Busleiman" <[EMAIL PROTECTED]> To: "Rolf Hopkins" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, February 21, 2001 12:10 Subject: Re: My

Re: MySQL Tables

2001-02-20 Thread Arturo Busleiman
On Wed, 21 Feb 2001, Rolf Hopkins wrote: > I think you'll get better results if you don't quote your numbers. Quotes > should be used for text and dates (depending) but not numbers. tried, but same results. *> MP3's EN VIVO de INFUSION: http://members.xoom.com/sysfork/ *> MP OnLine? EL BBS? Fe

Re: MySQL Tables

2001-02-20 Thread Rolf Hopkins
I think you'll get better results if you don't quote your numbers. Quotes should be used for text and dates (depending) but not numbers. - Original Message - From: "Arturo Busleiman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 21, 2001 11:54 Subject: MySQL Tabl

Re: MySQL Tables over Multiple Drives

2001-01-31 Thread Tim Bunce
On Wed, Jan 31, 2001 at 05:07:09PM +0200, Michael Widenius wrote: > > The problem is not just the open; The problem is that we currently have to map > all read/writes to a handler that checks if the table is raid or not. Fair enough. > What we need in the future is to add a wrapper around file

Re: MySQL Tables over Multiple Drives

2001-01-31 Thread Michael Widenius
Hi! > "Tim" == Tim Bunce <[EMAIL PROTECTED]> writes: Tim> On Tue, Jan 30, 2001 at 01:13:43PM -0800, Jeremy D. Zawodny wrote: >> On Tue, Jan 30, 2001 at 05:08:46PM +, Tim Bunce wrote: >> > On Tue, Jan 30, 2001 at 10:57:16PM +0800, Sam Wong wrote: >> > > > >> > > > So why isn't the --with

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Brian Reichert
On Tue, Jan 30, 2001 at 06:51:01AM -0500, Jason Frisvold wrote: > Well, there are a few reasons.. We have a system with 4 8G drives.. If we > use one for root and one to mirror that root, we have 2 drives left. > Now, if we raid those 2 remaining drives (RAID5) we get about 12 Gigs of space > av

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Tim Bunce
On Tue, Jan 30, 2001 at 01:13:43PM -0800, Jeremy D. Zawodny wrote: > On Tue, Jan 30, 2001 at 05:08:46PM +, Tim Bunce wrote: > > On Tue, Jan 30, 2001 at 10:57:16PM +0800, Sam Wong wrote: > > > > > > > > So why isn't the --with-raid option set in the binary download version? > > > > > > The file

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Jeremy D. Zawodny
On Tue, Jan 30, 2001 at 05:08:46PM +, Tim Bunce wrote: > On Tue, Jan 30, 2001 at 10:57:16PM +0800, Sam Wong wrote: > > > So why isn't the --with-raid option set in the binary download version? > > > > The file will be bigger and slower in result > > I doubt it would be significantly bigger. I

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Tim Bunce
On Tue, Jan 30, 2001 at 10:57:16PM +0800, Sam Wong wrote: > > So why isn't the --with-raid option set in the binary download version? > > The file will be bigger and slower in result I doubt it would be significantly bigger. I believe --with-raid support is a very small and simple layer between m

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread William R. Mussatto
On Tue, 30 Jan 2001, Sam Wong wrote: > Date: Tue, 30 Jan 2001 19:32:05 +0800 > From: Sam Wong <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Re: MySQL Tables over Multiple Drives > > Yes, you've to recreate the tables with RAID option (read the manual for &

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Sam Wong
> So why isn't the --with-raid option set in the binary download version? The file will be bigger and slower in result - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Tim Bunce
On Tue, Jan 30, 2001 at 12:44:43PM +0100, Tonu Samuel wrote: > On Tue, 30 Jan 2001, Jason Frisvold wrote: > > > Thanks for the reply.. Is that a stable way of doing things? Is > > there a performance hit when using the --with-raid option? > > Very small if at all. RAID does some additional

RE: MySQL Tables over Multiple Drives

2001-01-30 Thread Jason Frisvold
by." -- Douglas Adams -Original Message- From: Sam Wong [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 6:32 AM To: [EMAIL PROTECTED] Subject: Re: MySQL Tables over Multiple Drives Yes, you've to recreate the tables with RAID option (read the manual for details) and mov

RE: MySQL Tables over Multiple Drives

2001-01-30 Thread Tonu Samuel
On Tue, 30 Jan 2001, Jason Frisvold wrote: > Thanks for the reply.. Is that a stable way of doing things? Is > there a performance hit when using the --with-raid option? Very small if at all. RAID does some additional syscalls sometime but they should be enough rare to not sense this.

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Sam Wong
blize already, I think. BTW, why you want it to span over multiple drive? - Original Message - From: "Jason Frisvold" <[EMAIL PROTECTED]> To: "'Sam Wong'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 7:15 PM Subject: RE:

RE: MySQL Tables over Multiple Drives

2001-01-30 Thread Jason Frisvold
t: Tuesday, January 30, 2001 5:41 AM To: [EMAIL PROTECTED] Subject: Re: MySQL Tables over Multiple Drives Compile mysql with --with-raid option, then use symbolic link to link it to other drive - Original Message - From: "Jason Frisvold" <[EMAIL PROTECTED]> To: <[EMAIL PROTE

Re: MySQL Tables over Multiple Drives

2001-01-30 Thread Sam Wong
Compile mysql with --with-raid option, then use symbolic link to link it to other drive - Original Message - From: "Jason Frisvold" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 30, 2001 6:33 PM Subject: MySQL Tables over Multiple Drives > I looked through the manua