Re: error 29, file not found (errcode: 13)

2014-06-23 Thread Scott Helms
I generally drop them into /tmp for easy access and cleanup after the data load, but you can put them any place that the mysql daemon process has access to read. Scott Helms Vice President of Technology ZCorum (678) 507-5000 http://twitter.com/kscotthelms

Re: Performance Problems

2003-09-18 Thread Scott Helms
le type? Have you looked at the processes that are running when run your query? mysqladmin -p process Will show what is happening, another very useful tool is mytop: http://jeremy.zawodny.com/mysql/mytop/ Scott Helms -- MySQL General Mailing List For list archives: http://lists.mysq

Re: Speeding up Queries

2003-08-01 Thread Scott Helms
information on your set up thats about all anyone can provide. If you are reason Scott Helms On Fri, 2003-08-01 at 15:17, Daniel Negron/KBE wrote: > I have an osCommerce Site along with another Dating site on a completely > different server. on the oscommerce site I have 1200 products a

Re: R: Replication don't work.

2003-03-31 Thread Scott Helms
on the master, this gave me fits for several hours one day while moving a slave to being the master when the then current master died of a bad hard drive. No guarantees, but this will greatly improve your chances of an intelligent answer. ;p Scott Helms On Mon, 2003-03-31 at 17:04, trashMan wrote

Re: Replication don't work.

2003-03-31 Thread Scott Helms
Massi, How about looking in the data directory, on the master. There will be a file called hostname.err the contents will probably lead you to the answer or least give some more data for the list to look at ;p Scott Helms On Mon, 2003-03-31 at 16:29, trashMan wrote: > There are

Re: Why don't ISPs use v4

2003-03-31 Thread Scott Helms
se problems are close to universal in the space. Scott Helms On Mon, 2003-03-31 at 12:00, Ben Edwards wrote: > Anyone know why the two ISPs I use (www.pair.com, www.oneandone.co.uk) are > still using V3 and don't have any timescal

Re: How much data can MySQL push out?

2002-10-31 Thread Scott Helms
k changing the RDBMS will fix the problem. Scott Helms - Original Message - From: "Benji Spencer" <[EMAIL PROTECTED]> To: "Brent Baisley" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 31, 2002 10:13 AM Subject: Re: How much data ca

Re: replication problem

2002-05-31 Thread Scott Helms
estart the slave. Once that is done test replication by going to the master and creating a database, then check on the slave to ensure its there with a show databases. Scott Helms - Original Message - From: "Bartomiej Dolata" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]&g

Re: lost root password trouble

2002-04-30 Thread Scott Helms
ack in with the root password and all of your other accounts are unaffected. Scott Helms - Original Message - From: "Nick Wilson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 30, 2002 1:32 PM Subject: Re: lost root password trouble > -

Re: MYSQL REPLICATION

2002-03-28 Thread Scott Helms
hanging the new (4.x) tree. Scott Helms - Original Message - From: "Joe Bifano" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 28, 2002 5:54 PM Subject: MYSQL REPLICATION > I am trying to configure mysql for redundancy using replication and th

Re: Replication Failure (or Bug?): Cannot Connect, but Should?

2002-03-27 Thread Scott Helms
priv: N Index_priv: N Alter_priv: N 1 row in set (0.01 sec) Scott Helms Director of Technology, ZCorum - Original Message - From: "Leonard Megliola" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 27, 2002 12:16 PM Subject: Re: Replicati

Re: Problem loading PC DB into Solaris

2002-03-25 Thread Scott Helms
oint, I can feel the water getting deeper :-) Scott Helms Director of Technology, ZCorum (770) 888-8900 ext 2205 - Original Message - From: "Alexander, Chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 25, 2002 12:21 PM Subject: RE: Problem loading

Re: Problem loading PC DB into Solaris

2002-03-25 Thread Scott Helms
browser. It should show the mysl support section. Scott Helms - Original Message - From: "Alexander, Chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 25, 2002 11:34 AM Subject: RE: Problem loading PC DB into Solaris > Yep, all that st

Flushing slave & master mysql

2002-03-25 Thread Scott Helms
; and had no problem, now when I try this I have to grab a new shot of the master's data directory and copy it over to the slaves. Info: Solaris 8 MySql version 3.23.41-log Thanks, Scott Helms - Before posting, please

Re: Problem loading PC DB into Solaris

2002-03-25 Thread Scott Helms
lem probably isn't MySql, however, I think you will identify the problem before reaching the end :-) Scott Helms Director of Technology, ZCorum - Original Message - From: "Alexander, Chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 25

tuning mysql

2002-03-15 Thread Scott Helms
I have a fairly decent server who is handling lots of connections, but very simple SQL and I am looking for tuning advice. I have a pretty high number of simultaneous connections and the box is showing a few signs of stress, that I want to address before they become a problem. Any help will be g

Re: Grants to a database table that doesn't exist yet

2002-03-15 Thread Scott Helms
Luc, I think you have to do the manual inserts to make this work before the tables are there. I wrestled with this problem briefly, before writing a quick script. Scott Helms Director of Technology, ZCorum - Original Message - From: "Luc Foisy" <[EMAIL PROTECTED]>

Re: mysql on Linux

2002-03-05 Thread Scott Helms
Mark, This probably won't get you the response you wanted. How about letting us know where you have gotten to and where things seem to be breaking. A generalized request for "what do I do" often recieves little or no help. Some basic system information would also be much appreciated; what d

Re: MySQL Client/Server problem

2002-02-12 Thread Scott Helms
ot;host=%", but I don't reccomend this! Instead read this section from the manual on adding users: http://www.mysql.com/documentation/mysql/bychapter/manual_MySQL_Database_Adm inistration.html#Adding_users I also reccomend you read the section on the privilege system: http://www.mysql.com

Re: Table Lock

2002-01-28 Thread Scott Helms
Try this: If you are using a table handler in MySQL that doesn't support transactions, you must use LOCK TABLES if you want to ensure that no other thread comes between a SELECT and an UPDATE. The example shown below requires LOCK TABLES in order to execute safely: mysql> LOCK TABLES trans READ,

Re: Help! Replication: Cleanup after failover

2001-12-26 Thread Scott Helms
Steve, There isn't an automated way, but you can at least semi-script this. To switch the slave to the master after the old master has failed and then brought back up do this: Shut down MySQL on the NEW master mysqladmin -u root -p shutdown Snapshot all the data on your NEW master server.

Re: Help! Replication: Cleanup after failover

2001-12-26 Thread Scott Helms
Steve, Are the two servers roughly equal in terms of hardware? Scott Helms > > Please help, I've read through the manual and this case is suggested but > not really > laid out. I'm using mysql 3.23.37 and can't upgrade to 4.0 yet. > > Okay, I'v

Re: Blocked MySQL

2001-12-17 Thread Scott Helms
Robert, You need to provide alot more data. How about platform and MySQL version to start, a copy of your config (my.cnf) file, and provide exactly what you're typing and the response. Scott Helms - Original Message - From: "robertix" <[EMAIL PROTECTED]>