Graphical UI for MySQL

2002-04-15 Thread Kela Vesa
Greetings, I would like to ask you following question: Is there graphical user interface for managering MySQL database? I think command line-based interface is quite clumsy... Regards, Vesa Kela, Helsinki Finland - Befo

error : Fatal error: Call to a member function on a non-object

2002-04-15 Thread bob nt
i get an error like Fatal error: Call to a member function on a non-object in the line $result=$dbconn->Execute("update infotab set infomessage='$file_name' WHERE info_id='$ypid'"); here $ file_name returns a file name like mirror.txt or x.gif. & it is doing so. what's the probs can u

Re: MySQLAdmin

2002-04-15 Thread Gordon Stewart
At this 04:57 16/04/02 +0100 [EMAIL PROTECTED] told us all something interesting :- > >>Where can I d/load phpMyAdmin from ?<< > >http://sourceforge.net/projects/phpmyadmin/ Thanks... Hmm - Ive d/loaded it, but having problems after problems When i go to :- http://kwister.dns2go.com/phpad

RE: Guidelines for Posting to the MySQL list

2002-04-15 Thread Mike
Those are nice guidelines and will do my best to keep in them But, no joke, I got an E-mail from [EMAIL PROTECTED] that the subject start's out massey,darling! Now I know I'm cute but:) Cheers M;) -Original Message- From: Robert Alexander [mailto:[EMAIL PROTECTED]] Sent: Monday, April 1

MySQLAdmin

2002-04-15 Thread Gordon Stewart
At this 12:09 15/04/02 -0400 Gurhan Ozen told us all something interesting :- >Or else, if you are using phpMyAdmin , you can do it with a mouse click. Hi, Im using WinMySQLadmin - Which seems quite useless... (No buttons to dso much, except look at what databases/tables youve got..) Where can

Guidelines for Posting to the MySQL list

2002-04-15 Thread Robert Alexander
NOTE: This message is posted periodically to the MySQL List on behalf of all members of the MySQL mailing list. Please read it carefully before posting. This document can be retrieved from: ftp://ftp.workmate.ca/pub/MySQL/mysql-posting-guidelines.txt The Short Version

ABOUT: Guidelines for Posting to the MySQL list

2002-04-15 Thread Robert Alexander
Hi everybody, I proposed these posting guidelines some time ago, and there was some discussion on the list about them. Thanks for the input, everyone. Since then there has been discussion and some fine tuning with the MySQL folks, and we have come up with the final version that you'll see in

Re: Does MySQL support subqueries?

2002-04-15 Thread Tyler Longren
Hi Amaury, R.B. Roa would be correct in saying that subqueries are in the 4.x branch of MySQL. I'm not sure when 4.xx will be the stable branch though. Instead of using subqueries, you could try using some JOIN statments. Tyler Longren Captain Jack Communications www.captainjack.com [EMAIL PRO

RE: Does MySQL support subqueries?

2002-04-15 Thread RBRoa
I think that feature is to be added on MySQL ver 4.xx That's what Im waiting for...lots of us waiting for it... R.B.Roa PhilCom Corporation Tel. No. 858- Mobile No. (63) (919-xxx) -Original Message- From: Amaury Cabarcas Alvarez [SMTP:[EMAIL PROTECTED]]

Does MySQL support subqueries?

2002-04-15 Thread Amaury Cabarcas Alvarez
I have mysql 3.23.49a, and i wish know if does version support subqueries? - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request thi

Re: MySQL and stored procedures -> v4.1 :(

2002-04-15 Thread Heikki Tuuri
Hi! I can disclose that there is actually some progress being made in stored procedures + triggers. Regards, Heikki Innobase Oy - Original Message - From: ""Jon Frisby"" <[EMAIL PROTECTED]> Newsgroups: mailing.database.mysql Sent: Tuesday, April 16, 2002 2:12 AM Subject: RE: MySQL and

Re: Handling Memo Fields from MS-Access?/\t\n

2002-04-15 Thread Tim Johnson
Forgive me, I should have searched the archives first. Let me rephrase from what I have seen there: Do I understand that I should have my export routine Subsitute '\n' for newline ? Substitute '\t' for TAB? Thanks Again -tim- * Tim Johnson <[EMAIL PROTECTED]> [020415 15:13]: > Hello A

RE: Handling Memo Fields from MS-Access?

2002-04-15 Thread Gurhan Ozen
Hi .. Mysql's LOAD DATA INFILE will take newline character as the lines' terminating character, but you can always change by "LINES TERMINATED BY" clause. So, say you have | character as the line ending character in your text file, you can just add LINES TERMINATED BY '|' clause to your LOAD DATA

RE: MySQL and stored procedures -> v4.1 :(

2002-04-15 Thread Jon Frisby
> > When it's ready. > > That's a tautological answer. You've already stated your lack of belief in the reliability of deadlines, so what did you expect? If someone had responded with "4.1 will be done on 5/1/2002" you'd respond that the only way that would happen would be if it were horribly bu

Handling Memo Fields from MS-Access?

2002-04-15 Thread Tim Johnson
Hello All: I am using mysql 3.23 on Linux. I have a project in what I will need to do the following: First: export a MS-Access database to a set of delimited text files, one for each table. Secondly: Load each of those text files into a MySql Table. Since I am new to MyS

Re: auto_increment fields get mangled in some cases when doing analter table

2002-04-15 Thread Paul DuBois
At 14:17 -0700 4/15/02, Tani Hosokawa wrote: >If you have a table with an auto_increment column and one of the rows >has the value set to 0, doing an ALTER TABLE will change that value to >either 2147483647 or the next auto_increment value. Storing anything other than positive integers in an AUTO

MySQL crashes is fulltext search on with some words.

2002-04-15 Thread Erlend Hopsø Strømsvik
I'm not sure if this has been reported earlier, but my mysql-server goes down if I run a query with two 'match against' where one of them contains/matches the word 'think'... It terminates after the first query, but when I change the word 'think' to 'excel' or any other word it works flawlessy. I

triggers

2002-04-15 Thread Cindy
What's the status of triggers in MySQL? Acording to the book, it's on the to-do list, but has anything been done with it since publication? --Cindy -- [EMAIL PROTECTED] - Before posting, please check: http://www.mysql.com

Re: Running multiple queries using "MySql" client

2002-04-15 Thread Mark Dale
Hi insert into mytbl (a1) values (12),(13),(14); cheers Mark --- On Mon, 15 Apr 2002, Bill Adair wrote: > Hello all, > I'm in a mysql client session and I want to do multiple inserts > into a table (or run a multi-query script etc). Thi

does mysql support multi table update?

2002-04-15 Thread bin cai
Hi, everyone, does mysql latest version support multi tables update? Thanks a lot __ Find, Connect Date! http://personals.yahoo.ca - Before posting, please ch

auto_increment fields get mangled in some cases when doing an alter table

2002-04-15 Thread Tani Hosokawa
If you have a table with an auto_increment column and one of the rows has the value set to 0, doing an ALTER TABLE will change that value to either 2147483647 or the next auto_increment value. mysql> create table blah (id int not null primary key auto_increment,stuff char(128)); Query OK, 0 rows

RE: MySQL counter for HIGH traffic site

2002-04-15 Thread Matthew Walker
*light goes on* You know, I think I've been confused about that. Thanks for clearing things up. I for some reason didn't make the connection (no pun intended) that each page would be getting it's own connection to the DB, and so couldn't interfere with the last_insert_ID queries. Matthew Walker S

Mysqld at Startup:

2002-04-15 Thread Jimi Oleksiak
Dear MySQL People: I am having a difficult time trying to run mysqld during system startup on both Mac OS X (workstation) and Mac OS X Server. I have tried several combinations based on the Mysql.com documentation and the Apple Developer Connection article on startup items: http://develo

Re: "gunk" in mysqldump output

2002-04-15 Thread Nick Pasich
Use option "-K or --no-disable-keys" with myqldump. > Date: Mon, 15 Apr 2002 09:37:43 -0400 > To: [EMAIL PROTECTED] > From: Bill Marrs <[EMAIL PROTECTED]> > Subject: "gunk" in mysqldump output > > In some recent release of MySQL, lines like this: > > /*!4 ALTER TABLE States DISABLE KEYS

Re: subselect query

2002-04-15 Thread Christopher Thompson
http://www.mysql.com/documentation/mysql/bychapter/manual_Introduction.html#ANSI_diff_Sub-selects On Monday 15 April 2002 2:49 pm, Jeff Shipman wrote: > Yeah, that nasty thing with temporary tables and > such? Or am I looking at the wrong page? If you > could point me in the right direction, I'd

Re: subselect query

2002-04-15 Thread Jeff Shipman
Yeah, that nasty thing with temporary tables and such? Or am I looking at the wrong page? If you could point me in the right direction, I'd appreciate it (slow modem connection, etc). Christopher Thompson wrote: > Read the manual. MySQL doesn't support subselects but offers you > alternatives.

MySQL dying suddenly

2002-04-15 Thread Leonardo Dias
I received the message that made our MySQL die sometimes now. Our mysqld is the binary package available @ www.mysql.com. Version is 3.23.49a The error message is below. key_buffer_size=16773120 record_buffer=1019904 sort_buffer=1048568 max_used_connections=284 max_connections=500 threads_conne

Re: subselect query

2002-04-15 Thread Christopher Thompson
Read the manual. MySQL doesn't support subselects but offers you alternatives. On Monday 15 April 2002 2:45 pm, Jeff Shipman wrote: > I'm trying to do a fairly simple select of a > column from a table where the date of that column > happens to be the highest value. I tried this: > > SELECT name

subselect query

2002-04-15 Thread Jeff Shipman
I'm trying to do a fairly simple select of a column from a table where the date of that column happens to be the highest value. I tried this: SELECT name FROM products WHERE prod_type='foo' AND added=(SELECT MAX(added) FROM products WHERE prod_type='foo'); But I get the error: ERROR 1064: You h

Timestamp and Load Data command

2002-04-15 Thread Carl McNamee
We are attempting to put records into a table using the "load data" or mysqlimport commands. One quirk is with columns that include a timestamp type. When we import the records we get zeros in the timestamp column. How can we get the current time inserted when using the "load data" or mysqlimpo

RE: Feature? (Not null and timestamps)

2002-04-15 Thread Carl McNamee
sql,query One of our developers pointed out something to me today and I can't explain. When we created a table with timestamp as one of the column types and "not null" the "describe table" command shows that nulls are allowed for the timestamp column. However, a "show create table" command shows

Re: Copying tables

2002-04-15 Thread Jason
I though everyone may wish to know, I found an easy way to do this. SHOW CREATE TABLE table_name This will give you the SQL syntax for a createtable... Thanks everyone - Original Message - From: <[EMAIL PROTECTED]> To: "Jason" <[EMAIL PROTECTED]> Sent: Monday, April 15, 2002 9:24 AM S

Re: cron job help running mysql/php script

2002-04-15 Thread Gerald Clark
crontab -l will list your current crontab entry. Cron is not running your job from a browser. If it won't run from your unix $ prompt, it won't run from cron. Harpreet Kaur wrote: > I am trying different options but everytime i make a change and type > crontab mycron.txt in telnet it comes

RE: beginners question

2002-04-15 Thread Marcia Clover
actually, another member of this list has already helped me figure it out. thanks. -Original Message- From: Richard Emery [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 3:42 PM To: Marcia Clover; [EMAIL PROTECTED] Subject: Re: beginners question show your table structures show

Re: beginners question

2002-04-15 Thread Richard Emery
show your table structures show us your data show us the commands you used to export the data show us the commands you used to import the data can't read your mind... - Original Message - From: Marcia Clover <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 15, 2002 12:11 PM

RE: MySQL and stored procedures -> v4.1 :(

2002-04-15 Thread Svensson, B.A.T. (HKG)
> > But I did ask for a release date of version 4.1. > > When it's ready. That's a tautological answer. > > A nice thing with a stored procedure is that you can lower the load > > impact made by heavy queries on the database by using cursors to soften > > the performance hit they are likely to

MySQLAdmin

2002-04-15 Thread eq99083
Please, can anyone tell me where is the source code for MySQLAdmin.exe for Win32? Thank you - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive

Sorting alphabetically using charsets other than Latin 1

2002-04-15 Thread mysql
Hello, I have a table with text data in English in one column, same data in Russian (cp1251) in another, and so on. I'd be happy to retrive that data sorted alphabetically according to the *respected alphabets*. I couldn't figure out how to perform this despite I compiled MySQL with alternative c

RE: MySQL and stored procedures -> v4.1 :(

2002-04-15 Thread Jon Frisby
> But I did ask for a release date of version 4.1. When it's ready. > A nice thing with a stored procedure is that you can lower the load > impact made by heavy queries on the database by using cursors to soften > the performance hit they are likely to make - e.g. make the query behave > like a

Uploading Korean Data - More detail

2002-04-15 Thread Dave
Apologies for sending again but though it may help if I add some more info. I can see my data in notepad in Korean, I have tried to save this as ANSI, Unicode, Unicode big enidian and UTF-8 and they all end up scrambled after I import the file. - A while ago I was asking

RE: MySQL and stored procedures -> v4.1 :(

2002-04-15 Thread Jon Frisby
> > I'll trust a MySQL alpha release before the final production releases of > > most vendors. In fact, we're using 4.0.1 in our production > environment with > > great success. > Its your system, and if you think it worth the risc, it is of course you > decision to do so to, ;) but I would never

mysqld cannot start - Can't find file: './mysql/host.frm' (errno: 13)

2002-04-15 Thread magnus . l . larsson
>Description: I installed the binary distribution (first time I am installing mysql ever) for Solaris 8 in a non-standard location (/data/mysql/3.23.47/SunOS_5.8) which is local on the server. I then moved the data directory to a file server so it will be part of daily backups (/proj/we

Re: cron job help running mysql/php script

2002-04-15 Thread Harpreet Kaur
I am trying different options but everytime i make a change and type crontab mycron.txt in telnet it comes to the next promp without an error message. But it doesnot do what i want it to do. How can i even test if the cron tab is finding the file. Like the php file runs fine when run from a bro

beginners question

2002-04-15 Thread Marcia Clover
I'm converting an Access database to mySql (finally), and I'm having some problems: #1 - I have created a text file from Access to be able to import the data into the mySQL db, that part is ok, the problem is, from my 12 records (just a sample project), mySQL is only importing 6, the odd numb

Problems with Make on 3.23.49 on Sun SPARC 20 with Solaris 2.6

2002-04-15 Thread Lee, Tom J
>Description: Attempted to compile this version on a SPARC 20 running Solaris 2.6. Installed GNU gcc 3.0.2 and make 2.76 specifically for this installation. Normally use the make from SUN and the C compiler from Sun SparcWorks. Ran configure with the following set of command line options.

RE: Bill-of-Materials

2002-04-15 Thread vivek . chaudhary
So far I have seen this feature in Oracle and DB2 alone. I am yet to find any other RDBMS. Vivek Chaudhary > -Original Message- > From: len [mailto:[EMAIL PROTECTED]] > Sent: Saturday, April 13, 2002 7:10 AM > To: mysql > Cc: len > Subject: Bill-of-Materials > > > Hello! > > As a new

Connection timing problem?

2002-04-15 Thread Todd Thompson
Hi, I have installed MySQL and everything runs great. Most of the apps I'm running are perfectly fine except one problem: Through a webpage of mine I send a request to the database. Works great and I get a return no problem with the correct response. But when I ask it again right away to do anoth

Re: Is there a sql query to Copying tables

2002-04-15 Thread Richard Emery
CREATE TABLE new_table SELECT * FROM old_table LIMIT 0; - Original Message - From: Jason <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 15, 2002 10:44 AM Subject: Is there a sql query to Copying tables Is there an easy way to copy/use the structure (not data) of a skele

Re: Is there a sql query to Copying tables

2002-04-15 Thread Lance Uyehara
> Is there an easy way to copy/use the structure (not data) of a skeleton table to a new table? create table x select * from table y where 1=0; -Lance filter: sql - Before posting, please check: http://www.mysql.com/manual

Re: update question number in mysql

2002-04-15 Thread bin cai
Hi, Steven and christopher, Thanks a lot for your help. I think i have to store the question number in table. my talbe questionbank store the questions related more than one course. every course has six question sets. so i use question set id and question number as primary key. There is one probl

RE: Boolean!

2002-04-15 Thread Gurhan Ozen
ENUM datatype might help you... See: http://www.mysql.com/doc/E/N/ENUM.html Gurhan -Original Message- From: T.Thiessens [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 10:50 AM To: [EMAIL PROTECTED] Subject: Boolean! Hello! Well their you have it! It's a mysql freakshow out

RE: Is there a sql query to Copying tables

2002-04-15 Thread Gurhan Ozen
Hi, You can just do "SHOW CREATE TABLE ..." and copy+paste it with a different table name in the command line.. See: http://www.mysql.com/doc/S/H/SHOW_CREATE_TABLE.html Or else, if you are using phpMyAdmin , you can do it with a mouse click. Gurhan -Original Message- From: Jason [mail

RE: Boolean!

2002-04-15 Thread Craig Vincent
> > How can I set the domain of a attribute to a boolean value? > > OK, I'm not entirely clear with your terminology, but I think > you're asking > "how do I define a field as a boolean"... > > MySQL doesn't provide a boolean datatype as such, but in my experience the > best way to handle it is t

Compile Problem - sql_lex.cc has undeclared functions (symbol, sql_functions, get_has_symbol)

2002-04-15 Thread Aaron The Young
I'm unable to get mysql compiled due to problems during my make. I am using gcc 3.04 on a Sparc 20 running Solaris: uname -a: SunOS primus 5.8 Generic_108528-06 sun4m sparc SUNW,SPARCstation-20 When I run the make I get the following problem with sql_lex.cc sql_lex.cc: In function `void lex_

RE: Boolean!

2002-04-15 Thread Peter Romianowski
I use char(1) with 't' and 'f'. The JDBC-Driver I am using (mm.sql) recognizes this correctly as Boolean. Peter > -Original Message- > From: Jon Haworth [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 15, 2002 5:24 PM > To: 'T.Thiessens'; [EMAIL PROTECTED] > Subject: RE: Boolean! > >

Re: MySQL counter for HIGH traffic site

2002-04-15 Thread Benjamin Pflugmann
Hello. On Sun, Apr 14, 2002 at 11:16:02PM -0400, [EMAIL PROTECTED] wrote: > On Sun, 2002-04-14 at 22:17, Craig Westerman wrote: > > I'm needing counter for site that receives 80 to 120 hits a minute at peak > > load. Many I [...] > I personally wouldn't recommend logging to mysql. 80 to 120 quer

Is there a sql query to Copying tables

2002-04-15 Thread Jason
Is there an easy way to copy/use the structure (not data) of a skeleton table to a new table? Thanks in advance PS how long has the sql,query requirement been on this list? - Before posting, please check: http://www.mysql

Re: Signal 11 after flush privileges

2002-04-15 Thread Rafal Jank
> Rafal, > Monday, April 15, 2002, 4:54:23 PM, you wrote: > > RJ> Version Mysql-Max-3.23.49a for Linux, binary distribution from > www.mysql.com RJ> After deleting some users from user table and invoking > flush privileges, I got RJ> "Lost connection to server during query" > Resolved stack trace

RE: Boolean!

2002-04-15 Thread Jon Haworth
Hi T., > How can I set the domain of a attribute to a boolean value? OK, I'm not entirely clear with your terminology, but I think you're asking "how do I define a field as a boolean"... MySQL doesn't provide a boolean datatype as such, but in my experience the best way to handle it is to defin

Re: Signal 11 after flush privileges

2002-04-15 Thread Egor Egorov
Rafal, Monday, April 15, 2002, 4:54:23 PM, you wrote: RJ> Version Mysql-Max-3.23.49a for Linux, binary distribution from www.mysql.com RJ> After deleting some users from user table and invoking flush privileges, I got RJ> "Lost connection to server during query" Resolved stack trace as follows: R

Boolean!

2002-04-15 Thread T.Thiessens
Hello! Well their you have it! It's a mysql freakshow out there..:) How can I set the domain of a attribute to a boolean value? T.T - Before posting, please check: http://www.mysql.com/manual.php (the manual) http:

Uploading Korean Data

2002-04-15 Thread Dave Cartlidge, ParTake Services
A while ago I was asking about multi-language support in MySQL. In the end we ran several instances of MySQL, each with it's own database, for each language. I can now run the website in Korean, enter, save and retrieve data through the webpage, but, I am unable to take a CSV file (in Korean) an

Re: MySQL counter for HIGH traffic site

2002-04-15 Thread Benjamin Pflugmann
Hello. First let me say, that I was talking about the MySQL side of things. If pconnect was broken in this regard - and I would call the behaviour you described as broken - just don't use it. On Mon, Apr 15, 2002 at 12:14:07AM -0600, [EMAIL PROTECTED] wrote: > Actually, with a pconnect, there wo

Re: How does DISTINCT really work ?

2002-04-15 Thread Sinisa Milivojevic
Fournier Jocelyn [Presence-PC] writes: > Hi, > > I have the latest 4.0.2 source installed, and the problem is still here > AFAIK : > > mysql> \s > -- > mysql Ver 12.1 Distrib 4.0.2-alpha, for pc-linux-gnu (i686) > > -=[root@anedroide]=(/usr/local/mysql-4.0)# bk export -tpatch > <(1

Re: BUG using left join.

2002-04-15 Thread ds
Hi, Note that if you are using a condition on a t_boxdaily field in the where clause, i think that your "left join" will not take the desired effect. If there is a record in table t_fund that it's not in t_boxdaily then the t_boxdaily fields would appear in the result with NULL values (because

RE: Hi I'm a Newbie

2002-04-15 Thread Sampson, Peter
sql,query I also looking for a good ASP 3.0 mailing list Peter Sampson http://www.cfcnet.co.uk The information contained in this email is intended only for the person or organization to which it is addressed. If you have received it by mistake, please disregard and notify the sender immed

Re: Ïðîáëåìà Mysql on FreeBSD

2002-04-15 Thread Egor Egorov
amber46, Monday, April 15, 2002, 1:21:54 PM, you wrote: a> Ïðèâåòñòâóþ òåáÿ, mysql, This mailing list is read by thousands subscribers in the world and most of them don't speak russian, so please use ONLY english here. a> 14350 mysql 57 0 53732K 30240K RUN365:15 79.88% 79.88% my

Re: mysql server not starting

2002-04-15 Thread Egor Egorov
Terrence, Monday, April 15, 2002, 12:26:31 PM, you wrote: TT> Description: TT> MySQL version 3.23.47 Darwin 5.x TT> When I run mysqladmin version, TT> I get the following message: TT> 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' TT> (2)' TT> Check that mysqld is running

Re: hello, i need help, about mysql MISSING charsets

2002-04-15 Thread Victoria Reznichenko
Xuefer, Monday, April 15, 2002, 8:55:08 AM, you wrote: X> mysql-4.01 X> binary package X> windows X> also the same in linux source/binary package X> when SHOW VARIABLES X> got: X> - X> character_set gbk X> character_sets latin1 big5 czech euc_kr gb2312 gbk latin1_de sjis tis620

Re: Create table from results of a query

2002-04-15 Thread Victoria Reznichenko
Your, Monday, April 15, 2002, 2:40:54 PM, you wrote: YN> Is it possible to create a new table from the results of a query, or YN> export the result directly to a file (txt, csv, excel or alike) using YN> MySQL? How is it done? Yes, it's possible. You can use CREATE .. SELECT statement for crea

Signal 11 after flush privileges

2002-04-15 Thread Rafal Jank
Hi Version Mysql-Max-3.23.49a for Linux, binary distribution from www.mysql.com After deleting some users from user table and invoking flush privileges, I got "Lost connection to server during query" Resolved stack trace as follows: 0x806e2d4 init_signals__Fv + 16 0x82b12b8 _end + 271548 0x82d9f96

Re: How does DISTINCT really work ?

2002-04-15 Thread Michael Widenius
Hi! > "Heikki" == Heikki Tuuri <[EMAIL PROTECTED]> writes: Heikki> From: "SDiZ (UHome)" <[EMAIL PROTECTED]> >> I think every thing are documented. >> >> http://www.mysql.com/doc/B/u/Bugs.html >> a.. The optimiser may handle DISTINCT differently if you are using >> 'hidden' columns in a jo

"gunk" in mysqldump output

2002-04-15 Thread Bill Marrs
In some recent release of MySQL, lines like this: /*!4 ALTER TABLE States DISABLE KEYS */; ...were added to the output of "mysqldump --opt". This causes my usually "load" statement: "mysql < dumpfile" ...to fail with "ERROR 1046 at line 11: No Database Selected". If I do "mydsql -f < dum

Re: Newbie question: Create table from query or export query

2002-04-15 Thread Craig Ostrander
Yes. Assuming you are comfortable using the mysql client program you could use: CREATE TABLE newtablename SELECT * FROM existingtablename; In addition, if you have an existing table and need to load data from a text file you could use: LOAD DATA INFILE 'textfilename.txt' INTO TABLE existingt

Bad Handshake

2002-04-15 Thread Stefan Immel
Hi i need to access a MySQL Server via socket programming to check if it is alive. My script works fine but the mysql server blocks the host that is running the script after 10 connects because I get the bad handshake error. Is there any way to connect and cleanly disconnect to port 3306 without

Running multiple queries using "MySql" client

2002-04-15 Thread Bill Adair
Hello all, I'm in a mysql client session and I want to do multiple inserts into a table (or run a multi-query script etc). This doesn't work so what's the correct seperator / methodology? INSERT INTO mytbl (a1) VALUES (12); INSERT INTO mytbl (a1) VALUES (13); INSERT INTO mytbl (a1) VALUES (14); \

don't work search on www.mysql.org - no connect to mysql

2002-04-15 Thread Kokorev Alexey
Warning: Can't create a new thread (errno 11). If you are not out of available memory, you can consult the manual for a possible OS-dependent bug in /production/data/nweb/public/udmsearch/mysql.php on line 25 Error: Could not connect to mysql: Kokorev Alexey E-mail: [EMAIL PROTECTED] | http://w

Newbie question: Create table from query or export query

2002-04-15 Thread Renger van Nieuwkoop
Hi Is it possible to create a new table from the results of a query, or export the result directly to a file (txt, csv, excel or alike) using MySQL? How is it done? Thanks Renger _ ECOPLAN Forschung und Beratung in Wirtschaft und Politik Econom

Re: How does DISTINCT really work ?

2002-04-15 Thread Fournier Jocelyn [Presence-PC]
Hi, Sorry finally there is no lock with 'use database', it only takes a huge amont of time because of the number of table in my database :) Regards, Jocelyn - Original Message - From: "Fournier Jocelyn [Presence-PC]" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[E

Create table from results of a query

2002-04-15 Thread Your Name
Hi Is it possible to create a new table from the results of a query, or export the result directly to a file (txt, csv, excel or alike) using MySQL? How is it done? Thanks Renger -- Renger van Nieuwkoop [EMAIL PROTECTED] -

Create table from results of a query

2002-04-15 Thread Your Name
Hi Is it possible to create a new table from the results of a query, or export the result directly to a file (txt, csv, excel or alike) using MySQL? How is it done? Thanks Renger -- Renger van Nieuwkoop [EMAIL PROTECTED] -

Re: How does DISTINCT really work ?

2002-04-15 Thread Fournier Jocelyn [Presence-PC]
Hi, I have the latest 4.0.2 source installed, and the problem is still here AFAIK : mysql> \s -- mysql Ver 12.1 Distrib 4.0.2-alpha, for pc-linux-gnu (i686) -=[root@anedroide]=(/usr/local/mysql-4.0)# bk export -tpatch <(13:29:52) # This is a BitKeeper generated patch for the follow

Re: FULLTEXT index question

2002-04-15 Thread Sergei Golubchik
Hi! On Apr 15, Nicholas Murphy wrote: > > The query > > select * from tablename where match(column_name) > against('three'); > > fails to match any record. > > Ten to twelve records in the table are know to have > the distinct word "three" in them in the indexed column. > > Question: > >

Re: How does DISTINCT really work ?

2002-04-15 Thread Heikki Tuuri
Hi! Ok, Monty said that this DISTINCT ... ORDER BY bug has already been fixed in 4.0. Regards, Heikki Innobase Oy - Original Message - From: "Heikki Tuuri" <[EMAIL PROTECTED]> To: "SDiZ (UHome)" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL

FULLTEXT index question

2002-04-15 Thread Nicholas Murphy
Environment: MySQL Version 3.23.42 FreeBSD 4.4 ISAM table of about 300,000 rows and 10 columns with a column structured as varchar(50) upon which exists a FULLTEXT index Behavior: The query select * from tablename where match(column_name) against('tree'); selects seven records. The query

RE: RE: Writing to net

2002-04-15 Thread Boaz Yahav
Does anyone have an idea about what this is? I see this sometimes in the process list of MySQL. thanks berber - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/

installation of mysql

2002-04-15 Thread christine . tringa
Hello, I want to install the source distribution of Mysql on Solaris 2.7. I have make this: gzip mysql-3.23.45.tar.gz gtar xvf mysql-3.23.45.tar cd mysql-3.23.45 setenv CFLAGS "-O3" setenv CXX gcc setenv CXXFLAGS "-O3 -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/opuski

Optimizing Indexes and such in MySQL

2002-04-15 Thread Boaz Yahav
I'm interested to know how people keep their MySQL tables up-to-date on a regular basis. what is the methodology used to keep up indexes up to date and tables optimized etc... thanks berber - Before posting, please check: ht

RE: search problem

2002-04-15 Thread Simon Green
When I so a search on www.mysql.com I get this! <---snip---> Warning: Can't create a new thread (errno 11). If you are not out of available memory, you can consult the manual for a possible OS-dependent bug in /production/data/nweb/public/udmsearch/mysql.php on line 25 Error: Could not connect t

Re: problem

2002-04-15 Thread Sammy Lau
HITESH PATEL wrote: > > respected sir/madam, > > i had to recently encounter of entering the movie > files in a database using the blob datatype. > > the problems i faced are: > > 1) while creating the table how do i mention the size > of the blob field. say.. > > create table

Re: new windows Tool

2002-04-15 Thread Pierre du Parte
I have no objection to you promoting your wares in this group of to your entrepreneurial skills. But to get the message "This trial has expired" on the first run after installing the 9 meg plus download is a bit rough, isn't it? And definitely not the way to win customers! Pierre amr salah w

Re: connect from foreign host

2002-04-15 Thread Victoria Reznichenko
Gokce, Saturday, April 13, 2002, 1:19:26 PM, you wrote: GA> I can use mysql server with all ways from localhost. But, there is no GA> connection from any foreign host. I have two linux server. One of is mysql GA> server. I try to connect from other server to mysql server. GA> mysql -u user -h m

Re: problem

2002-04-15 Thread Victoria Reznichenko
HITESH, Monday, April 15, 2002, 10:44:45 AM, you wrote: HP> i had to recently encounter of entering the movie HP> files in a database using the blob datatype. HP> the problems i faced are: HP> 1) while creating the table how do i mention the size HP> of the blob field. say.. HP>

Re: Difference between MySQL and MySQL Max

2002-04-15 Thread Victoria Reznichenko
Jayakumar, Monday, April 15, 2002, 6:54:05 AM, you wrote: JD> I am new to MySQL. Can anyone tell me what is the difference between JD> MySQL and MySQL Max. MySQL-Max is the extended MySQL server. It's configured with options: --with-server-suffix=-max --with-innodb

Re: How to find out where is the installation directory

2002-04-15 Thread Egor Egorov
Jayakumar, Monday, April 15, 2002, 7:24:14 AM, you wrote: JD> I am using Red Hat 7.1. When i use rpm query, it says that I have My SQL JD> 3.23 Server and Client installed. Where can i find the installation JD> directory. It depens on your installation ... If you installed MySQL from w

mysql@lists.mysql.com

2002-04-15 Thread Egor Egorov
imran, Sunday, April 14, 2002, 1:26:42 PM, you wrote: i>Description: i> After installing the mysql server i moved it to my home dir under SQL. Tried i> running the configure script first. Then i tried mysqladmin version but it i> doesnt help. It says that not able to find /tmp/mysql.sock file. i

Re: Multiple updates

2002-04-15 Thread Kittiphum Worachat
> That the thing see, the form(using GET instead of POST) sends data with > the new dates like this:- > > id=1&name=Mark&job_number=AA1&job_date=2002-5-19 > &id=2&name=Mark&job_number=AA2&job_date=2002-5-21 > &id=3&name=Mark&job_number=AA3&job_date=2002-5-25 > > and the UPDATE query like this:- >

mysql server not starting

2002-04-15 Thread Terrence Tyson
From: terrence To: [EMAIL PROTECTED] Subject: see above Description: MySQL version 3.23.47 Darwin 5.x When I run mysqladmin version, I get the following message: 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)' Check that mysqld is running and that the socket: '/tmp/mys

Проблема Mysql on FreeBSD

2002-04-15 Thread amber46
Ïðèâåòñòâóþ òåáÿ, mysql, Ïðîøó ïðîùåíèÿ çà íàçîéëèâîñòü íî êàðòèíà òà æå è íå çíàþ ê ñîæàëåíèþ êàê ñ íåé áîðîòüñÿ... :( --- Ôðàãìåíò Top - last pid: 55153; load averages: 1.60, 1.43, 1.35 up 4+19:23:57 10:42:44 205 processes: 2 running, 202 sleeping, 1 zombie CPU states: 23.7

Re: Multiple updates

2002-04-15 Thread DL Neil
Mark, Earlier joke rebounds - pardon me whilst I wipe the comedic egg from my face... > That the thing see, the form(using GET instead of POST) sends data with > the new dates like this:- > > id=1&name=Mark&job_number=AA1&job_date=2002-5-19 > &id=2&name=Mark&job_number=AA2&job_date=2002-5-21 > &

  1   2   >