Open Source Application Server

2007-09-01 Thread john_sm
Hey Guys, can you suggest any Open Source Application Server for SOA deployments. Also, wondering, if our needs are somewhat lightweight, is there some lightweight open source Application Server you could Suggest. -- View this message in context:

Re: Open Source Application Server

2007-09-01 Thread sol beach
Spamming for maximum exposure? http://www.dbforums.com/showthread.php?t=1622017 http://www.orafaq.com/forum/t/88505/74940/ On 9/1/07, john_sm [EMAIL PROTECTED] wrote: Hey Guys, can you suggest any Open Source Application Server for SOA deployments. Also, wondering, if our needs are

Re: excessive time spent in statistics status

2007-09-01 Thread Shawn Green
Hello Lucio, (reply below) Lucio Chiappetti wrote: I have some queries, involving a largish number of JOIN, which are apparently very slow or even take forever (a mysqladmin processlist shows them remain in the statistics status for a long time, in most cases I have to kill them after several

Re: Server hangs on get_lock

2007-09-01 Thread Niklas Westerberg
The application is supposed to disregard any failure to acquire the lock. The return value isn't even checked inside the application. There is no loop in which we attempt the acquire the lock. The only intention is to wait for a maximum of 10 seconds for the lock to be relased, and if that fails,

MySQL Magazine Issue Two released

2007-09-01 Thread B. Keith Murphy
Just wanted to let everyone know that the second issue of the MySQL magazine has been uploaded. It is available from http://www.paragon-cs.com/mag/mysqlmag.html Our featured articles include: MySQL Maintenance script -a multi-threaded tool for database maintenance MySQL Table Checksum How-To

Access denied for GRANT using root yet manual user insertion is fine

2007-09-01 Thread Ed Cradock
The grant flag is enabled on the root account: mysql SELECT Grant_priv FROM user WHERE User='root' AND Host='localhost'; ++ | Grant_priv | ++ | Y | ++ 1 row in set (0.01 sec) mysql SHOW GRANTS FOR 'root'@'localhost'; Grants for [EMAIL PROTECTED]

Access denied for GRANT using root yet manual user insertion is fine

2007-09-01 Thread Ed Cradock
The grant flag is enabled on the root account: mysql SELECT Grant_priv FROM user WHERE User='root' AND Host='localhost'; ++ | Grant_priv | ++ | Y | ++ 1 row in set (0.01 sec) mysql SHOW GRANTS FOR 'root'@'localhost'; Grants for [EMAIL PROTECTED]

Re: Access denied for GRANT using root yet manual user insertion is fine

2007-09-01 Thread Ed Cradock
With assistance from a friend this issue has been rectified. The current GRANT was not sufficient. After executing the new GRANT with 'ALL PRIVILEGES' (using the --init-file switch) the root user can now issue GRANTS. Additionally I apologise for duplicate posts, It was not intentional. On