InnoDB “log sequence in the future!” crashing, won't start

2011-11-05 Thread Kevin Wang
teful for any advice that you could give. Thanks, --Kevin

Re: How do increase memory allocated to MySQL?

2011-02-04 Thread Kevin Spencer
If you've got a MyISAM table, I recommend a FULLTEXT index. http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html -- Kevin. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org

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: Swap data in columns

2010-09-22 Thread Kevin (Gmail)
update mydata set column1 = column2, column2 = column1 (works in sqlserver, can't try mysql at the moment) You can select which rows by adding a where clause obviously. I suppose that the field values are copied to a buffer which is the written to the table at the end of the update (or row by row

AFTER Delete Trigger question

2010-06-18 Thread Kevin Labecot
Hi,Is there a way to update the same table on a delete trigger ?I need to call an UPDATE statement when a delete occurs.Best regards -- Kevin Labecot, Innovanticwww.innovantic.frTél. : 05.56.45.60.54

Re: Using RAND to get a unique ID that has not been used yet

2010-05-28 Thread Kevin (Gmail)
The separate table for the IDs is probably best solution, maybe counting on caching of the table with an index on the id value to speed up the 'where' clause; this checks what numbers are left instead of what numbers have been used; the disadvantage is that you have to manage a second table with

RE: Impossible Out Param Return Value

2010-05-26 Thread Kevin Baynes
The problem occurs because the parameter names are the same as the column names. I'm not sure why, since the columns are specified in quotes, but it does. Thanks, Kevin -Original Message- From: Kevin Baynes [mailto:kbay...@bluezonesoftware.com] Sent: Wednesday, May 26, 2010 10:

Impossible Out Param Return Value

2010-05-26 Thread Kevin Baynes
the 'path' does not match, it returns NULL as expected. Has anyone seen this before? Thanks, Kevin -- Full explanation below: -- Table 'file_detail' with 1 row: id_file_detail, id_file, id_machine, id_user, path 1 , 1 , 1 , 1 , C:\Program Files\Bl

when calling mysql_real_connect from the c api, I get a malloc() memory corruption error.

2008-10-29 Thread Kevin Stevens
f you have any ideas, please let me know! Below is the output from my program, and the code I am using to connect- am I doing something wrong there? If there is any more information I can provide, please let me know. Thank you, -Kevin Program output == Starting Engine... Reading Co

Re: Appropriate Design

2008-09-17 Thread Kevin Hunter
and then pull only the appropriate data from the database at query time > using JOINs. This is closer to a better approach. That said, be more specific about the problem you're trying to solve and folks may be better able to provide useful advices. Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Normalization vs. Performance

2008-08-28 Thread Kevin Hunter
gy "catches up" to demands. Have you looked at temporary tables or materialized views? These might help you in this endeavor. Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: SELECT N records from each category

2008-08-11 Thread Kevin Waterson
This one time, at band camp, "Perrin Harkins" <[EMAIL PROTECTED]> wrote: > In your case, you might be able to just cheat it with some > MySQL-specific LIMIT stuff: Thanks very much Perrin, this is most useful and I can take it from here. Kind regards Kevin -- MySQL Ge

Re: SELECT N records from each category

2008-08-10 Thread Kevin Waterson
where the schema I presented does. If you dont know the answer, just leave it out, but thanks for your efforts. If anybody can steer me in the right direction here, that would be great. Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe

Re: SELECT N records from each category

2008-08-10 Thread Kevin Waterson
erences is not helpful. Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

SELECT N records from each category

2008-08-10 Thread Kevin Waterson
) NOT NULL, test_answer_correnct tinyint(4) NOT NULL, PRIMARY KEY (test_answer_id), FOREIGN KEY (test_question_id) REFERENCES test_questions (test_question_id) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; Any help in this matter hugely appreciated, Kind regards Kevin -- MySQL Gener

Re: Adding index to Memory table LOSES ROWS!

2008-07-27 Thread Kevin Hunter
data is absolutely a bug, and a critical one. A quick (< 3min) perusal of the bugs currently open did return any meaningful results. Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Adding index to Memory table LOSES ROWS!

2008-07-26 Thread Kevin Hunter
ther to fixing the problem. The reproducible part is very important, because without it, it's suspect to be just your individual case, as with a bug in *your* application code, your hardware, or generally something in your setup. Kevin -- MySQL General Mailing List For list archives:

Re: how to Get file modified time and date of file by using builtin function or procedure in sql?

2008-07-24 Thread Kevin Spencer
should be done via a programming language of your choice. Did you have any luck writing a program to do just that? Kevin. -- [EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Running 2 versions of MySQL on same server

2008-07-01 Thread Kevin F. O'Riordan
unix socket, and ignoring your "-P" option; try adding the option "--protocol=TCP". You may well find a similar issue with phpmyadmin - there's a configuration option: $cfgServers[...]['connect_type'] = 'tcp'; which might solve this. hth, Kevin --

Re: Looking for a Mysql Guru/DBA

2008-05-22 Thread Kevin Hunter
nt to talk to someone about getting the right schema in place, however. Kevin [1] http://www.sqlite.org/ -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Table Structure

2008-05-16 Thread Kevin Hunter
d data it takes to satisfy a query, it's actually better to ignore the indexes and do a range scan of the table. The point is that it isn't as simple as snap-your-fingers,-you're-done, which I gather we both understand. I suggest again to the OP to do some tests on /personal data set

Re: Table Structure

2008-05-16 Thread Kevin Hunter
n. Depending on the DB (read: implementation) one could make this particular style of skewed data even faster. Postgres, for example, has partial-indexes. As I said at the beginning of this email, I suggest the OP do some personal investigation and tests, because understanding indexes /and your own da

Re: R: Re: FW: Re: what is a schema? what is a database?

2008-04-07 Thread Kevin Spencer
On Mon, Apr 7, 2008 at 1:24 AM, Moon's Father <[EMAIL PROTECTED]> wrote: > Schema is a collection of databases. A schema is a definition of tables & fields and their relationship. Kevin. -- [EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.

Re: Comma's in data?

2008-03-08 Thread Kevin Hunter
o single quotes ... ? Shouldn't that be enough? Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Moving to another hard drive

2008-02-20 Thread Kevin Chen
I am trying to relocate MySQL and a database to another hard drive on the same system. According to this page, http://dev.mysql.com/doc/refman/5.0/en/upgrading-to-arch.html, I get the impression that I should be able to do this by copying the data files to the new MySQL installation. However, th

Re: basic style shema question

2008-01-18 Thread Kevin Hunter
on normalization and schema design. Wikipedia is a good starting pace. Kevin At 12:30p -0500 on 18 Jan 2008, Alex K wrote: Well the basic information, company description and personalized options will be selected many times (whenever a user submits a query). It will basically be show on the result pag

Re: basic style shema question

2008-01-18 Thread Kevin Hunter
generally tend towards normalization, not denormalization. The question is: what do you want to do with the schema? Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: MySql at 100% CPU

2008-01-17 Thread Kevin Hunter
ut it when that article came out, and haven't yet had a chance to try it out.) Good luck with your problem! Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: MySql at 100% CPU

2008-01-17 Thread Kevin Hunter
-for-mysql/ HTH, Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Prepared SQL statements - Faster performance?

2008-01-17 Thread Kevin Hunter
you'll know what *your* speed gain/loss will be, is to do it and find out. You may be surprised. Kevin At 10:56p -0500 on 15 Jan 2008, Moon's Father wrote: To know the exact speed improvement ,you have to have a test yourself append on your hardware mathine. On Jan 15, 2008 11:39 P

Re: Performance problem - MySQL at 99.9% CPU

2008-01-08 Thread Kevin Hunter
query-profiler.html A quick google with these keywords "mysql index hints query profiler" seemed to provide a good jumping off point. HTH, Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Performance problem - MySQL at 99.9% CPU

2008-01-08 Thread Kevin Hunter
/26/mytop-a-top-clone-for-mysql/ Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Select mit Subselect Problem

2007-12-17 Thread Kevin Hunter
problem rather than exactly what you're trying to do, we may be able to better help. That said, I'm guessing you're looking for GROUP BY and ORDER BY. Take a gander at the MySQL docs for the version that you are using. A starting point: http://dev.mysql.com/doc/refman/5.0/en/group-

Re: Virtual Hosting Privileges

2007-11-04 Thread Kevin Waterson
nation of privileges you like. Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: append on insert

2007-11-03 Thread Kevin Waterson
This one time, at band camp, Baron Schwartz <[EMAIL PROTECTED]> wrote: > INSERT INTO item (`key`) > SELECT CONCAT('my-item', > (SELECT IF(COUNT(*) = 0, '', CONCAT('-', COUNT(*))) >FROM item WHERE `key` LIKE 'my-item%')); &g

Re: append on insert

2007-11-02 Thread Kevin Waterson
This one time, at band camp, "Martin Gainty" <[EMAIL PROTECTED]> wrote: > Kevin- > > Declare the column AUTO_INCREMENT > http://lists.mysql.com/mysql/161930 You can auto increment a non INT field? Kevin -- MySQL General Mailing List For list archives: htt

append on insert

2007-11-02 Thread Kevin Waterson
regards Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Replace on Join

2007-10-29 Thread Kevin Murphy
iated version of the query that is trying to match them, and it doesn't work. Any suggestions? SELECT * FROM schedule LEFT JOIN directory ON ( REPLACE('@wncc.edu','@wnc.edu',schedule.email) = directory.email ) -- Kevin Murphy Webmaster: Information and Mar

Re: [Replication] - load

2007-10-23 Thread Kevin Spencer
ers typically request the same kind of thing every day), you could setup a cron job to run in the middle of the night to execute those queries. That would seed the query cache and when users begin to use your system in the morning, they wouldn't experience a cache miss slowdown. -- Kevin. --

Re: bookmarks and keywords

2007-09-24 Thread Kevin Waterson
x27;re > selecting the child columns. Im not sure I follow, the results should be those with id's of 1, 3, 4, 5, 6, 7, 8 and If I chose http://www.php.net that has only the keyword of "php" then the results would be 1,3,5, and 8 Kind regards Kevin -- "Democracy is t

bookmarks and keywords

2007-09-24 Thread Kevin Waterson
p://www.redhat.com | +-++---+ Where it should return also the results with the bookmark_id of 1 as the bookmark_url http://www.redhat.com has two keywords, "php" and "linux" so this should match both. What should I b

Re: Can't fetch result twice in a PHP script

2007-09-15 Thread Kevin Waterson
ecuted, but not the second time. What is the reason behind that. The array pointer is now at the end of the result set. Kevin -- "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote." -- MySQL General Mailing List

Linking tables

2007-09-15 Thread Kevin Waterson
ed with it. I would then like to be able to SELECT all related articles, that is, all records in the articles table, with the keyword 'tiddles'. MySQL 5 and the db layout looks like this so far. thanks for looking Kevin CREATE table articles ( article_id int(9) NOT

Re: Blob data

2007-06-25 Thread Kevin Waterson
This one time, at band camp, Warren Young <[EMAIL PROTECTED]> wrote: Storing arbitrary data in a BLOB column is > tantamount to trying to turn the database into a file system. If you > want a file system, use a file system. What is a file system, if not a database? Kevin -- M

Why doesn't MySQL support gzip encode/decode functions.

2007-06-12 Thread Kevin Burton
Why doesn't mysql support gzip for COMPRESS/UNCOMPRESS and only zlib For network applications zlib is a lot less compatible than gzip. For example I could send gzip'd content directly from the database within a larger gzip'd stream. Kevin -- Founder/CEO Tailrank.co

BUG: MySQL 5.1.19 with UNCOMPRESS on *VALID* data fails when generated by 3rd party zlib.

2007-06-11 Thread Kevin Burton
(0.00 sec) .. I've tested this on 5.1.19 and 4.1.21 with the same symptoms. Anyone have any advice here? Did you guys make any changes with the zlib implementation you're using? I'm willing to file this as a bug if necessary. Kevin -- Founder/CEO Tailrank.com Location:

Re: MySQL Magazine - Issue 1 available NOW!!!!

2007-06-11 Thread Kevin Hunter
our time doing something mundane. In lieu of an example, I'll just point to the PHP site: http://us.php.net/manual/en/function.mysqli-prepare.php Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Table compression with write (append) support

2007-05-28 Thread Kevin Hunter
At 5:45a -0400 on 28 May 2007, Yves Goergen wrote: > On 28.05.2007 09:06 CE(S)T, Kevin Hunter wrote: > >> In particular, I imagine a lot of the HTTP requests would be the >> same, so you could create a table to store the requested URLs, and >> then have a second tabl

Re: Table compression with write (append) support

2007-05-28 Thread Kevin Hunter
ne you could get quite a savings. Anything else that's repeated as well? IP's? Return codes? Would be curious about the results if you were able to implement both. Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: IS NULL Question

2007-05-01 Thread Kevin Hunter
NSERT ( val1, val2, NULL ) INTO myTable; and was only able to get the tuples back when I did SELECT * FROM myTable WHERE col3 = ' '; -- a space character If this is the case, you might consider using a different table type, such as InnoDB. HTH, Kevin MyISAM has no problem represen

Re: IS NULL Question

2007-05-01 Thread Kevin Hunter
hen I did SELECT * FROM myTable WHERE col3 = ' '; -- a space character If this is the case, you might consider using a different table type, such as InnoDB. HTH, Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: MySQL e-zine

2007-04-28 Thread Kevin Waterson
This one time, at band camp, "Peter M. Groen" <[EMAIL PROTECTED]> wrote: > > Any thoughts? Any desires to contribute? > > Hi Keith, > > Great Idea! > I volunteer for the developer side (Mysql and C++) I have written for php|mag previously, I&#

Re: FW: MySQL patches from Google

2007-04-26 Thread Kevin Spencer
On 4/26/07, Mike OK <[EMAIL PROTECTED]> wrote: I read the Google blog post regarding these patches. They admit using MySQL for some internal data storage needs but not in the general search system. Still, that leaves many other applications. Groups, gmail, reader, news et al... --

Re: advice for blob tables?

2007-04-24 Thread Kevin Waterson
over 11,000 rows for a single file I dunno, I would like to see some benchmarks on this. Kevin -- "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote." -- MySQL General Mailing List For list archives: http

Re: advice for blob tables?

2007-04-20 Thread Kevin Waterson
ages and BLOBs. It should get you on the right path. http://www.phpro.org/tutorials/Storing-Images-in-MySQL-with-PHP.html Kevin -- "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote." -- MySQL General M

referal system

2007-04-10 Thread Kevin Waterson
table also will need to have some sort of mechanism so when a deposit is taken from the customer, the referer is paid thier commission. Am I going in the right direction here? Kind regards Kevin -- "Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed

Potential problems running MyISAM on ram drives?

2007-04-10 Thread Kevin Burton
using mysqlhotcopy and snapshotting the tables to disk either on the master or the slave. Has anyone done this and have they had any problems? Kevin -- Founder/CEO Tailrank.com Location: San Francisco, CA AIM/YIM: sfburtonator Skype: burtonator Blog: feedblog.org Cell: 415-637-8078

Query works; query in function doesn't

2007-04-01 Thread Kevin Chen
I have a puzzling situation where a query works, but only outside of a function. If I try to abstract away some of the complexity by placing the subquery inside a function, the db seems to get stuck in an infinite query and the entire system becomes unresponsive (from the MySQL console I can ctrl-c

Re: about limit

2007-03-20 Thread Kevin Hunter
translate to MINUS. However, last I checked, MySQL does not support (or has not yet implemented) the MINUS operator. This Google finding might prove useful to you in this endeavor (scroll to the last entry on the page): http://www.terminally-incoherent.com/blog/category/mysql/ Kevin -- MySQL

Re: Do sourced queries automatically commit?

2007-03-19 Thread Kevin Chen
""João Cândido de Souza Neto"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Could you try to put the start transaction into your .sql file. Ok, I tried that -- same result. I even tried including the rollback in the .sql file as well, but the changes are still committed afterwa

Do sourced queries automatically commit?

2007-03-18 Thread Kevin Chen
Greetings all, I am trying to track down the cause of some issues I'm having. I am doing this from the mysql prompt: start transaction; source c:/queries.sql; rollback; When I examine the db though, it appears that the changes from the sourced queries have been committed. -- MySQL General Ma

Re: what journal options should I use on linux?

2007-03-09 Thread Kevin Burton
Just use XFS. it's a solve problem...... Kevin On 3/8/07, Christopher A. Kantarjiev <[EMAIL PROTECTED]> wrote: I'm setting up mysql on linux for the first time (have been using OpenBSD and NetBSD with UFS until now). The default file system is ext3fs, and I don

Re: binary into blob

2007-03-07 Thread Kevin Hunter
the top priority, you'd better keep all your data encrypted and in the DB. And as I wrote this, colbey explains this well in his email of 4:06p. It seems to me that the point is to use the correct tool for the job at hand. Computers have many tools, so no sense in turning everything in

Ability to escape varbinary data when sent to the console?

2007-03-06 Thread Kevin Burton
bloat that I'd like to have to avoid. Kevin -- Founder/CEO Tailrank.com Location: San Francisco, CA AIM/YIM: sfburtonator Skype: burtonator Blog: feedblog.org Cell: 415-637-8078

Re: Mysql on linux - choosing the right filesystem

2007-02-25 Thread Kevin Burton
On 2/24/07, Jean-Sebastien Pilon <[EMAIL PROTECTED]> wrote: Hello, I would like to get some of your input on file systems to use with mysql. Should I use a journaling filesystem ? Should I choose a different one based on what I store (log files, myisam dbs, innodb datafiles, etc ) ? Is there an

Real BITs which use 1 bit in 5.1?

2007-02-17 Thread Kevin Burton
A little birdie: http://forge.mysql.com/wiki/Top10SQLPerformanceTips notes.. "In 5.1 BOOL/BIT NOT NULL type is 1 bit, in previous versions it's 1 byte." Is this true? I didn't see a note in the manual.. I assume it would be here http://dev.mysql.com/doc/refman/5.1/en/storage-req

Script to perform unattended slave sync with master...

2007-02-16 Thread Kevin Burton
ypto was really the bottleneck. Thoughts? I don't want to have to write anything because I'm amazingly lazy ;) Kevin -- Founder/CEO Tailrank.com Location: San Francisco, CA AIM/YIM: sfburtonator Skype: burtonator Blog: feedblog.org Cell: 415-637-8078 -- MySQL General Mailing Lis

BUG? SHOW SLAVE STATUS blocks on disk full?

2007-02-12 Thread Kevin Burton
Hm. Running on 4.1.21 seems to have a 'feature' where SHOW SLAVE STATUS blocks when the disk is full. Thoughts? Kevin -- Founder/CEO Tailrank.com Location: San Francisco, CA AIM/YIM: sfburtonator Skype: burtonator Blog: feedblog.org Cell: 415-637-8078 -- MySQL General Mailin

Re: Merge tables and ON DUPLICATE KEY UPDATE

2007-02-12 Thread Kevin Burton
I thought about it I was actually going to use merge tables AND partitions to split the underlying MyISAM tables across two disks and then partition on top. It's POSSIBLE to use partitioning the way I want it but I'm going to have to grok it for a bit more. Thanks though. K

Merge tables and ON DUPLICATE KEY UPDATE

2007-02-12 Thread Kevin Burton
table where all INSERTs go a *new* row will be created. Is there any way around this problem? Kevin -- Founder/CEO Tailrank.com Location: San Francisco, CA AIM/YIM: sfburtonator Skype: burtonator Blog: feedblog.org Cell: 415-637-8078 -- MySQL General Mailing List For list archives:

A 'Simple' Protocol for Manual MySQL Slave Promotion to Master

2007-02-07 Thread Kevin Burton
Hey. I should have posted this hear earlier but it just dawned on me that you guys could have some good feedback: "We've been working on the design of a protocol which would enable promotion of a slave to a master in a MySQL replication cluster. Right now, if a MySQL master fails, most people j

Monitoring for corrupt tables and transiently failing master INSERTs

2007-02-05 Thread Kevin Burton
We're trying to write a monitoring process for our master so that if a table is corrupt it will raise flags which can then trigger operations. We can do the basic stuff such as asserting that the port is open and that we can ping the machine but I want to test if any INSERT/UPDATE/DELETEs are fai

Re: MySQL Administrator problem

2007-01-20 Thread Kevin Spencer
MySQL Administrator does not in any way allow you to login to a host with a shell account, root or otherwise. -- Kevin. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: What is your favorite GUI tool for creating and querying tables in MySQL?

2006-12-21 Thread Kevin Spencer
s your favorite tool? I've always found the MySQL Query Browser to be rather handy for creating & querying tables. http://dev.mysql.com/downloads/gui-tools/5.0.html -- Kevin. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.m

Re: definition of Created_tmp_files in "show status"

2006-12-14 Thread Kevin Fries
size? My Created_tmp_disk_tables is considerably lower than my Created_tmp_files value. So it seems the Created_tmp_files cannott include the values from the Created_tmp_disk_tables. Kevin - Original Message From: Visolve DB Team <[EMAIL PROTECTED]> To: Kevin Fries <[EMAIL

definition of Created_tmp_files in "show status"

2006-12-13 Thread Kevin Fries
ent (which has replication) we see counts for this variable in the tens of thousands. Thanks in advance, Kevin Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail beta. http://new.mail.yahoo.com

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Kevin Old
witch to the x86_64 version are we seeing these problems. Thanks for your help, Kevin -- Kevin Old [EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Kevin Old
We have 16GB total, but are only using 8GB (according to mysql and our dbadmin). Kevin On 12/8/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi, How much memory do you have on your system ? (the current setting in your my.cnf could eat *a lot* of memory) Thanks, Jocelyn Fo

Re: Issues with MySQL x86_64 crashing

2006-12-08 Thread Kevin Old
On 12/7/06, David Sparks <[EMAIL PROTECTED]> wrote: Kevin Old wrote: > Hello everyone, > > We have a 4 CPU master server running the 5.0.27 RPM x86_64 version of > MySQL with a mix of InnoDB and MyISAM tables. > > We normally run at 1500 queries/per second and lately, th

Re: Re: Issues with MySQL x86_64 crashing

2006-12-07 Thread Kevin Old
them back to MyISAM tonight and see if that fixes it. Thanks for your help, Kevin On 12/7/06, Michael Bacarella <[EMAIL PROTECTED]> wrote: RAM too, how are you on RAM? Obviously 100GB+ probably isn't going to fit in cache, but the usage pattern during slower periods might be causing

Issues with MySQL x86_64 crashing

2006-12-07 Thread Kevin Old
provide my configuration if it is necessary, but was just wondering if someone else might have experienced this and could possibly point me in the right direction as to what might be causing this. Thanks, Kevin -- Kevin Old [EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http

ETA for 5.1.13 ?

2006-11-19 Thread Kevin Burton
What's the ETA for 5.1.13? There are a few critical bugs with NDB that are fixed in this rev that I'd like to play with. I'm hoping it's right around the corner :) Kevin -- Founder/CEO Tailrank.com Location: San Francisco, CA AIM/YIM: sfburtonator Skype: burtonator Blog: fe

Advice on multilingual databases?

2006-10-10 Thread Zembower, Kevin
re are any other ways to store and access multilingual data. Can anyone suggest other ways they've dealt with this task, and the pros and cons of their approach compared to mine? Thank you in advance for your advice and suggestions. -Kevin Kevin Zembower Internet Services Group manager C

RE: Requesting help with subquery

2006-09-28 Thread Zembower, Kevin
ix lines I repeated 8 times below. Thanks, again. -Kevin =\ I originally wrote: I have a database of publications in different languages. "main categories" are organized into "sub categories" with "baseitems" of publications

RE: Requesting help with subquery

2006-09-26 Thread Zembower, Kevin
y AS m JOIN subcategory AS s ON m.maincatid=s.maincatid JOIN baseitem AS b ON s.subcatid=b.subcatid WHERE b.available = "Y" ORDER BY m.title, s.title; [EMAIL PROTECTED]:~$ mysql orderDB mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 12:45 PM To: Zembower, Kevin; mysql@lists

Requesting help with subquery

2006-09-26 Thread Zembower, Kevin
m.title, s.title; I think this demonstrates that the two subqueries are working. What I'd ultimately like to do is produce a string like "YNNYYN" where Y is printed if the language version of the baseitem exists (is not null?). I was going to do this by creating a SELECT subquery for each

Re: Announce: LBPool 1.0 beta1 (Load Balancing JDBC Connection Pool)

2006-07-19 Thread Kevin Burton
There was a thread before about this... this is much better than connector J's load balancing. You can take machines out of production, add thhem back in, it's MySQL slave aware, etc On 7/19/06, Christopher G. Stach II <[EMAIL PROTECTED]> wrote: Kevin Burton wrote: > Hey Ga

Announce: LBPool 1.0 beta1 (Load Balancing JDBC Connection Pool)

2006-07-18 Thread Kevin Burton
Hey Gang. I wanted to get this out on the list and facilitate some feedback. http://www.feedblog.org/2006/07/announce_lbpool.html I CC'd both lists because this might be of interest to the larger MySQL community as the techniques I used here could be implemented in other languages. ==

how to clear buffer cache

2006-07-11 Thread Kevin Wilkinson
in order to run benchmarks, it is useful to be able to clear the buffer cache. i'm using innodb. is there a way to clear the buffer cache, i.e., something equivalent to oracle's "alter system flush buffer pool"? thanks, kevin -- MySQL General Mailing List For

Re: help with locate() function and index

2006-06-24 Thread kevin vicky
cution takes more than 30 seconds and I would like to improve this. I tried fulltext index on this field hoping that locate() will be faster, but it dint make any difference. It would be great help if you could help solve this problem. thanks On 6/24/06, John Hicks <[EMAIL PROTECTED]> wro

help with locate() function and index

2006-06-23 Thread kevin vicky
there a special character set to use rather than the default? Also since the search string will be between 30-50 characters is there any parameters to make the index effective? If my questions are not clear please let me know I will try to explain better, thanks, Kevin

Re: Disaster with dash on mysql cli interface

2006-06-21 Thread Kevin Old
On 6/21/06, Barry <[EMAIL PROTECTED]> wrote: Kevin Old schrieb: > Hello everyone, > > I had a horrible thing happen to me this morning and wanted to make it > known to the community. > > I needed to delete a record from a very large table (yes, it was > backed up) an

Disaster with dash on mysql cli interface

2006-06-21 Thread Kevin Old
if it contains a certain character (like the dash). Fat chance there is, but I thought I'd ask. Hope this helps someone, Kevin -- Kevin Old [EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Password problems using Mac OS X

2006-06-14 Thread Kevin Felix
r MySQL do all use the same database though. Does it matter what version phpinfo() is giving me? Kevin Felix Op 14-jun-06, om 05:18 heeft Dan Buettner het volgende geschreven: Kevin - You can start up the MySQL server without password protection using the --skip-grant-tables option. Note

Password problems using Mac OS X

2006-06-14 Thread Kevin Felix
ning without me getting access to the server once again. Does anyone have a solution? Thank you for your time Kevin Felix [EMAIL PROTECTED] (e-mail) [EMAIL PROTECTED] (MSN-Messenger) ekefster (AIM)

Re: Get the record with the latest date

2006-05-28 Thread Kevin F. O'Riordan
s is actually a FAQ, with solutions in > the manual > <http://dev.mysql.com/doc/refman/4.1/en/example-maximum-column-group-row.html>. good luck, Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: can not read from pipe

2006-05-18 Thread Kevin F. O'Riordan
al command but reading from the new sql.fifo . If it hangs: Sounds like there's nothing to read from the pipe. What does 'cat mysql.pipe' print? HTH, Kevin -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Insert speed on table with 7M rows but small row size.

2006-04-07 Thread Kevin Burton
this operation? Kevin Kevin A. Burton, Location - San Francisco, CA AIM/YIM - sfburtonator, Web - http://www.feedblog.org/ GPG fingerprint: 5FB2 F3E2 760E 70A8 6174 D393 E84D 8D04 -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Using Network Block Device on Linux to build HUGE/cheap memory-base MySQL boxes.

2006-02-19 Thread Kevin Burton
rt was pulled. The box would fail. Of course at this point its a bit like pulling a SCSI cable out. If this turns out to be a good way to scale MySQL someone could just pay to have NBD enhanced to support fault tolerance with mirror nodes. Thoughts? Kevin Kevin A. Burton, Location - Sa

Re: Drop all tables?

2006-01-02 Thread Kevin Spencer
e --add-drop-table --no-data > your_output_file.sql And then import it: mysql databasename < your_output_file.sql -- Kevin. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

  1   2   3   4   5   6   7   >