Question about Server Debug Info

2013-07-30 Thread Wayne Leutwyler
Hello List, On two different occasions and on two different servers I have found server debug information written out to the mysqld.log file. Now I know that by issuing the kill -1 mysql-pid will write that information to the mysqld.log file, and by using mysqladmin debug will also write debug

Unresolved symbols with mysqlclient in DEBUG mode using VC++ 2010 Express

2012-06-19 Thread Miguel Cardenas
Hello friends I'm back to MySQL programming using the C API... it works fine when I compile using the RELEASE mode and C:\Program Files (x86)\MySQL\MySQL Server 5.5\lib but if I choose the DEBUG mode and C:\Program Files (x86)\MySQL\MySQL Server 5.5\lib\debug it fails at link time

Re: Unresolved symbols with mysqlclient in DEBUG mode using VC++ 2010 Express

2012-06-19 Thread Lars Nilsson
and the application runs fine in that way only... The missing functions should be provided by the Visual Studio debug runtime library. Are all source files in your own code compiled and program linked with one, and only one, of the flags /MDd (dynamic linking) or /MTd (static linking)? Lars

RE: Unresolved symbols with mysqlclient in DEBUG mode using VC++ 2010 Express

2012-06-19 Thread Martin Gainty
*.dll Saludos Cordiales (desde EEUU) Martin __ Porfavor no altere esta communicacion..Gracias Date: Tue, 19 Jun 2012 10:24:48 -0400 Subject: Re: Unresolved symbols with mysqlclient in DEBUG mode using VC++ 2010 Express From: chamael...@gmail.com

Re: Unresolved symbols with mysqlclient in DEBUG mode using VC++ 2010 Express

2012-06-19 Thread Lars Nilsson
On Tue, Jun 19, 2012 at 10:47 AM, Martin Gainty mgai...@hotmail.com wrote: Miguel.. i do not have VC2010 but as my memory recalls the C runtime library (MSVCRT*.dll) would be the first library on %PATH% .. and all missing functions *should* be located inside the dll (e.g. __CrtSetReportFile

Re: Unresolved symbols with mysqlclient in DEBUG mode using VC++ 2010 Express

2012-06-19 Thread Miguel Cardenas
Hello Lars After hours of testing different project configurations, finally I was able to compile with debug mode... still pending the test of debugging, but just created the DLL (it was a library that I'm developing) without errors... The configurations I used (VC++ 2010 Express) were: RELEASE

Re: Unresolved symbols with mysqlclient in DEBUG mode using VC++ 2010 Express

2012-06-19 Thread Lars Nilsson
On Tue, Jun 19, 2012 at 11:56 AM, Miguel Cardenas renit...@gmail.com wrote: RELEASE: - Runtime: /MT (static threaded) - Library: mysqlclient.lib (...\mysql\lib) - Ignore library: LIBCMTD.lib (without this does not link the release) - Debug: NO RELEASE: - Runtime: /MTd (static threaded

Re: More ways to debug mysql slowness..?

2009-08-30 Thread Shawn Green
again my question is: Iam wondering what other tools exist to load test the mysql daemon, or how to better debug this situation... more tools must exist out there? Perhaps there must be a PHP/DB that I can load... and run a stress test like you would test network issues with speedtest.net just

More ways to debug mysql slowness..?

2009-08-25 Thread David Taveras
is: Iam wondering what other tools exist to load test the mysql daemon, or how to better debug this situation... more tools must exist out there? Perhaps there must be a PHP/DB that I can load... and run a stress test like you would test network issues with speedtest.net just a thought.. I know you dont

Re: More ways to debug mysql slowness..?

2009-08-25 Thread mos
what other tools exist to load test the mysql daemon, or how to better debug this situation... more tools must exist out there? Perhaps there must be a PHP/DB that I can load... and run a stress test like you would test network issues with speedtest.net just a thought.. I know you dont compare apples

Re: Re: VC++ 2008 / MySQL debug / Unhandled exception

2009-01-15 Thread safknw
function 3) the shared memory request fails in a internal strcpy() (asm, not source available) because a memory violation trying to acces 0x Note these conditions: - The program fails inside VC++ 2008 express debug session - The program runs perfect without debug session or called

Re: VC++ 2008 / MySQL debug / Unhandled exception

2009-01-14 Thread Miguel Cardenas
Hi I tested with both release and debug versions and the problem is the same, it fails when calling mysql_real_connect() shared memory request function strcpy() asm code access violation to 0x Regards, Miguel On Sun, Jan 11, 2009 at 9:57 AM, Patrick Sherrill patr

Re: VC++ 2008 / MySQL debug / Unhandled exception

2009-01-14 Thread Miguel Cardenas
available) because a memory violation trying to acces 0x Note these conditions: - The program fails inside VC++ 2008 express debug session - The program runs perfect without debug session or called directly by user - I'm programming inside VirtualBox/WinXP Now I don't know if this problem

RE: VC++ 2008 / MySQL debug / Unhandled exception

2009-01-11 Thread Martin Gainty
if Memory serves the LIBCMTD.lib library that you're excluding IS the MultiThreaded Library? Generally if you can run it thru debug you can get the CodeStack and InstructionPointer which will at least point to the exact location where it abended Saludos Cordiales desde EEUU!Martin

Re: VC++ 2008 / MySQL debug / Unhandled exception

2009-01-11 Thread Patrick Sherrill
I seem to recall the issue with the debug library, but don't recall the fix. Do you get the same permissions (access) error with the release library? Pat... - Original Message - From: Miguel Cardenas renit...@gmail.com To: mysql@lists.mysql.com Sent: Saturday, January 10, 2009 10:22

VC++ 2008 / MySQL debug / Unhandled exception

2009-01-10 Thread Miguel Cardenas
there with the unhandled exception. My VC++ 2008 configuration is this: Includes: C:\Program Files\MySQL\MySQL Server 6.0\include Libraries: C:\Program Files\MySQL\MySQL Server 6.0\lib\debug Code generation: Multi-threaded

Re: VC++ 2008 / MySQL debug / Unhandled exception

2009-01-10 Thread safknw
is this: Includes: C:\Program Files\MySQL\MySQL Server 6.0\include Libraries: C:\Program Files\MySQL\MySQL Server 6.0\lib\debug Code generation: Multi-threaded /MT Precompiled headers: NO Aditional dependencies: wsock32.lib mysqlclient.lib libmysql.lib mysys.lib Ignore specific library

Re: mysqld, mysqld-nt, mysqld-debug

2008-10-24 Thread Moon's Father
Hi. I think you had a mistake for the server types.Mysql-nt.exe is the only exexutable program on windows.So you just pay close attention about it. On Mon, Oct 6, 2008 at 8:35 PM, Steven [EMAIL PROTECTED] wrote: Steve (n) Martin! if you want apache and mysql (and possibly PHP for

Re: mysqld, mysqld-nt, mysqld-debug

2008-10-06 Thread Steven
Steve (n) Martin! if you want apache and mysql (and possibly PHP for scripting) AND you want all 3 to run at once then d/l and implement with XAMP there are alot of XAMP specific bells and whistles that are installed that get in the way of tuning your MySQL and tuning your Apache

Re: mysqld, mysqld-nt, mysqld-debug

2008-10-05 Thread Steven
? That is right! ;-) MySQL as a service should be installed, it starts either automatically or (depending on your attitude) about the services configuration. 3 In Windows is it not possible to start other to two servers mysqld and mysqld-debug You have only to start mysqld. For starting with MySQL, you don't

Re: mysqld, mysqld-nt, mysqld-debug

2008-10-05 Thread Varuna Seneviratna
Hello Steven I have installed it as an service, I first stopped the service form the Service Control Manager and I went to the directory C:\Program Files\MySQL\MySQL Server 5.0\bin ran the command mysqld --console. and out put was C:\Program Files\MySQL\MySQL Server 5.0\binmysqld --console

Re: mysqld, mysqld-nt, mysqld-debug

2008-10-05 Thread Andy Shellam
Varuna, A polite note - if you post the same question 6 times (especially in the space of 24 hours) people are going to be more unlikely to help you. Post the question once, and read people's responses. Now onto your issues... When you run mysqld-nt you were starting a standalone version

Re: mysqld, mysqld-nt, mysqld-debug

2008-10-05 Thread Andy Shellam
Varuna, Please also remember to copy the list back in to your response so others can follow your steps if they're having trouble. As I said in my e-mail, I would recommend installing as a Windows service (you said in your e-mail that Install as a Windows service was unchecked.) I don't use

Re: mysqld, mysqld-nt, mysqld-debug

2008-10-05 Thread Varuna Seneviratna
Andy! Even Installing as a service and choosing Server Machine as Server type does not install mysqld the settings I used are as follows. I even did a search in the C drive SetUp Type Complete The configuration choices made running Configuration Wizard 1Configuration Type Detailed 2

mysqld, mysqld-nt, mysqld-debug

2008-10-04 Thread Varuna Seneviratna
it stops? 3 In Windows is it not possible to start other to two servers mysqld and mysqld-debug Varuna

Debug Stored Proc

2008-05-06 Thread Bryan Cantwell
Is there no way to step thru a stored proc in order to debug it and see what it is doing? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Debug Stored Proc

2008-05-06 Thread Antony T Curtis
to debug it and see what it is doing? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED] -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com

Re: mysql - debug connections dropping/not accepted

2008-01-25 Thread Paul Berry
Date: Friday, January 25, 2008 08:07:32 AM -0500 From: Paul Berry [EMAIL PROTECTED] To: mysql@lists.mysql.com Subject: mysql - debug connections dropping/not accepted hey guys - overnight our sql server apparantly got hit hard, and started dropping connections it was restarted

mysql - debug connections dropping/not accepted

2008-01-25 Thread Paul Berry
hey guys - overnight our sql server apparantly got hit hard, and started dropping connections it was restarted and now this morning even though its showing 0 processes running, seems completely healthy on all tests, mysqld restarted with no sign of problems - none of the web servers can connect to

Re: How to debug a mysqldump dropped connection error?

2007-09-05 Thread Aiton Goldman
The wait_timeout and interactive_timeout global variables are set to 172800, and max_allowed_packet is set to 30M, and I am still getting the problem I am having debugging a problem I am seeing with mysqldump. While using mysqldump to make backups of my database, I will intermitently get the

How to debug a mysqldump dropped connection error?

2007-09-04 Thread Aiton Goldman
I am having debugging a problem I am seeing with mysqldump. While using mysqldump to make backups of my database, I will intermitently get the following error : mysqldump: Error 2013: Lost connection to MySQL server during query when dumping table I am running the pre-compiled 64 bit linux

A question about how to debug the error 2013, 'Lost connection to MySQL server during query'

2007-05-23 Thread aiton
I am running the 64 bit version of mysql server 5.1.18, and on the client side I am running python with the mysqldb module. While running a very large insert query I get the following error : 2013, 'Lost connection to MySQL server during query' I have --log-warnings set to 3, but I get no

Re: A question about how to debug the error 2013, 'Lost connection to MySQL server during query'

2007-05-23 Thread Sebastian Mendel
[EMAIL PROTECTED] schrieb: I am running the 64 bit version of mysql server 5.1.18, and on the client side I am running python with the mysqldb module. While running a very large insert query I get the following error : 2013, 'Lost connection to MySQL server during query' I have

(Windows ODBC/MySQL Debug) EMERGENCY HELP NEEDED

2006-02-10 Thread Michael Joyner
(OT) (Windows ODBC/MySQL Debug) EMERGENCY HELP NEEDED -- The Scenario: ~~ We out locked out of our door lock database. The database is Sybase Sql Anywhere version 7.0 The software uses a hard

Re: (Windows ODBC/MySQL Debug) EMERGENCY HELP NEEDED

2006-02-10 Thread gerald_clark
Michael Joyner wrote: (OT) (Windows ODBC/MySQL Debug) EMERGENCY HELP NEEDED -- The Scenario: ~~ We out locked out of our door lock database. The database is Sybase Sql Anywhere version 7.0

Re: (Windows ODBC/MySQL Debug) EMERGENCY HELP NEEDED

2006-02-10 Thread Michael Joyner
gerald_clark wrote: Michael Joyner wrote: (OT) (Windows ODBC/MySQL Debug) EMERGENCY HELP NEEDED -- MyODBC does not connect to Sybase. Correct. Merely trying to use it's debug features to snatch the dba password so that I can get

mysqlimport debug options

2005-12-13 Thread P. Evans
Hello Listers, Can anyone explain what are valid values for the 'debug options' on a mysqlimport ? The manuals just say : --debug[=debug_options], -# [debug_options] Write a debugging log. The debug_options string often is 'd:t:o,file_name'. What is d: ? t: ? o (ok,thats

Re: mysqlimport debug options

2005-12-13 Thread Gleb Paharenko
Hello. See: http://dev.mysql.com/doc/refman/5.0/en/the-dbug-package.html P. Evans wrote: Hello Listers, Can anyone explain what are valid values for the 'debug options' on a mysqlimport ? The manuals just say : --debug[=debug_options], -# [debug_options] Write

RE: looking for direction on how to debug this message

2005-09-23 Thread Randy Paries
Hello, I have looked at the two supplied links and still have some more questions These errors I get about every 4 to 10 minutes. I get them from 3 different application servers. If I do this mysqld --debug=d,info,error,query,general,where:O,/tmp/mysqld.trace What kind of info can I expect

Re: looking for direction on how to debug this message

2005-09-21 Thread Gleb Paharenko
See: http://dev.mysql.com/doc/mysql/en/communication-errors.html http://dev.mysql.com/doc/mysql/en/making-trace-files.html Randy Paries wrote: Hello, My log file is getting filled with these. How do i start debugging this? Thanks Randy

looking for direction on how to debug this message

2005-09-20 Thread Randy Paries
Hello, My log file is getting filled with these. How do i start debugging this? Thanks Randy //-snip-// 050122 20:28:00 Aborted connection 53561 to db: 'unitnet' user: 'paries' host: `local.flanders' (Got an error reading communication

Emergency! How do I debug this?

2005-09-03 Thread Brian Dunning
My web site has always worked, I didn't change anything, so whatever is causing this error happened all by itself: #1017 - Can't find file: './kessler/products.frm' (errno: 13) In phpMyAdmin, it shows the tables are in use and there's no way to execute a repair or anything. I don't know

Re: Emergency! How do I debug this?

2005-09-03 Thread Jason Pyeron
are there backups of this machine? do you have administrator access? does kessler/products.frm still exist? [likely: /var/lib/mysql/kessler/products.frm] On Sat, 3 Sep 2005, Brian Dunning wrote: My web site has always worked, I didn't change anything, so whatever is causing this error

Re: Emergency! How do I debug this?

2005-09-03 Thread Jason Pyeron
what portal software is this? google pulls up many instances of this error from several 'different' servers, you might lookinto the software. http://www.google.com/search?num=50hl=enlr=lang_ensafe=offq=%27kessler%2Fproducts.frm%27btnG=Searchlr= it could be that the permissions are wrong,

Re: Emergency! How do I debug this?

2005-09-03 Thread Brian Dunning
There are no backups, unfortunately. I do have admin access. It's a RaQ if that makes any difference. I did find the database files at another location, /vol/hdd/mysql/kessler/products.frm and everything else. On Sep 3, 2005, at 1:24 PM, Jason Pyeron wrote: are there backups of this

Re: Emergency! How do I debug this?

2005-09-03 Thread Brian Dunning
On Sep 3, 2005, at 1:43 PM, Jason Pyeron wrote: google pulls up many instances of this error from several 'different' servers, you might lookinto the software. http://www.google.com/search?num=50hl=enlr=lang_ensafe=offq=% 27kessler%2Fproducts.frm%27btnG=Searchlr= The reason for that is a

Re: Emergency! How do I debug this?

2005-09-03 Thread Brian Dunning
On Sep 3, 2005, at 1:43 PM, Jason Pyeron wrote: it could be that the permissions are wrong, too. The permissions for all the files in there are -rwxrwxr-x ...I don't know if that's what they should be or not. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To

Re: Emergency! How do I debug this?

2005-09-03 Thread Jason Pyeron
all the parent dirs +x ? what is the ouput is the show databases? On Sat, 3 Sep 2005, Brian Dunning wrote: On Sep 3, 2005, at 1:43 PM, Jason Pyeron wrote: it could be that the permissions are wrong, too. The permissions for all the files in there are -rwxrwxr-x ...I don't know if that's

Re: Emergency! How do I debug this?

2005-09-03 Thread Brian Dunning
FIXED... I did a chmod +rwx on the directory, and now all is well. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Emergency! How do I debug this?

2005-09-03 Thread Brian Dunning
On Sep 3, 2005, at 1:43 PM, Jason Pyeron wrote: google pulls up many instances of this error from several 'different' servers, you might lookinto the software. http://www.google.com/search?num=50hl=enlr=lang_ensafe=offq=% 27kessler%2Fproducts.frm%27btnG=Searchlr= The reason for that is a

Re: Problem using debug switch with mysqlimport

2004-12-13 Thread Gleb Paharenko
Hello. I've submitted a bug: http://bugs.mysql.com/7137 Sure enough... I just installed the latest 4.1 linux binaries, I didn't realize that the server itself had to be compiled with the debug enabled (although now that I realize that it makes complete sense). It would

mysqldump + debug option not working

2004-12-12 Thread ManojSW
Hi, I am running MySQL (4.0.15 max log) mysqldump (version 9.09 Distrib 4.0.16) on Linux platform. For some strange reasons, I am unable to use the debug option with mysqldump. I have tried the following switch with no luck: -# , --debug, --debug = 'd:t:o,debug.log

Re: mysqldump + debug option not working

2004-12-12 Thread Paul DuBois
At 11:19 +0900 12/13/04, ManojSW wrote: Hi, I am running MySQL (4.0.15 max log) mysqldump (version 9.09 Distrib 4.0.16) on Linux platform. For some strange reasons, I am unable to use the debug option with mysqldump. I have tried the following switch with no luck: -# , --debug

Re: mysqldump + debug option not working

2004-12-12 Thread ManojSW
PROTECTED] To: ManojSW [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, December 13, 2004 11:29 AM Subject: Re: mysqldump + debug option not working At 11:19 +0900 12/13/04, ManojSW wrote: Hi, I am running MySQL (4.0.15 max log) mysqldump (version 9.09 Distrib 4.0.16) on Linux platform

Re: mysqldump + debug option not working

2004-12-12 Thread ManojSW
Got it. I did a mysql --help and saw that debug-info is set to FALSE...so I need to compile MySQL with debugging support. Thanks for all the help!! Cheers Manoj - Original Message - From: Paul DuBois [EMAIL PROTECTED] To: ManojSW [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday

Re: Problem using debug switch with mysqlimport

2004-12-08 Thread Settles, Aaron
Sure enough... I just installed the latest 4.1 linux binaries, I didn't realize that the server itself had to be compiled with the debug enabled (although now that I realize that it makes complete sense). It would be nice if the documentation for mysqlimport would at least make note

Re: Problem using debug switch with mysqlimport

2004-12-07 Thread Gleb Paharenko
Hello. Check that your MySQL installation was compiled with debug support: mysqld --help If the --debug flag is listed with the options then you have debugging enabled. mysqladmin ver also lists the mysqld version as mysql ... --debug in this case. I'm trying to utilize

Problem using debug switch with mysqlimport

2004-12-06 Thread Settles, Aaron
I'm trying to utilize the debug switch with mysqlimport so that I can figure out why I'm getting errors on the data I'm importing, but I have yet to figure out a way to do this. I've tried to read the sparse documentation concerning this feature and no debug file is ever produced. I've tried

Help with --with-debug

2004-08-21 Thread Jo Jojo
Hello This is probably real simple for someone that knows - I'm having a few problems installing MySQL on a particular server (it's repairing a damaged copy). I'd like to try and fix it myself so I'm recompiling with the --with-debug option. If I manage to fix the problem, is there any overhead

Re: debug

2004-07-02 Thread Bob Lockie
On 06/30/2004 02:46 PM Andrew Pattison spoke: The way I do this is within PHP is to echo the value stored in mysql_error after each SQL statement. If you're not using PHP then this probably doesn't help though ;-) I'm not using PHP. I'm loading tons of data with SQL statements from the command

debug

2004-06-30 Thread Bob Lockie
I'm running a ton of sql statements to load data. Is there a way to not display successes: Query OK, 1 row affected (0.02 sec) Records: 1 Duplicates: 0 Warnings: 0 and display failures and the query statement that failed? There are 60 000+ of these and I'd ideally like to debug the inserts

Re: debug

2004-06-30 Thread Andrew Pattison
: Wednesday, June 30, 2004 3:38 PM Subject: debug I'm running a ton of sql statements to load data. Is there a way to not display successes: Query OK, 1 row affected (0.02 sec) Records: 1 Duplicates: 0 Warnings: 0 and display failures and the query statement that failed? There are 60 000

Re: MySQL 5.0.0-alpha-max-debug running on localhost as ODBC@localhost

2004-04-21 Thread Egor Egorov
To: [EMAIL PROTECTED] Subject: Re: MySQL 5.0.0-alpha-max-debug running on localhost as [EMAIL PROTECTED] Marvin Cummings [EMAIL PROTECTED] wrote: This appears when I attempt to open phpMyAdmin. It doesn't matter what account I set in the config.inc.php file, I continue to get this error. How

RE: MySQL 5.0.0-alpha-max-debug running on localhost as ODBC@localhost

2004-04-19 Thread Marvin Cummings
Egorov [mailto:[EMAIL PROTECTED] Sent: Friday, April 16, 2004 10:22 AM To: [EMAIL PROTECTED] Subject: Re: MySQL 5.0.0-alpha-max-debug running on localhost as [EMAIL PROTECTED] Marvin Cummings [EMAIL PROTECTED] wrote: This appears when I attempt to open phpMyAdmin. It doesn't matter what account

Re: MySQL 5.0.0-alpha-max-debug running on localhost as ODBC@localhost

2004-04-16 Thread Egor Egorov
Marvin Cummings [EMAIL PROTECTED] wrote: This appears when I attempt to open phpMyAdmin. It doesn't matter what account I set in the config.inc.php file, I continue to get this error. How do I change this so that another account logs in to the localhost? I unfortunately had to reboot my server

MySQL 5.0.0-alpha-max-debug running on localhost as ODBC@localhost

2004-04-15 Thread Marvin Cummings
This appears when I attempt to open phpMyAdmin. It doesn't matter what account I set in the config.inc.php file, I continue to get this error. How do I change this so that another account logs in to the localhost? I unfortunately had to reboot my server and this became the result. I notice that I

RE: Debug options for mysqlimport?

2003-12-03 Thread Curley, Thomas
: Debug options for mysqlimport? I'm having a tough time with the debug options for mysqlimport. I've check the docs, but they're as clear as mud. I've tried a number of combinations of -#d:t:o,filename and everything else I can think of, but I can't get any debug information. What I'm really

Debug options for mysqlimport?

2003-12-02 Thread Greg G
I'm having a tough time with the debug options for mysqlimport. I've check the docs, but they're as clear as mud. I've tried a number of combinations of -#d:t:o,filename and everything else I can think of, but I can't get any debug information. What I'm really looking for is to get the text

RE: --with-debug option

2003-11-26 Thread Stefaan Van Dooren
: [EMAIL PROTECTED] Subject: Re: --with-debug option On Tue, 25 Nov 2003, Stefaan Van Dooren wrote: Can anyone tell me what this option does, besides adding debug information ? When I add this option, I get a working mysqld server. When I remove it and recompile, my server won't work anymore

--with-debug option

2003-11-25 Thread Stefaan Van Dooren
Hi, Can anyone tell me what this option does, besides adding debug information ? When I add this option, I get a working mysqld server. When I remove it and recompile, my server won't work anymore It looks like the server is started (hostname.err), but no pid file is created MySQL

Re: --with-debug option

2003-11-25 Thread Boyd Gerber
On Tue, 25 Nov 2003, Stefaan Van Dooren wrote: Can anyone tell me what this option does, besides adding debug information ? When I add this option, I get a working mysqld server. When I remove it and recompile, my server won't work anymore It does a lot of things. With MySQL-4.0.16

how to debug mysql command hang?

2003-10-29 Thread Anderson, James H [IT]
The database is working fine, by the mysql command hangs indefinitely. Any thoughts how I can determine the cause? Thanks. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: What is 4.0.15-max-debug

2003-10-08 Thread Egor Egorov
031007 9:37:53 InnoDB: Started MySql: ready for connections. Version: '4.0.15-max-debug' socket: '' port: 3306 Since I asked for the standard server mysqld What is max-debug and where did it come from? Look at the manual: http://www.mysql.com/doc/en

What is 4.0.15-max-debug

2003-10-07 Thread Arthur Maloney
for connections. Version: '4.0.15-max-debug' socket: '' port: 3306 Since I asked for the standard server mysqld What is max-debug and where did it come from? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL

Error after upgrading to 4.1.0-alpha-max-debug LibMySQL.dll missing

2003-08-04 Thread Morten Gulbrandsen
Hello programmers this is my path, C:\mysql\binpath PATH=C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\mysql\bin After installing 4.1.0-alpha-max-debug I try to start winmysqladmin.exe Then I get this error, === Die dynamic link library libmysql.dll wurde nicht im angegebenen Pfad

Re: Error after upgrading to 4.1.0-alpha-max-debug LibMySQL.dll missing

2003-08-04 Thread miguel solorzano
At 16:06 4/8/2003 +0200, Morten Gulbrandsen wrote: Hi, Just copy c:\mysql\lib\opt\libmysql.dll into the c:\mysql\bin directory. When is final release of 4.1.0 scheduled please ? I highly appreciate and thank you all eternally for Enabling nested selects like SELECT article, dealer, price FROM

MySQL compiletime errors with --with-debug=full

2003-07-20 Thread Adam Carmichael
to compile mysql-4.0.13 with the following configure command: ./configure --with-vio --with-openssl --with-debug=full (the initial bug I wanted to report is related to openssl so compiling with the ssl and vio options is essential). I then try running 'make' but I get a lot of undefined reference

Re: MySQL compiletime errors with --with-debug=full

2003-07-20 Thread Sergei Golubchik
. I am running FreeBSD 4.8, and I attempt to compile mysql-4.0.13 with the following configure command: ./configure --with-vio --with-openssl --with-debug=full (the initial bug I wanted to report is related to openssl so compiling with the ssl and vio options is essential). I then try running

Re: MySQL compiletime errors with --with-debug=full

2003-07-20 Thread Adam Carmichael
Worked like a charm! Thank you very much Sergei! :) Adam - Original Message - From: Sergei Golubchik [EMAIL PROTECTED] To: Adam Carmichael [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, July 20, 2003 10:04 PM Subject: Re: MySQL compiletime errors with --with-debug=full Hi

mysqlserver debug

2002-06-18 Thread Yuri Alexandrov
Hi, Does anyone succeed to run embedded mySQL application (libmysqlserver) built in Debug. I got RtlHeapValidate exception on any mysql calls which allocates and free some memory. Crash appears in: -- cut --- void my_no_flags_free(gptr ptr) { DBUG_ENTER(my_free

make of mysql 3.23.37 --with-debug fails on AIX 4.3.3 with xlc_r/xlC_r compiler

2002-06-06 Thread Chris Gruszka
Summary: On AIX 4.3.3, using xlc_r/xlC_r compiler, configured with --with-debug, make all in client directory fails with: ld: 0711-317 ERROR: Undefined symbol: ._db_enter_ ld: 0711-317 ERROR: Undefined symbol: ._db_return_ ld: 0711-317 ERROR: Undefined symbol: _db_on_ ld: 0711-317 ERROR

how to use checker to debug mysql applications

2002-03-25 Thread Michael Widenius
Hi! mysql == mysql-return-103913-monty mysql mysql-return-103913-monty writes: mysql Hi, mysql is there any way to debug a c-programm that uses the mysql c-api? I want mysql to use checker for memleak checking but it seems to be impossible to mysql compile the mysql client libraries using

how to use checker to debug mysql applications

2002-03-22 Thread mysql-return-103913-archive=jab . org
Hi, is there any way to debug a c-programm that uses the mysql c-api? I want to use checker for memleak checking but it seems to be impossible to compile the mysql client libraries using checker. The reason seems to be some assembly language parts. All other libraries I need compile. Did anybody

RE: Invalid Argument ??? Not sure how to debug this

2002-03-18 Thread Tim Ward
:[EMAIL PROTECTED]] Sent: 17 March 2002 08:38 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Invalid Argument ??? Not sure how to debug this Hi all and Good Morning. I have been struggling with this code: I was wondering if someone could lend me

Invalid Argument ??? Not sure how to debug this

2002-03-17 Thread Daniel Negron/KBE
Hi all and Good Morning. I have been struggling with this code: I was wondering if someone could lend me a hand. I am working with this code and can't get the error to disappear. After running I get |-| |

Re: [PHP] Invalid Argument ??? Not sure how to debug this

2002-03-17 Thread Jason Wong
On Sunday 17 March 2002 16:38, Daniel Negron/KBE wrote: Hi all and Good Morning. I have been struggling with this code: I was wondering if someone could lend me a hand. I am working with this code and can't get the error to disappear. After running I get

Re: [PHP] Invalid Argument ??? Not sure how to debug this

2002-03-17 Thread mnc
On Sun, 17 Mar 2002, Daniel Negron/KBE wrote: $sql= SELECT * FROM cd_list WHERE $searchstring LIKE '%searchstring%' ORDER BY artist ASC; How about: SELECT * FROM cd_list WHERE searchstring LIKE '%{$searchstring}%' Then again, do you actually have a column called searchstring in your

Where is Win32 binary NON-debug 3.23.39 ? Debug builds much slower ?

2001-07-27 Thread S A
I'd rather not fire up Viz C just to build MySQL 3.23.39 NON-DEBUG. Is there much of a performance difference between DEBUG NON-DEBUG ? Also with the Windows binary builds how does one NOT use MySQL MAX, is that a runtime option or do you need a different build entirely ? Is there much

OUTFILE ownership under mysqld 3.23.36-debug

2001-04-10 Thread Brian Reichert
Ok, this is confusing me. Under FreeBSD 4.2 and MySQL 3.23.36-debug: The mysqld process is not running as root, but as 'mysqld:mysqld'. bmdb2# ps -orgid,ruid,command -eww -p 46884 RGID RUID COMMAND 6724 6724 MYSQL_TCP_PORT=3306 OLDPWD=/var/mysqld/db/mojo log_dir=/var/mysqld/log

logging doesnt work with bdb if --with-debug

2001-04-09 Thread oliver . blasnik
Description: oliver After several sig 11 I compliled a --with-debug version and enabled oliver debugging and logging. Mysqld crashed shortly after starting without oliver trace (!) and then immediatly crashed again after restart. oliver /sw/pkg/mysqldebug