Re: What sites?
You may see list of this sites at MySQL manual: http://www.mysql.com/doc/U/s/Users.html On Thu 18 Oct 2001 14:05, Philip Johannessen wrote: > Im currently in a debate with someone who prefers PostgreSQL. He says that > MySQL is unstable etc. Can you please give me examples of some well known > sites built on MySQL so I can tell him that MySQL rocks? > > Sorry if this is off-topic. But atleast im patriotic :) > > /Philip > > > > - > 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 <[EMAIL PROTECTED]> > To unsubscribe, e-mail <[EMAIL PROTECTED]> > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php -- Roman Festchook Network Engineer ISP ORTA Polesye http://www.polesye.net - 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 <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Re: Installation problsm - Can't locate DBI.pm
You need to install Perl DBI, Mysql and Data-Dumper modules On Thu 13 Sep 2001 21:12, OPEN.org System Administrator wrote: > I get the following error message when trying to run-all-test. Any help > would be greatly appreciated. > > /usr/local/mysql/sql-bench # ./run-all-tests > Can't locate DBI.pm in @INC (@INC contains: > /opt/perl5/lib/5.00503/PA-RISC1.1 /opt/perl5/lib/5.00503 > /opt/perl5/lib/site_perl/ > 5.005/PA-RISC1.1 /opt/perl5/lib/site_perl/5.005 .) at ./run-all-tests line > 36. > BEGIN failed--compilation aborted at ./run-all-tests line 36. > > Thanks, > Eric White > > > - > 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 <[EMAIL PROTECTED]> > To unsubscribe, e-mail <[EMAIL PROTECTED]> > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php -- Roman Festchook Network Engineer ISP ORTA Polesye http://www.polesye.net - 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 <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Re: Convert to MyISAM
use: alter table type=myisam On Thu 06 Sep 2001 12:53, Lorang Jacques wrote: > Hello, > > I would be pleased if anyone could tell me hoe to convert my tables to > MyISAM. I used to run an old MYsql version, but now got the newest one, but > still my tables can't use the features of the new version and i guss it is > because of the table type not being MyISAm. So how to convert ? > > Thankx for reply, > > Lorang Jacques > > > > - > 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 <[EMAIL PROTECTED]> > To unsubscribe, e-mail <[EMAIL PROTECTED]> > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php -- Roman Festchook Network Engineer ISP ORTA Polesye http://www.polesye.net - 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 <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Re: Setting User Privileges ? Confused !!
I mean user table - mysql.user anonimous user - mysql.user.User = "%" and mysql.user.Host = "localhost" On Wed 29 Aug 2001 22:58, Dennis Herndon wrote: > I have the same problem and have looked all over for the solution. You > have to delete the anonymous user from which table? I would assume the > users table? > > -Original Message- > From: Roman Festchook [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 29, 2001 10:05 > To: Peter Moscatt; MySQL List > Subject: Re: Setting User Privilges ? Confused !! > > > By default you have record for anonimous user with any name and no pass in > your access tables, thats lock access any other user from localhost with > password to database. Just delete this anonimous user from mysql access > tables > > On Wed 29 Aug 2001 13:08, Peter Moscatt wrote: > > I am pretty new to MySQL, in fact that also covers Linux as well. > > > > I have Mandrake 8.0 which I have installed MySQL using the RPM format. > > I plan to write code (python) to access the database to manage what > > data it may hold. > > > > The server automatically starts on boot - which is fine. > > > > To be able to do anything with MySQL I have to be logged on as 'root' > > > > If I try to access the database I have created under my normal logon > > ('pmoscatt') I get the following error message: > > > > ERROR 1044: Access denied for user '@localhost' to database 'MCMaint' > > > > I have read the manual to see how I can get around this but find it > > confusing. > > > > Can anyone help me to allow me to access databases under my normal user > > account. > > > > Pete > > > > > > > > - > > 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 <[EMAIL PROTECTED]> > > To unsubscribe, e-mail > > <[EMAIL PROTECTED]> > > > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php -- Roman Festchook Network Engineer ISP ORTA Polesye http://www.polesye.net - 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 <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Re: Setting User Privilges ? Confused !!
By default you have record for anonimous user with any name and no pass in your access tables, thats lock access any other user from localhost with password to database. Just delete this anonimous user from mysql access tables On Wed 29 Aug 2001 13:08, Peter Moscatt wrote: > I am pretty new to MySQL, in fact that also covers Linux as well. > > I have Mandrake 8.0 which I have installed MySQL using the RPM format. > I plan to write code (python) to access the database to manage what > data it may hold. > > The server automatically starts on boot - which is fine. > > To be able to do anything with MySQL I have to be logged on as 'root' > > If I try to access the database I have created under my normal logon > ('pmoscatt') I get the following error message: > > ERROR 1044: Access denied for user '@localhost' to database 'MCMaint' > > I have read the manual to see how I can get around this but find it > confusing. > > Can anyone help me to allow me to access databases under my normal user > account. > > Pete > > > > - > 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 <[EMAIL PROTECTED]> > To unsubscribe, e-mail <[EMAIL PROTECTED]> > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php -- Roman Festchook Network Engineer ISP ORTA Polesye http://www.polesye.net - 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 <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Re: submit a full bug report
What compiler you use? I have similar problem with some software packages, when I try compile it with RedHat gcc-2.96. Try another version, gcc 3.01 or gcc 2.95 On Sun 26 Aug 2001 18:39, sailer-sh wrote: > I use kernel 2.4.9 ,I compiled mysql-3.23.41(./configure --with-low-memory; > make ), when "make", it said : > > ranlib .libs/libmysqlclient.a > creating libmysqlclient.la > (cd .libs && rm -f libmysqlclient.la && ln -s ../libmysqlclient.la > libmysqlclient.la) make[2]: Leaving directory > `/usr/src/mysql-3.23.41/libmysql' > Making all in client > make[2]: Entering directory `/usr/src/mysql-3.23.41/client' > c++ -DUNDEF_THREADS_HACK -I./../include > -I../include -I./.. -I.. -I..-O3 -DDBUG_OFF -fno-implicit-templates > -fno-exceptions -fno-rtti -c mysql.cc mysql.cc: In function `void > print_field_types (MYSQL_RES *)': > mysql.cc:1539: Internal error: Segmentation fault. > Please submit a full bug report. > See http://bugzilla.redhat.com/bugzilla/> for instructions. > make[2]: *** [mysql.o] Error 1 > make[2]: Leaving directory `/usr/src/mysql-3.23.41/client' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/usr/src/mysql-3.23.41' > make: *** [all-recursive-am] Error 2 -- Roman Festchook Network Engineer ISP ORTA Polesye http://www.polesye.net - 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 <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php