Re: Another cry for help..

2007-12-22 Thread Anders Norrbring
Anders Norrbring skrev: Brent, you put me on the right track.. ;) Reading up a bit on syntax for variables, I came up with the following, which seems to work. SET @tid:=(SELECT tid FROM objects WHERE shortname = %s); SET @vid:=(SELECT vid FROM itemtypes WHERE itemtype LIKE %s); SELECT (count(*

Re: Another cry for help..

2007-12-20 Thread Jay Pipes
You could use a view: CREATE VIEW all_scores SELECT s.tid, s.vid, s.uid, s.highScore FROM score s JOIN objects o ON s.tid = o.tid JOIN itemtypes it ON s.vid = it.vid JOIN users u ON s.uid = u.uid WHERE o.shortname = %s /* Should these ANDs really be ORs? */ AND i.itemtype LIKE %s; SELECT highSco

Re: Another cry for help..

2007-12-20 Thread Anders Norrbring
Brent Baisley skrev: You're right that wouldn't work because you can't assign the query results to a variable. You want to put the variables in the query and assign them to the value of the field. ...WHERE s2.tid = (SELECT @tid:=tid AS tid FROM objects WHERE shortname = %s)... That should work b

Re: Another cry for help..

2007-12-20 Thread Anders Norrbring
Brent, you put me on the right track.. ;) Reading up a bit on syntax for variables, I came up with the following, which seems to work. SET @tid:=(SELECT tid FROM objects WHERE shortname = %s); SET @vid:=(SELECT vid FROM itemtypes WHERE itemtype LIKE %s); SELECT (count(*)+)/(SELECT COUNT(*) FROM

Re: Another cry for help..

2007-12-20 Thread Anders Norrbring
Brent Baisley skrev: You might be able to use variables to store the result of the query. Although I've never tried assigning the result of a query to a variable, only field values. SELECT (count(*)+)/(SELECT COUNT(*) FROM score AS s2 WHERE s2.tid = @tid:=(SELECT tid FROM objects WHERE shortname

Re: Another cry for help..

2007-12-20 Thread Anders Norrbring
Moon's Father skrev: Just a look at your sql query at first. Your like key word's right must like this: like 's%', then it'll use the index you created for your table. The second try you may use temporary table to replace your own query like " (SELECT uid FROM users WHERE username = %s) " Well

Another cry for help..

2007-12-20 Thread Anders Norrbring
Hi.. I'm struggling with a query that I'm trying to simplify as much as possible, but I can't seem to get rid of using the very same subqueries several times. Would there be a way to optimize the following so I get rid of subqueries that do the exact same thing more than once? SELECT (count(*

Re: creating buddy list. request for help

2007-08-17 Thread robert rottermann
Martijn Tonies schrieb: > Hi, > >> I have a rather basic problem I would be glad to get some help: >> What I intend to do is: >> - create a person-list >> - create a buddy-list >> each entry in the person-list can have 0 to many buddies >> - when an entry in the person-list is deleted, I would

Re: creating buddy list. request for help

2007-08-17 Thread Martijn Tonies
Hi, > I have a rather basic problem I would be glad to get some help: > What I intend to do is: > - create a person-list > - create a buddy-list > each entry in the person-list can have 0 to many buddies > - when an entry in the person-list is deleted, I would like to > have correspnding ent

creating buddy list. request for help

2007-08-17 Thread robert rottermann
hi there, I have a rather basic problem I would be glad to get some help: What I intend to do is: - create a person-list - create a buddy-list each entry in the person-list can have 0 to many buddies - when an entry in the person-list is deleted, I would like to have correspnding entries in

Re: For help

2006-02-10 Thread sheeri kritzer
If you mean a slave that replicates more than one master, that is not possible -- ie, this is not possible: Master1 -- |--> Slave Master 2 - However, if you mean: Master 1 <---> Master2 Then all you have to do is set up replication so Master2 is a slav

For help

2006-02-10 Thread 罗新荣
hello ! Has anybody used of Multiple-master replication? How to set up? How to modify the my.cnf file? Thank you very much!!!    [EMAIL PROTECTED]   2006-02-10

Re: mysql exclusion query with JOIN (request for help)

2005-03-23 Thread Jigal van Hemert
Hi Daniel, > Jigal, thank you very much. However, this does not resolve my issue. > > even when querying: > SELECT * FROM ae_articles AS art LEFT JOIN ae_articlesections AS sec ON > art.ID=sec.articleID WHERE art.title LIKE '%bush%' AND sec.sectionID IN (1,2) > AND sec.sectionID NOT IN (3) What *

Re: mysql exclusion query with JOIN (request for help)

2005-03-23 Thread Jigal van Hemert
yntax. You can find info on joins at: http://dev.mysql.com/doc/mysql/en/join.html Regards, Jigal. - Original Message - From: "Dan Duris" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 23, 2005 10:35 AM Subject: mysql exclusion query with JOIN (request for help) > Anyon

mysql exclusion query with JOIN (request for help)

2005-03-23 Thread Dan Duris
Anyone knows who to make exclusion query when table is referenced via JOIN: SELECT * FROM ae_articles AS art LEFT JOIN ae_articlesections AS sec ON art.ID=sec.articleID LEFT JOIN ae_articlesections AS sec2 ON art.ID=sec2.articleID LEFT JOIN ae_articlesections AS sec3 ON art.ID=sec3.articleID WHERE

Re: Ask for help on a mysql problem

2004-10-19 Thread Martijn Tonies
> > That is ONE way to store a tree structure :-) > > > Another would be: > > > ITEMS > > (ItemID INT AUTO_INCREMENT PRIMARY KEY NOT NULL, > > other stuff) > > > ITEM_PARENT > > (ItemID int, > > ParentID int > > primary key (ItemID, ParentID) > > ) > > > > I prefer the latter. > > The latter is n

Re: Ask for help on a mysql problem

2004-10-19 Thread Harald Fuchs
In article <[EMAIL PROTECTED]>, "Martijn Tonies" <[EMAIL PROTECTED]> writes: > That is ONE way to store a tree structure :-) > Another would be: > ITEMS > (ItemID INT AUTO_INCREMENT PRIMARY KEY NOT NULL, > other stuff) > ITEM_PARENT > (ItemID int, > ParentID int > primary key (ItemID, ParentID

Re: Ask for help on a mysql problem

2004-10-19 Thread Martijn Tonies
Hello, > The only difference is that you have moved parent outside main table. > No benefits at all. You have to create two records I two tables instead of > one. You have to make joins to see what is the parent of particular child. > I am strongly against this. Why? 1) relational theory clearly

Re: Ask for help on a mysql problem

2004-10-19 Thread Martijn Tonies
Egor, others, > It's really clear what you want. Please specify. > > If what you basicaly want is just a tree structure, then it's done like that: > > > CREATE TABLE something ( > id INT AUTO_INCREMENT PRIMARY KEY NOT NULL, > parent INT NOT NULL, > data1 CHAR(255), > data2 CHAR(255), > ... > > );

Re: Ask for help on a mysql problem

2004-10-19 Thread Egor Egorov
Teng Wang <[EMAIL PROTECTED]> wrote: It's really clear what you want. Please specify. If what you basicaly want is just a tree structure, then it's done like that: CREATE TABLE something ( id INT AUTO_INCREMENT PRIMARY KEY NOT NULL, parent INT NOT NULL, data1 CHAR(255

Re: Ask for help on a mysql problem

2004-10-15 Thread Diona Kidd
Teng, how is this different than a foreign key? On Oct 14, 2004, at 11:27 PM, Teng Wang wrote: I wanna setup a tree structure. Each node in this tree is a table. Each table has a "link" field. For each record, the data in this field is a pointer to another table or null. I read mysql manual but don

Ask for help on a mysql problem

2004-10-14 Thread Teng Wang
I wanna setup a tree structure. Each node in this tree is a table. Each table has a "link" field. For each record, the data in this field is a pointer to another table or null. I read mysql manual but don't find any clues that SQL supports such a "link" field. Does anyone has an idea about that?

RE: [Mysql-discussions] Newbie call for HELP!

2004-01-30 Thread Remko Lodder
community for helping newcomers on the hackerscene -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Chadley Wilson Verzonden: vrijdag 30 januari 2004 13:28 Aan: [EMAIL PROTECTED] Onderwerp: [Mysql-discussions] Newbie call for HELP! Hello I need to know how to get

Newbie call for HELP!

2004-01-30 Thread Chadley Wilson
Hello I need to know how to get data base connectivity to a windows SQL2000 server from linux based app. Are there any tools that I need. When I try to connect I get this error "DBMS MSS Microsoft SQL Server 6.x is not supported in your current installation" I am sure that it is just client conne

req. for help for installing mysql under linux

2002-12-31 Thread sireesha vudatha
Hi all, I am a newbie(student) to mysql in linux environment. I was trying to install the mysql-3.23.51-pc-linux-gnu-i686.tar.gz on my linux - mandrake 8.2 from sourceforge.net. When I type in ./configure, it says, there is no need to configure for binary..., then the mysqld starts and close

REWARD for help

2002-09-13 Thread Quinn Perkins
I will buy a book of the helpers choice from Amazon.com (within reason up to $50ish) for help solving my problem: I need to do something kinda odd that I'm hoping to get help with...except for any suggestions of changing my base table structure. (Although if there was someway to

Re: Request for help - Table Crashing

2002-08-31 Thread Jocelyn Fournier
: Sunday, September 01, 2002 3:35 AM Subject: Request for help - Table Crashing > Hello, > > This is my 2nd post, not to sound pushy, just raising the urgency of my > dilemna. My table is crashing way to often (I'd like it to not crash at > all). > I'm not sure w

Request for help - Table Crashing

2002-08-31 Thread Karl J. Stubsjoen
Hello, This is my 2nd post, not to sound pushy, just raising the urgency of my dilemna. My table is crashing way to often (I'd like it to not crash at all). I'm not sure what to do, how to trouble shoot, and how to fix my problem. I will post the structure of the table here, as well as the pert

Re: mysql database quota solution for help!!

2002-06-02 Thread Benjamin Pflugmann
list archive as quota issues come up regularly and you may find an answer there. Bye, Benjamin. On Sat 2002-06-01 at 17:54:43 +0800, [EMAIL PROTECTED] wrote: > mysql database quota solution for help!! -- [EMAIL P

mysql database quota solution for help!!

2002-06-01 Thread asong
mysql database quota solution for help!! - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EM

RE: DESPERATE NEED FOR HELP!!!!!

2002-04-04 Thread John Parsons
ql and all worked fine. Cheers John > -Original Message- > From: John Parsons [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 04, 2002 9:52 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: DESPERATE NEED FOR HELP! > > > I have just been a complete mup

RE: DESPERATE NEED FOR HELP!!!!!

2002-04-04 Thread Yava Soft
D] Subject: DESPERATE NEED FOR HELP! I have just been a complete muppet and trashed the tables in my database and don't have a recent backup. The database is used for the phpBB system and still functions when I visit the site via a web browser since the database is still cached. Is ther

Re: DESPERATE NEED FOR HELP!!!!!

2002-04-04 Thread Rodney Broom
From: Balteo <[EMAIL PROTECTED]> > Why don't you create a php script that generates SQL instead of HTML; i > will repopulate your database acting as a dump? Not a bad idea. John, be carefull not to mess up whatever cache is currently in place by changing something that will confuse the cache.

Re: DESPERATE NEED FOR HELP!!!!!

2002-04-04 Thread Balteo
Why don't you create a php script that generates SQL instead of HTML; i will repopulate your database acting as a dump? I know it will take some time to develop... Balteo, John Parsons wrote: >I have just been a complete muppet and trashed the tables in my database and >don't have a recent b

DESPERATE NEED FOR HELP!!!!!

2002-04-04 Thread John Parsons
I have just been a complete muppet and trashed the tables in my database and don't have a recent backup. The database is used for the phpBB system and still functions when I visit the site via a web browser since the database is still cached. Is there any way I can recover the database using the

Re: Begging for help.- Linux Box as back End - Front End M$ Access 2000

2002-04-02 Thread Chuck Amadi
Venu wrote: >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] >>Sent: Saturday, March 30, 2002 12:40 PM >>To: [EMAIL PROTECTED] >>Subject: Begging for help. >> >> >>Hi all, >> >>Begging for help. >&

Re: Begging for help.

2002-03-30 Thread Paul DuBois
At 15:45 -0500 3/30/02, [EMAIL PROTECTED] wrote: >Hi all, > >Begging for help. > >Newbie so please keep solutions as simple as possible please. > >I wish to have an ODBC connection from my win98 machine to my RH 6.1 machine >running mysql version 3.23.44.

RE: Begging for help.

2002-03-30 Thread Venu
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Saturday, March 30, 2002 12:40 PM > To: [EMAIL PROTECTED] > Subject: Begging for help. > > > Hi all, > > Begging for help. > > Newbie so please keep solutions as simpl

Begging for help.

2002-03-30 Thread MFA1Z
Hi all, Begging for help. Newbie so please keep solutions as simple as possible please. I wish to have an ODBC connection from my win98 machine to my RH 6.1 machine running mysql version 3.23.44. What steps do I take ? Unfortunately do not know enough about linux and Mysql to understand

Begging for help.

2002-03-30 Thread MFA1Z
Hi all, Begging for help. Newbie so please keep solutions as simple as possible please. I wish to have an ODBC connection from my win98 machine to my RH 6.1 machine running mysql version 3.23.44. What steps do I take ? Unfortunately do not know enough about linux and Mysql to understand

Re: request for help with multiple JOINs

2002-02-14 Thread DL Neil
Andreas, If anyone else is interested, I have solved the problem in stepwise/tutorial fashion below (best viewed using a fixed font). If anyone is skilled in the user of FROM...JOINs, (I'm sure Andreas, and) I'd welcome a critique/any improvements! I have taken a look at this problem, and bein

RE: Request for help in testing new replication code in 4.0.2

2002-02-13 Thread Steven Roussey
That would be great. Thanks! Sincerely, Steven Roussey http://Network54.com/?pp=e > -Original Message- > From: Brian P. Austin [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 12, 2002 10:45 pm > Subject: RE: Request for help in testing new replication code in 4.0.2

request for help with multiple JOINs

2002-02-13 Thread Andreas Habereder
Is there anyone who could help me with this "simple" query. Did i ask anything in a wrong way because I still got no answers to my request? SELECT at.name, av.value, at.unit, at.id, a.product_id FROM attribute_type at LEFT OUTER JOIN attribute a on (at.id = a.type_id) LEFT OUTER JOIN attrib

RE: Request for help in testing new replication code in 4.0.2

2002-02-13 Thread Brian P. Austin
it up if it's something you might find useful. -Original Message- From: Steven Roussey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 12:41 PM To: 'Sasha Pachev' Cc: 'Mysql' Subject: Re: Request for help in testing new replication code in 4.0.2 &g

RE: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Chris Mulcahy
X] > Sent: Sunday, February 10, 2002 3:28 PM > To: > Subject: Re: Request for help in testing new replication code in 4.0.2 > > > On Sun, Feb 10, 2002 at 10:24:30PM +0100, Fournier Jocelyn > [Presence-PC] wrote: > > Hi, > > >

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Steven Roussey
> > * If you want to do it this very moment, read the instructions at > >http://www.mysql.com/doc/I/n/Installing_source_tree.html and install a > > pre-release 4.0.2 MySQL on your test server. You may also wait until 4.0.2 is > > released, but in that case, replication in 4.0.2 may have a bug

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Jeremy Zawodny
On Sat, Feb 09, 2002 at 09:41:25PM -0700, Sasha Pachev wrote: > > So I need your help with field testing of my code. For those of you > who are wondering why you should - this will help us stabilize 4.0 a > lot of faster, and not only replication, but also the general SQL > features. So if you de

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Mike Wexler
I don't actually see the error message in the output you sent. but I found a similar problem yesterday and have the following work around: = myisamchk.c 1.69 vs edited = *** /tmp/myisamchk.c-1.69-20535 Thu Feb 7 17:21:33 2002 --- edited/myisamchk.c Sat Feb 9 22:48:57 2002

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Fournier Jocelyn [Presence-PC]
uot; <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 10:20 PM Subject: Re: Request for help in testing new replication code in 4.0.2 > On Sat, Feb 09, 2002 at 09:41:25PM -0700, Sasha Pachev wrote: > > Dear MySQL users

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Jeremy Zawodny
On Sun, Feb 10, 2002 at 10:24:30PM +0100, Fournier Jocelyn [Presence-PC] wrote: > Hi, > > In myisamchk.c replace the following line : > >if (argument && *argument == '0') > DBUG_POP(); > else > DBUG_PUSH(argument ? argument : "d:t:o,/tmp/myisamchk.trace"); > > by > > if

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Fournier Jocelyn [Presence-PC]
uot; <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 10:20 PM Subject: Re: Request for help in testing new replication code in 4.0.2 > On Sat, Feb 09, 2002 at 09:41:25PM -0700, Sasha Pachev wrote: > > Dear MySQL users

Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Sasha Pachev
Dear MySQL users, I have just pushed my latest changes in the replication code in our 4.0 development tree, which change the slave to use two threads - I/O thread that gets the data from the master and logs it, and SQL thread which processes the logged data. I have tested it extensively, and i

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread Jeremy Zawodny
On Sat, Feb 09, 2002 at 09:41:25PM -0700, Sasha Pachev wrote: > Dear MySQL users, > > I have just pushed my latest changes in the replication code in our > 4.0 development tree, which change the slave to use two threads - > I/O thread that gets the data from the master and logs it, and SQL > thre

Re: Request for help in testing new replication code in 4.0.2

2002-02-12 Thread SDiZ (UHome)
> * If you want to do it this very moment, read the instructions at >http://www.mysql.com/doc/I/n/Installing_source_tree.html and install a > pre-release 4.0.2 MySQL on your test server. You may also wait until 4.0.2 is > released, but in that case, replication in 4.0.2 may have a bug you cou

Re: Request for help in testing new replication code in 4.0.2

2002-02-11 Thread Sasha Pachev
On Sunday 10 February 2002 02:20 pm, Jeremy Zawodny wrote: > I run `BUILD/compile-pentium --prefix=/home/mysql` and it fails after > several minutes. ?The output is large, so I've posted it here: > > ? http://public.yahoo.com/~jzawodn/mysql-build.log > > (the good stuff is at the end, of course.

Re: Request for help in testing new replication code in 4.0.2

2002-02-11 Thread Sasha Pachev
On Sunday 10 February 2002 01:17 am, you wrote: > I can't get it to start replicating. > > Note, the master (db1.tias.com) is a 3.23 server. The slave is 4.0.2 > (noritake.tias.com). > > On the master I get: > > mysql> show master status; > +---++--+

Re: Request for help in testing new replication code in 4.0.2

2002-02-11 Thread Sasha Pachev
On Sunday 10 February 2002 06:06 pm, Jeremy Zawodny wrote: > One question: > > ? Can you explain the relay log a bit. ?Does it shrink eventually? ?I > ? see it growing and growing, so I don't know if the space is > ? recycled, or if I need to do something to periodically flush the > ? executed qu

Re: Request for help in testing new replication code in 4.0.2

2002-02-11 Thread Sasha Pachev
On Sunday 10 February 2002 01:17 am, you wrote: > I can't get it to start replicating. > > Note, the master (db1.tias.com) is a 3.23 server. The slave is 4.0.2 > (noritake.tias.com). > > On the master I get: > > mysql> show master status; > +---++--+

Re: Request for help in testing new replication code in 4.0.2

2002-02-10 Thread Jeremy Zawodny
On Sat, Feb 09, 2002 at 09:41:25PM -0700, Sasha Pachev wrote: > > So I need your help with field testing of my code. For those of you > who are wondering why you should - this will help us stabilize 4.0 a > lot of faster, and not only replication, but also the general SQL > features. So if you de

Re: Request for help in testing new replication code in 4.0.2

2002-02-10 Thread Mike Wexler
I don't actually see the error message in the output you sent. but I found a similar problem yesterday and have the following work around: = myisamchk.c 1.69 vs edited = *** /tmp/myisamchk.c-1.69-20535 Thu Feb 7 17:21:33 2002 --- edited/myisamchk.c Sat Feb 9 22:48:57 2002

Re: Request for help in testing new replication code in 4.0.2

2002-02-10 Thread Jeremy Zawodny
On Sun, Feb 10, 2002 at 10:24:30PM +0100, Fournier Jocelyn [Presence-PC] wrote: > Hi, > > In myisamchk.c replace the following line : > >if (argument && *argument == '0') > DBUG_POP(); > else > DBUG_PUSH(argument ? argument : "d:t:o,/tmp/myisamchk.trace"); > > by > > if

Re: Request for help in testing new replication code in 4.0.2

2002-02-10 Thread Fournier Jocelyn [Presence-PC]
uot; <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, February 10, 2002 10:20 PM Subject: Re: Request for help in testing new replication code in 4.0.2 > On Sat, Feb 09, 2002 at 09:41:25PM -0700, Sasha Pachev wrote: > > Dear MySQL users

Re: Request for help in testing new replication code in 4.0.2

2002-02-10 Thread Jeremy Zawodny
On Sat, Feb 09, 2002 at 09:41:25PM -0700, Sasha Pachev wrote: > Dear MySQL users, > > I have just pushed my latest changes in the replication code in our > 4.0 development tree, which change the slave to use two threads - > I/O thread that gets the data from the master and logs it, and SQL > thre

Re: Request for help in testing new replication code in 4.0.2

2002-02-10 Thread SDiZ \(UHome\)
> * If you want to do it this very moment, read the instructions at >http://www.mysql.com/doc/I/n/Installing_source_tree.html and install a > pre-release 4.0.2 MySQL on your test server. You may also wait until 4.0.2 is > released, but in that case, replication in 4.0.2 may have a bug you cou

Request for help in testing new replication code in 4.0.2

2002-02-09 Thread Sasha Pachev
Dear MySQL users, I have just pushed my latest changes in the replication code in our 4.0 development tree, which change the slave to use two threads - I/O thread that gets the data from the master and logs it, and SQL thread which processes the logged data. I have tested it extensively, and i

THNKS FOR HELP: Counting up numerical values in a table

2002-01-02 Thread Anton
Thanks for all the help with counting up numer. values. Thanks also to Richard, and Eskom for providing us the power to drive not only our PC's but also powering solutions to our DB problems ! ;-) Regards Anton (JHB, RSA) Richard Ellerbrock writes: > select sum(colnam) as x from table w

Re: Please..Desperate for Help |||||||

2001-08-29 Thread Grigory Bakunov
Date |Tue, 28 Aug 2001 12:30:25 -0400 >From |<[EMAIL PROTECTED]> Hello! N> I am trying to install the "dbf2mysql" converter and really N> getting a headache. Someone told me that I need to N> install the "Include files and libraries for MySQL" and I N> have been searching frantically all over

Please..Desperate for Help |||||||

2001-08-28 Thread nrwalker
I am trying to install the "dbf2mysql" converter and really getting a headache. Someone told me that I need to install the "Include files and libraries for MySQL" and I have been searching frantically all over the web for the source for this. All I have been able to find is the RPM's. I am on

Re: Pornographer will trade for Help with web based MySql

2001-06-11 Thread jay downs
<[EMAIL PROTECTED]> > Sent: Monday, June 11, 2001 6:08 AM > Subject: Re: Pornographer will trade for Help with web based MySql > > > I've got some sweeping up around the office you might be able to do. > That'd be alot > > of sweeping to meet my hourly rate.

Re: Pornographer will trade for Help with web based MySql

2001-06-10 Thread Rolf Hopkins
. Also, if you do need to ask the list for help and you need to post some code, please ensure that the content is ummm... let's say "suitable for children". I mean, this list is for people to get assistance with mysql problems, it is not an adult's only chat room.

Re: Pornographer will trade for Help with web based MySql

2001-06-10 Thread John Meyer
At 06:13 PM 6/10/2001 -0700, John 'TPG' Smith wrote: >I am interested in learning MySql and cgi. > >I want to trade my services for this help. > >I want to be able to make custom web based applications. > >I am a pornographer. > > >TPG > >[EMAIL PROTECTED] I don't even want to know what services

Pornographer will trade for Help with web based MySql

2001-06-10 Thread John 'TPG' Smith
I am interested in learning MySql and cgi. I want to trade my services for this help. I want to be able to make custom web based applications. I am a pornographer. TPG [EMAIL PROTECTED] - Before posting, please check:

Request for help

2001-06-09 Thread Sasha Pachev
Hello, everyone. Some of you may be aware that MySQL source and binary distribution comes with a public test suite. Some documentation on it is available at http://www.mysql.com/doc/M/y/MySQL_test_suite.html. But it is terribly lacking, as evidenced by the fact that we have not had one user su

Thanks for help!

2001-05-26 Thread tu tuande
Thanks for advices. As I got the error message, I thought the server has not been started. It runs really! Frank Tu >From: Miguel Angel Solórzano <[EMAIL PROTECTED]> >To: Paul DuBois <[EMAIL PROTECTED]>,"tu tuande" <[EMAIL PROTECTED]>, >[EMAIL PROTECTED] >Subject: Re: Mysql and Windows ME? >Da

Re: Need for help

2001-03-24 Thread Bellahcene Farid
Sorry it is the first time, i write for help... So, i have : -Linux Redhat 6.2 with Kernel 2.2.14-5.0 i586 -MySQL-3.22.32-1.i386.rpm.rpm -MySQL-client-3.22.32-1.i386.rpm -mysqladmin ver 8.0 ditrib 3.22.32 for pc-linux -mysqld is running

Re: Need for help

2001-03-24 Thread Bellahcene Farid
Sorry it is the first time, i write for help... So, i have : -Linux Redhat 6.2 with Kernel 2.2.14-5.0 i586 -MySQL-3.22.32-1.i386.rpm.rpm -MySQL-client-3.22.32-1.i386.rpm -mysqladmin ver 8.0 ditrib 3.22.32 for pc-linux -mysqld is running

Re: Need for help

2001-03-23 Thread Thalis A. Kalfigopoulos
You are first suppose to start the daemon through safe_mysqld which is under the mysql bin/ directory, or through mysql.server which is under mysql's share/ directory (info about both on the webpage) Running one of these will actually get your deamon running (and create the desired /tmp/mysql.s

Re: Need for help

2001-03-23 Thread Gerald Clark
Which Version of MySQL? Where would you find one that old? Whate platform? What Linux Distribution? What Linux version? Which RPM? Client? Server? Both? What were their names? Posts like this don't encurage helpful responses. More information is needed. Is the server running? It creates the so

Need for help

2001-03-23 Thread Bellahcene Farid
I 'have installed Mysql 3.22.13 and Mysql client under Linux by RPM. But when i do "mysqldmin -u root password " there is a message telling about *.sock under /tmp missing or not present. What can i do to create it ?

I don't ask for help very often *but*...

2001-03-13 Thread Peter Skipworth
Since upgrading to mysql 3.23 and using MYIAM tables, I'm experiencing a problem which is becoming more and more common. When conducting queries which take more than about 15 seconds to run (ie mass deletes, mysqldumps, check table etc), I end up with corrupt tables. The database server is the bac

Re: desperate for help...

2001-03-07 Thread Geoff Coffey
on 3/6/01 9:35 PM, Chris Toth at [EMAIL PROTECTED] wrote: > Ok, I've been battling this SELECT statement for the better part of the day. > > The SELECT statement is this: > > SELECT DISTINCT request.id AS requestid, request.date, request.type, > request.status, > faculty.f_name, faculty.l_name,

Re: desperate for help...

2001-03-07 Thread kentj
I do not think that this can be solved using only SQL. Your system design my require you to use one query for the display and another for edit checking in order to achieve your goal. Chris Toth wrote: > Kentj > > Ok, I understand. I thought DISTINCT only worked on the field listed > directly aft

Re: desperate for help...

2001-03-07 Thread kentj
Your query selects eight fields. Your Display shows five fields. The distinct verb works on all eight fields and apparently some of the fields not displayed are different. Limit the query for the display to the five fields displayed and the distinct verb should eliminate the duplicates from the d

Re: desperate for help...

2001-03-07 Thread Chris Toth
I rearranged the query a little: SELECT DISTINCT request.id AS requestid, request.date, request.type, request.status, faculty.f_name, faculty.l_name, action.id AS actionid, faculty.id AS facultyid FROM faculty, request, action WHERE request.id=action.request_id AND request.requested_by=facult

Re: desperate for help...

2001-03-07 Thread kentj
It looks like the addition of the distinct verb should do the job if in fact your query only showed the fields on the display. >From your Sql however you are selecting more fields than are displayed and some of those are different which distinct will still display. Chris Toth wrote: > Ok, I've b

desperate for help...

2001-03-07 Thread Chris Toth
Ok, I've been battling this SELECT statement for the better part of the day. The SELECT statement is this: SELECT DISTINCT request.id AS requestid, request.date, request.type, request.status, faculty.f_name, faculty.l_name, action.id AS actionid, faculty.id AS facultyid FROM faculty, request

Table locking... Yes I am desperate for help.

2001-01-18 Thread Apolinaras 'Apollo' Sinkevicius
My set-up: MySQL server 3.23.30 with MSAccess97 via MyODBC 2.50.36 (all latest patches to everything) I have no trouble running this set up, BUT... Even when I am the only person connected (after flush and restart of server) and I open my Access database and go directly to edit one particular t