Re: How Do I Know If mySQL is using MyISAM or InnoDB?

2006-11-17 Thread Visolve DB Team
PM Subject: How Do I Know If mySQL is using MyISAM or InnoDB? Is there a command at the command line that can tell me if I am using MyISAM or InnoDB? Thanks :-). -- John Kopanas [EMAIL PROTECTED] http://www.kopanas.com http://www.cusec.net http://www.soen.info -- MySQL General Mailing

Re: How Do I Know If mySQL is using MyISAM or InnoDB?

2006-11-17 Thread Rolando Edwards
Kruckenberg <[EMAIL PROTECTED]> To: John Kopanas <[EMAIL PROTECTED]> Cc: mysql@lists.mysql.com Sent: Friday, November 17, 2006 12:32:19 PM GMT-0500 US/Eastern Subject: Re: How Do I Know If mySQL is using MyISAM or InnoDB? For any specific table if you do: show create table ; It will te

Re: How Do I Know If mySQL is using MyISAM or InnoDB?

2006-11-17 Thread Mike Kruckenberg
nas wrote: Is there a command at the command line that can tell me if I am using MyISAM or InnoDB? Thanks :-). -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: How Do I Know If mySQL is using MyISAM or InnoDB?

2006-11-17 Thread Mike Kruckenberg
> show variables like 'table_type'; +---++ | Variable_name | Value | +---++ | table_type| MYISAM | +---++ 1 row in set (0.00 sec) John Kopanas wrote: Is there a command at the command line that can tell me if I am using MyIS

Re: How Do I Know If mySQL is using MyISAM or InnoDB?

2006-11-17 Thread Rolando Edwards
stern Subject: Re: How Do I Know If mySQL is using MyISAM or InnoDB? This is will tell you your default storage engine type should you create a table without specifying an engine: show variables like 'storage engine'; If you want to create a table with a specific engine, specify it at

Re: How Do I Know If mySQL is using MyISAM or InnoDB?

2006-11-17 Thread Rolando Edwards
How Do I Know If mySQL is using MyISAM or InnoDB? Is there a command at the command line that can tell me if I am using MyISAM or InnoDB? Thanks :-). -- John Kopanas [EMAIL PROTECTED] http://www.kopanas.com http://www.cusec.net http://www.soen.info -- MySQL General Mailing List For lis

How Do I Know If mySQL is using MyISAM or InnoDB?

2006-11-17 Thread John Kopanas
Is there a command at the command line that can tell me if I am using MyISAM or InnoDB? Thanks :-). -- John Kopanas [EMAIL PROTECTED] http://www.kopanas.com http://www.cusec.net http://www.soen.info

Re: Myisam or innodb

2005-09-15 Thread Bruce Dembecki
For high volume discussion board type work InnoDB is faster. Our "slow query" log droped 66% just by switching engine types. Earlier comments about innoDB not supporting "full text" are actually supposed to read InnoDB doesn't support full text indexes... This is only important if you reall

Re: Myisam or innodb

2005-09-15 Thread Alec . Cawley
Scott Haneda <[EMAIL PROTECTED]> wrote on 15/09/2005 10:31:48: > I have moved my data from mysql 3 to 4, across various updates, over the > past few years. I use phpmyadmin generally, and it defaults to making tables > myisam. > > I can not seem to find a really clear answer as to why I want to

Myisam or innodb

2005-09-15 Thread Scott Haneda
I have moved my data from mysql 3 to 4, across various updates, over the past few years. I use phpmyadmin generally, and it defaults to making tables myisam. I can not seem to find a really clear answer as to why I want to use one over the other. Generally, I use myisam and change it only when I

Re: myisam or innodb (chestnut)

2005-07-13 Thread tony
On Wed, 2005-07-13 at 15:02 +0100, zzapper wrote: > Is myisam still dominant for web applications? depends on your application, if you're running a bulliten board or a simple catalogue site, then myisam is a good choice as it is faster. However for an ecommerce site i would definately go for inn

myisam or innodb (chestnut)

2005-07-13 Thread zzapper
Hi, I created the "same" database on two different servers (with different versions of mysql). I found one db had been created as innodb and the myisam without me "apparently" having a say in the matter. I've Googled and found that Innodb has record locking, roll back, but that MYISAM is quick

alter table - better with MyISAM or InnoDB

2005-05-17 Thread Chris Faulkner
Hi I have a table with about 20m rows. It is a MyISAM table. I do a alter table disable keys before loading with "LOAD DATA". Re-creating the primary key after import takes a long time. I have increased the myISAM sort buffer to 75MB and the Key buffer is 100MB. Is there anything else I can do t

Re: Logging Data: Should I use MyIsam or InnoDB?

2005-01-19 Thread Martijn Tonies
> > > > I have a curious issue here, maybe someone can help. > > > > > > > > I have a single process that inserts data into tables that contain > > > > purely logging information. This table is then searched by our Care > > > > department to troubleshoot issues. I am looking for the best way to

Re: Logging Data: Should I use MyIsam or InnoDB?

2005-01-19 Thread SGreen
"Martijn Tonies" <[EMAIL PROTECTED]> wrote on 01/19/2005 03:33:32 AM: > Hello Jeremy, > > > > I have a curious issue here, maybe someone can help. > > > > > > I have a single process that inserts data into tables that contain > > > purely logging information. This table is then searched by our C

Re: Logging Data: Should I use MyIsam or InnoDB?

2005-01-19 Thread Javier Armendáriz
Martijn Tonies wrote: Hello Jeremy, I have a curious issue here, maybe someone can help. I have a single process that inserts data into tables that contain purely logging information. This table is then searched by our Care department to troubleshoot issues. I am looking for the best way to st

Re: Logging Data: Should I use MyIsam or InnoDB?

2005-01-19 Thread Martijn Tonies
Hello Jeremy, > > I have a curious issue here, maybe someone can help. > > > > I have a single process that inserts data into tables that contain > > purely logging information. This table is then searched by our Care > > department to troubleshoot issues. I am looking for the best way to > > st

RE: Logging Data: Should I use MyIsam or InnoDB?

2005-01-18 Thread Thomas Lekai
: Tuesday, January 18, 2005 3:30 PM To: Thomas Lekai Cc: mysql@lists.mysql.com Subject: Re: Logging Data: Should I use MyIsam or InnoDB? Hi Thomas, > Thanks, this is what I was originally thinking of, but how I am > getting rid of the data in log_view_today? OR, are you saying that > log_view

Re: Logging Data: Should I use MyIsam or InnoDB?

2005-01-18 Thread Jeremy Cole
Hi Thomas, Thanks, this is what I was originally thinking of, but how I am getting rid of the data in log_view_today? OR, are you saying that log_view_today is a merge table for only the current day? That table def is defined every night? Then I would go about dropping everything in whatever fas

RE: Logging Data: Should I use MyIsam or InnoDB?

2005-01-18 Thread Thomas Lekai
omas Lekai Cc: mysql@lists.mysql.com Subject: Re: Logging Data: Should I use MyIsam or InnoDB? Hi Thomas, > I have a curious issue here, maybe someone can help. > > I have a single process that inserts data into tables that contain > purely logging information. This table is then sear

Re: Logging Data: Should I use MyIsam or InnoDB?

2005-01-18 Thread Jeremy Cole
Hi Thomas, I have a curious issue here, maybe someone can help. I have a single process that inserts data into tables that contain purely logging information. This table is then searched by our Care department to troubleshoot issues. I am looking for the best way to store this data, and the struc

Logging Data: Should I use MyIsam or InnoDB?

2005-01-18 Thread Thomas Lekai
I have a curious issue here, maybe someone can help. I have a single process that inserts data into tables that contain purely logging information. This table is then searched by our Care department to troubleshoot issues. I am looking for the best way to store this data, and the structure on

RE: What do you recommend: MyISAM or INNODB?

2003-10-10 Thread Holly Chamberlain
y, October 10, 2003 4:17 PM To: Holly Chamberlain Subject: Re: What do you recommend: MyISAM or INNODB? No question. MyISAM. _M At 02:01 PM 10/10/2003, you wrote: >Hi Group, >I'm requesting feedback - should I use MyISAM or Innodb tables, or a >mix? My database (currently in Sybase) ty

RE: What do you recommend: MyISAM or INNODB?

2003-10-10 Thread Dathan Vance Pattishall
ct: What do you recommend: MyISAM or INNODB? --> -->Hi Group, -->I'm requesting feedback - should I use MyISAM or Innodb tables, or a -->mix? My database (currently in Sybase) typically gets no larger than 50 -->gigs, but 99% of the data is in one table. --> -->(The app is a

What do you recommend: MyISAM or INNODB?

2003-10-10 Thread Holly Chamberlain
Hi Group, I'm requesting feedback - should I use MyISAM or Innodb tables, or a mix? My database (currently in Sybase) typically gets no larger than 50 gigs, but 99% of the data is in one table. (The app is an cleanroom monitoring system, we collect 3-5,000 records a minute from environm

Re: MyIsam or InnoDB? (WARNING -- LONG MSG)

2003-10-07 Thread Dyego Souza do Carmo
Randy: Tuesday, October 7, 2003, 4:49:44 PM, você escreveu: ---[inicio]-- RC> Apologies for the length of this post. RC> We started off this little proof of concept project using MySQL RC> InnoDB RC> tables, in part because we figured we needed foreign key constrain

MyIsam or InnoDB? (WARNING -- LONG MSG)

2003-10-07 Thread Randy Chrismon
Apologies for the length of this post. We started off this little proof of concept project using MySQL InnoDB tables, in part because we figured we needed foreign key constraints, row locking, and all the other bells and whistles that one gets with DB2 (our production DB on a big - for us - proje

Re: MyISAM or InnoDB

2002-09-27 Thread Heikki Tuuri
Frank, - Original Message - From: "Dr. Frank Ullrich" <[EMAIL PROTECTED]> To: "Heikki Tuuri" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, September 27, 2002 11:18 AM Subject: Re: MyISAM or InnoDB > Heikki, > > Heikki Tu

Re: MyISAM or InnoDB

2002-09-27 Thread Dr. Frank Ullrich
Heikki, Heikki Tuuri schrieb: > > Hi! > > - Original Message - > From: ""Orr, Steve"" <[EMAIL PROTECTED]> > Newsgroups: mailing.database.mysql > Sent: Thursday, September 26, 2002 9:56 PM > Subject: RE: MyISAM or InnoDB > &g

Re: MyISAM or InnoDB

2002-09-26 Thread Heikki Tuuri
Hi! - Original Message - From: ""Orr, Steve"" <[EMAIL PROTECTED]> Newsgroups: mailing.database.mysql Sent: Thursday, September 26, 2002 9:56 PM Subject: RE: MyISAM or InnoDB > > > MySQL doesn't provide "native" support for transac

RE: MyISAM or InnoDB

2002-09-26 Thread Orr, Steve
t they say benchmarking is important? Give me a break! What we desperately need are some TPC benchmarks for the open-source databases. Benchmarks which are independenttly audited and verified. -Original Message- From: Josh Trutwin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September

Re: MyISAM or InnoDB

2002-09-25 Thread Jeremy Zawodny
On Wed, Sep 25, 2002 at 08:26:25AM -0600, Scott Pippin wrote: > We are moving a databse over from Oracle to MySQL 4.0.3 and I was > wondering if I should use MyISAM or InnoDb. The databse currently has > 800-900 updates and inserts done to it in a day along with about 1000 > selec

Re: MyISAM or InnoDB

2002-09-25 Thread Josh Trutwin
> We are moving a databse over from Oracle to MySQL 4.0.3 and I was > wondering if I should use MyISAM or InnoDb. The databse currently has > 800-900 updates and inserts done to it in a day along with about 1000 > selects. Would I run in to any table locking problems with MyISAM?

MyISAM or InnoDB

2002-09-25 Thread Scott Pippin
We are moving a databse over from Oracle to MySQL 4.0.3 and I was wondering if I should use MyISAM or InnoDb. The databse currently has 800-900 updates and inserts done to it in a day along with about 1000 selects. Would I run in to any table locking problems with MyISAM? Thanks in advance