Re: [MySQL] Re: Decimal points

2010-07-20 Thread Ashley M. Kirchner
On 7/20/2010 10:07 AM, Chris W wrote: I try to avoid asking why but in this case I have to. I can't imagine wanting to have a list of numbers displayed and not have them all aligned right with the sane number of digits after the decimal point. So why would you even want to do this is?

Re: [MySQL] Re: MySQL select matching

2010-07-19 Thread Ashley M. Kirchner
On 7/19/2010 11:08 AM, Shawn Green (MySQL) wrote: Just because someone hands you a set of data to *start* with, does not mean that you must only use that data to *work* with. You should be able create additional tables derived from the original data and work with those as part of your analysis

Re: [MySQL] Re: MySQL select matching

2010-07-19 Thread Ashley M. Kirchner
On 7/19/2010 10:48 AM, Michael Dykman wrote: Not quite sure what the question is. from: mysql> select * from table where id='1'; +---+-+-+---+ | 1 | 123 | 0.0 | C | | 1 | 234 | 0.1 | D | | 1 | 345 | 0.0 | D | | 1 | 456 | 0.1 | C | | 1 | 567 | 0.1 | G | +

MySQL select matching

2010-07-19 Thread Ashley M. Kirchner
I may be going at this completely wrong but at the moment I'm stuck. I have a DB from a client and need to do several searches on it. This one sentence is important because it's their DB, not mine. So I can't modify the way the DB was created in the first place, I can only work with wh

Decimal points

2010-07-19 Thread Ashley M. Kirchner
mysql> select 1+1.0; +---+ | 1+1.0 | +---+ | 2.0 | +---+ 1 row in set (0.00 sec) mysql> select 1+1.1; +---+ | 1+1.1 | +---+ | 2.1 | +---+ 1 row in set (0.00 sec) Is there a way to tell MySql to only return '2' in the first select as opposed to

RE: [MySQL] Re: Variables in stored procedures

2010-05-01 Thread Ashley M. Kirchner
Huh? That doesn't make a whole lot of sense. If that is the case, can you explain why? Is the stored procedure mechanism that primitive? From: Ted Yu [mailto:yuzhih...@gmail.com] Sent: Saturday, May 01, 2010 7:11 AM To: Ashley M. Kirchner Subject: Re: [MySQL] Re: Variables in s

RE: [MySQL] Re: Variables in stored procedures

2010-04-30 Thread Ashley M. Kirchner
> -Original Message- > From: Shawn Green [mailto:shawn.l.gr...@oracle.com] > Sent: Friday, April 30, 2010 9:49 PM > To: Ashley M. Kirchner > Cc: mysql@lists.mysql.com > Subject: [MySQL] Re: Variables in stored procedures > > Two options > > 1) u

Variables in stored procedures

2010-04-30 Thread Ashley M. Kirchner
I have the following procedure: -- CREATE PROCEDURE `geodistance`(IN userid int, IN maxdist int) begin declare userlng double; declare userlat double; declare lng1 float; declare lng2 float; declare lat1 float; declare lat2 float; select lng, lat into userlng, userla

Re: [MySQL] Re: Image Store @ My SQL

2010-01-30 Thread Ashley M. Kirchner
There are many ways to skin this cat ... -- H | It's not a bug - it's an undocumented feature. +-------- Ashley M. Kirchner <mailto:ash...@pcraft.com> . 303.442.6410 x130 IT Director / SysAdmin

Help with SELECT clause

2009-11-21 Thread Ashley M. Kirchner
I'm stuck again ... and perhaps it's just not designed right, but I inherited this setup, so if anyone has suggestions on how to make it better, I'm all ears. This is all one table ... describe approvals; +---+--+--+-+-++ | Field

Selecting data from multiple tables

2009-11-15 Thread Ashley M. Kirchner
Hi folks, I'm trying to, possibly do the impossible here. I have to select data from 4 different tables to come up with the right information and I'm having one heck of time trying to figure it out. This is going to be a long email ... Table_1: +---+--+--+---

Re: [MySQL] Re: REPOST: ON DUPLICATE failure

2009-01-21 Thread Ashley M. Kirchner
Michael Dykman wrote: It worked fine as you wrote it on my v5.0.45, although it reported 2 rows affected on each subsequent run of the insert statement. I thought this odd as I only ran the same statement repeatedly leaving me with one row ever, but the value updated just fine. I noticed

REPOST: ON DUPLICATE failure

2009-01-21 Thread Ashley M. Kirchner
Anyone? I'm trying to diagnose this and not having much luck. I can't even figure out where to even begin to look. I have two MySQL servers and getting different results for the same query on both: SERVER 1: mysqladmin Ver 8.41 Distrib 5.0.37, for pc-linux-gnu on i686 S

ON DUPLICATE failure

2009-01-20 Thread Ashley M. Kirchner
I'm trying to diagnose this and not having much luck. I can't even figure out where to even begin to look. I have two MySQL servers and getting different results for the same query on both: SERVER 1: mysqladmin Ver 8.41 Distrib 5.0.37, for pc-linux-gnu on i686 SERVER 2:

Restarting/Rebuilding Slave

2008-04-22 Thread Ashley M. Kirchner
undocumented feature. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Imaging . 3550 Arapahoe Ave. #6 http://www.pcraft.com . . .

Re: [MySQL] remove me from this list please

2007-08-29 Thread Ashley M. Kirchner
[EMAIL PROTECTED] wrote: Please remove me from this list or tell me how I can do this procedure... Thanks... Have you noticed what the footer of each message says? MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.my

Padding result

2007-05-31 Thread Ashley M. Kirchner
's an undocumented feature. +---- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Imaging . 3

Bin logs...

2007-05-03 Thread Ashley M. Kirchner
I have a query that's failing and I can't figure it, I can't read the log file. Suggestions anyone? -- W | It's not a bug - it's an undocumented feature. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTE

Re: [MySQL] Re: Can't Bind to Port

2007-03-03 Thread Ashley M. Kirchner
x27;s an undocumented feature. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Imaging . 3550 Arap

Selecting avg()...

2007-01-06 Thread Ashley M. Kirchner
This is a continuation of something I started with a few weeks ago. So, here's the previous information again: table: data ++---+--+-+---++ | Field | Type | Null | Key | Default | Ex

Re: [MySQL] Re: Filling blanks on SELECT

2006-12-28 Thread Ashley M. Kirchner
(or NULL) or not. The graphing program will do the rest. -- W | It's not a bug - it's an undocumented feature. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / W

Re: [MySQL] Re: Filling blanks on SELECT

2006-12-28 Thread Ashley M. Kirchner
undocumented feature. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Imaging . 3550 Arapahoe Ave.

Filling blanks on SELECT

2006-12-28 Thread Ashley M. Kirchner
-- W | It's not a bug - it's an undocumented feature. +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Imaging . 3550 Arapahoe A

Re: [MySQL] Re: Question on SELECT

2006-12-27 Thread Ashley M. Kirchner
Chris Comparini wrote: Try something like this: select hour(time) as the_hour, avg(temp_f) as average_temp_f from data where time > now() - interval 24 hour group by the_hour; Thanks Chris. Question though, why is it that when I change that to 48 hours, it only gives me 24 results (s

Question on SELECT

2006-12-27 Thread Ashley M. Kirchner
Hi All, I have a table that's described as follows: ++---+--+-+---++ | Field | Type | Null | Key | Default | Extra | ++---+--+-+-

www/dev.mysql.com?

2006-08-31 Thread Ashley M. Kirchner
Anyone else having trouble getting to either sites? -- W | It's not a bug - it's an undocumented feature. +---- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / Sys

Re: [MySQL] Testing

2006-01-07 Thread Ashley M. Kirchner
Mike Blezien wrote: is the list still working ? Would you believe me if I said, "No."? -- W | It's not a bug - it's an undocumented feature. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]>

Re:Backing up live MySQL Databases

2005-06-16 Thread Ashley M. Kirchner
n doing a dump of the data? (Note the difference, one will copy files, the other dumps the data for backup.) -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------- Ashley M. Kirchner. 303.442.64

Re: [MySQL] mysql/snort/webmin/permissions

2005-03-18 Thread Ashley M. Kirchner
up on tape somewhere. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Imaging . 3550 Arapahoe Ave.

Re: [MySQL] Re: Reversing DESC|ASC

2004-11-26 Thread Ashley M. Kirchner
uot; of the newer version. -- H | I haven't lost my mind; it's backed up on tape somewhere. +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith .

Re: [MySQL] Re: Reversing DESC|ASC

2004-11-26 Thread Ashley M. Kirchner
mind; it's backed up on tape somewhere. +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Imaging .

Reversing DESC|ASC

2004-11-26 Thread Ashley M. Kirchner
ven't lost my mind; it's backed up on tape somewhere. +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3

Re: [MySQL] Duplicate selection with change

2004-06-28 Thread Ashley M. Kirchner
aven't lost my mind; it's backed up on tape somewhere. +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratorie

Re: [MySQL] Can't start server: Bind on TCP/IP port: Address already in use

2004-06-07 Thread Ashley M. Kirchner
I haven't lost my mind; it's backed up on tape somewhere. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Pho

Re: [MySQL] Re: Stop Scrolling

2004-05-31 Thread Ashley M. Kirchner
;t lost my mind; it's backed up on tape somewhere. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories,

Select on datetime

2004-05-17 Thread Ashley M. Kirchner
So, if today being 2004-05-16, -> I want to select all entries dated 2003-05-16 -> And I also want entries dated between 2003-05-16 and 2003-05-23 -- H| I haven't lost my mind; it's backed up on tape somewhere. +------

Re: [MySQL] RE: Question: Connecting MySQL with DreamWeaver MX on Windows 2000

2003-04-04 Thread Ashley M. Kirchner
d; it's backed up on tape somewhere. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc..

Re: [MySQL] RE: Question: Connecting MySQL with DreamWeaver MX on Windows 2000

2003-04-04 Thread Ashley M. Kirchner
contents, you would've quickly found out which sections specifically you needed to read - it's very short and can be done within 10 minutes. -- H| I haven't lost my mind; it's backed up on tape somewhere. +-------

Re: [MySQL] RE: Question: Connecting MySQL with DreamWeaver MX on Windows 2000

2003-04-03 Thread Ashley M. Kirchner
;s backed up on tape somewhere. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc.. 3550 Arapahoe Ave. #6 http://www.pcraft.com . . .. Boul

Re: [MySQL] RE: Question: Connecting MySQL with DreamWeaver MX on Windows 2000

2003-04-03 Thread Ashley M. Kirchner
#x27;s backed up on tape somewhere. +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc.. 3550 Arapahoe Ave. #6 http://www.pcraft.com . . ..

Re: [MySQL] What terminates a query?

2002-12-23 Thread Ashley M. Kirchner
o your sql result (say ##END##) and have the perl program check for that string. Once found, it knows the sql command has finished. -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------- Ashley

Re: [MySQL] Problems with 'make install'

2002-09-12 Thread Ashley M. Kirchner
g without an eraser." - John Gardner +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 800.441.3873 x130 Photo Craft Laboratories, Inc..

Re: [MySQL] interesting find

2002-09-06 Thread Ashley M. Kirchner
ng really. (though I tend to put 'screwed with by' whenever I change something ) -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------- Ashley M. Kirchner <mailto:[EMAI

Re: [MySQL] re-install on linux

2002-09-05 Thread Ashley M. Kirchner
.23.52-1 MySQL-devel-3.23.52-1 [root@serpico ~]# -- H | "Life is the art of drawing without an eraser." - John Gardner +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director

Re: mysql not supporting php.

2002-06-02 Thread Ashley M. Kirchner
show databases; -- H | "Life is the art of drawing without an eraser." - John Gardner +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 8

Re: [MySQL] Re: for You

2002-01-29 Thread Ashley M. Kirchner
of blindly quoting the whole thing back to the list. That generates quite a bit of traffic and doesn't make you any better than the spammers themselves. -- H | "Life is the art of drawing without an eraser." - John Gardner +------

Re: [MySQL] RE: 4416 Great Growth Potential 185528 ---Hmmm

2002-01-09 Thread Ashley M. Kirchner
h as > research reports, public filings or computer databases and information > provided by management of the profiled company. -- H | "Life is the art of drawing without an eraser." - John Gardner +-------- Ashley M. Ki

Re: [MySQL] can you have a no-default column; error if unspecified?

2001-12-01 Thread Ashley M. Kirchner
ng to stop a user from entering -00-00? You'll have to create validation schemes in your code. -- H | "Life is the art of drawing without an eraser." - John Gardner + Ashley M. Kirchner <mailto:[EM

Compile errors...GCC or MySQL?

2001-11-22 Thread Ashley M. Kirchner
- H | "Life is the art of drawing without an eraser." - John Gardner +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 800.441.3873 x130

InnoDB Compiler error (as well)

2001-11-22 Thread Ashley M. Kirchner
ife is the art of drawing without an eraser." - John Gardner +-------- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 800.441.3873 x130 Photo

Gemini compile error

2001-11-22 Thread Ashley M. Kirchner
subject, does BDB tables provide the same type of locking that Gemini does? Is there any reason to favor Gemini over BDB? -- H | "Life is the art of drawing without an eraser." - John Gardner +-------- Ashley M

Table Locking...

2001-11-21 Thread Ashley M. Kirchner
start the second process (which should re-check for existing information, and not blindly issue another INSERT right after the first one). -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------- Ashley M. Kir

Re: Can't compile 3.23.44 Help

2001-11-11 Thread Ashley M. Kirchner
installed. You need those for MySQL. And they are not part of gcc. Look for the termcap, libtermcap and ncurses rpms and install those. -- H | "Life is the art of drawing without an eraser." - John Gardner +------------ Ashl

Re: [MySQL] Re: New Install Problems

2001-10-04 Thread Ashley M. Kirchner
l daemon 3 Sep 21 14:33 gems.pid drwx--2 sql daemon 4096 Oct 4 14:25 mysql/ srwxrwxrwx1 sql daemon 0 Sep 21 14:33 mysql.sock= -- W | I haven't lost my mind; it's backed up on tape somewhere. +-

New Install Problems

2001-09-19 Thread Ashley M. Kirchner
ow? -- W | I haven't lost my mind; it's backed up on tape somewhere. +---- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873

Re: [MySQL] Problems getting into MySQL.com

2001-08-29 Thread Ashley M. Kirchner
Philip Daggett wrote: > Is anybody else not able to get onto mysql.com??? Looks like, it'd be down... -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------- Ashley M. Kirchner <ma

Re: [PHP-DB] Order by unix timestamp

2001-07-12 Thread Ashley M. Kirchner
ge. BP! +---- Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 800.441.3873 x130 Photo Craft Laboratories, Inc.. 3550 Arapahoe Ave, #6 http://www.pcraft.com . . .

[Fwd: Re: message traffic]

2001-06-29 Thread Ashley M. Kirchner
This was sent to me, and it should've gone to the list instead. Original Message Subject: Re: message traffic Date: Fri, 29 Jun 2001 11:17:57 -0700 From: "Michael Tam" <[EMAIL PROTECTED]> To: "Ashley M. Kirchner" <[EMAIL PROTECT

Re: message traffic

2001-06-28 Thread Ashley M. Kirchner
ind. Please leave a message. BP! +------------ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 800.441.3873 x130 Photo Craft Laboratories, Inc..

Re: Strange connect (socket) problem

2001-04-26 Thread Ashley M. Kirchner
mind. Please leave a message. BP! | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 800.441.3873 x130 Photo Craft Laboratories, Inc.

Strange connect (socket) problem

2001-04-26 Thread Ashley M. Kirchner
in fact)... -- H | Hi, I'm currently out of my mind. Please leave a message. BP! | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> .

Re: RV: A bug ??

2001-04-26 Thread Ashley M. Kirchner
I haven't lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Laborato

Re: names ...

2001-04-22 Thread Ashley M. Kirchner
p://www.mysql.com/doc/R/e/Reserved_words.html -- H | Hi, I'm currently out of my mind. Please leave a message. BP! | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PR

largest timestamp value

2001-04-20 Thread Ashley M. Kirchner
7;t lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 SysAdmin / Websmith

Re: Security

2001-04-09 Thread Ashley M. Kirchner
. AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. |________ ~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 SysAdmin / Websmith .

Security

2001-04-09 Thread Ashley M. Kirchner
've checked other resources online, and I'm still lost. AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. |____________ ~~~

Re: REPOST: SELECT syntax

2001-04-05 Thread Ashley M. Kirchner
nstead of NULLs. Thanks! AMK4 -- H | Hi, I'm currently out of my mind. Please leave a message. BP! | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PRO

Re: REPOST: SELECT syntax

2001-04-05 Thread Ashley M. Kirchner
ing data in it? -- H | Hi, I'm currently out of my mind. Please leave a message. BP! |________ ~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130

REPOST: SELECT syntax

2001-04-04 Thread Ashley M. Kirchner
UNT() in it instead? AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <ma

SELECT syntax

2001-04-03 Thread Ashley M. Kirchner
UNT() in it instead? AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <ma

Db Efficiency

2001-04-03 Thread Ashley M. Kirchner
any) did you come up with? AMK4 -- H | Hi, I'm currently out of my mind. Please leave a message. BP! | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PR

Re: MySQL 3.23.33 & BerkeleyDB 3.2.9

2001-03-11 Thread Ashley M. Kirchner
Please leave a message. BP! | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 Director of Internet Operations / SysAdmin. 800.441.3873 x130 Photo Craft Laboratories, Inc. .eFax 248.671.0909 http://www.pcraft.com

Re: problem with berkeley DB v3.2.9 and mysql v3.2.33 under Solaris 8

2001-03-02 Thread Ashley M. Kirchner
nload BDB v3.2.9a from www.mysql.com AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL

Re: Berkeley DB and mysql

2001-02-26 Thread Ashley M. Kirchner
backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. .eFax 248.671.0909 http://www.pcraft.com

Re: berkeley db

2001-02-23 Thread Ashley M. Kirchner
. AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 3

Re: RedHat 7

2001-02-15 Thread Ashley M. Kirchner
lf, instead of using RedHat's rpms) AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirc

Virus Alert

2001-02-12 Thread Ashley M. Kirchner
r two." AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]&g

Re: Out of disk space

2001-02-02 Thread Ashley M. Kirchner
. Better free up some space on that drive. AMK4 -- W | | I haven't lost my mind; it's backed up on tape somewhere. |____________ ~~~

Excel->MySQL

2001-01-31 Thread Ashley M. Kirchner
d; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 SysAdmin / Websmith . 800.441.3873 x130 Photo Craf

Re: Running two "Makes"

2001-01-30 Thread Ashley M. Kirchner
he system without messing with the original distribution's version. AMK4 -- H | Hi, I'm currently out of my mind. Please leave a message. BP! | ~~~~~

DB Structures

2001-01-23 Thread Ashley M. Kirchner
d; it's backed up on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 SysAdmin / Websmith

3.23.21 + DB 3.2.3h

2001-01-21 Thread Ashley M. Kirchner
ought 'g' came before 'h'...someone please tell me I'm wrong? AMK4 -- H | Hi, I'm currently out of my mind. Please leave a message. BP! | ~~~~~

Re: Please remove me

2001-01-16 Thread Ashley M. Kirchner
p on tape somewhere. | ~~~~~~~~~ Ashley M. Kirchner <mailto:[EMAIL PROTECTED]> . 303.442.6410 x130 SysAdmin / Websmith . 800.441.3873 x130 Photo Craft Laboratories, Inc.