Supported for IPv6?

2009-03-17 Thread 崔岩松
Hi,MySQL, Does MySQL support for IPv6?

75% discount during the Database Workbench pro Secret Super Sale!

2009-03-17 Thread Martijn Tonies
Upscene Productions has a Secret Super Sale on Database Workbench Pro, the database developer IDE. This is a 75% discount on the normal price, check for details: http://www.upscene.com/dbw_secretsupersale.php Valid for one week only, March the 23rd to 28th. With regards, Martijn Tonies

Does MySQL 5.1 store queries?

2009-03-17 Thread Matthew Stuart
Until recently I have been using 4.0.25 and have just upgraded to 5.1 and just wondered if MySQL now enabled me to store queries in the database rather than have to put them all on my pages. Basically, I want to be able to write some select statements and save them in the database.

Re: Does MySQL 5.1 store queries?

2009-03-17 Thread ewen fortune
Mat, On Tue, Mar 17, 2009 at 2:04 PM, Matthew Stuart m...@btinternet.com wrote: Until recently I have been using 4.0.25 and have just upgraded to 5.1 and just wondered if MySQL now enabled me to store queries in the database rather than have to put them all on my pages. Basically, I want to be

Re: Does MySQL 5.1 store queries?

2009-03-17 Thread Martijn Tonies
Until recently I have been using 4.0.25 and have just upgraded to 5.1 and just wondered if MySQL now enabled me to store queries in the database rather than have to put them all on my pages. Basically, I want to be able to write some select statements and save them in the database.

Is there any solution

2009-03-17 Thread Krishna Chandra Prajapati
Hi list, THE IDEA IS TO HAVE A COMMON LOGIN I have two mysql servers with different databases on each of them. I want to search each databases(few tables) on both the server using a single login(mysql connection) Procedure is working fine.but then i have to use two logins(mysql connection)

Re: Is there any solution

2009-03-17 Thread ewen fortune
Kishhna, On Tue, Mar 17, 2009 at 4:13 PM, Krishna Chandra Prajapati prajapat...@gmail.com wrote: Hi list, THE IDEA IS TO HAVE A COMMON LOGIN I have two mysql servers with different databases on each of them. I want to search each databases(few tables) on both the server using a single

Re: Does MySQL 5.1 store queries?

2009-03-17 Thread Peter Brawley
Matthew, wondered if MySQL now enabled me to store queries in the database In three ways---stored procedures; views; and prepared statements built from query strings that come from anywhere including your own tables. PB http://www.artfulsoftware.com - Matthew Stuart wrote: Until

Re: JOB: linux sysadmin with good mysql skills [think really mysql dba] - LOCATION: reading, berkshire, england, uk - SALARY: £40k-£55k at least!

2009-03-17 Thread j...@camalyn.org
On Tue, 2009-03-17 at 17:10 +0100, Jon Stephens wrote: Please don't post off-topic mails to the MySQL Cluster list. Jon hi, I couldn't see anything that read such posts were not permitted. That said, I have tried to present the post as clearly and informative as possible. Hope people agree.

how can I make a stored procedure executable by public?

2009-03-17 Thread Jim Lyons
I am writing a tracking procedure that will be inserted into every procedure (regardless of who writes the procedure) that will insert a record into an audit table. This means the procedure, regardless of who writes it, must have the permission to insert into the table. I am going to modify the

Negated SELECT query

2009-03-17 Thread BobSharp
3 tables are related by one-many links. Employees Assets Maintenance Employees can be assigned = 0 Assets Assets can have = 0 occurances of Maintenance. Assets table contains EmployeeIDs and MaintenanceIDs, but no Foreign Key contraints. Queries ... 1) which Employees

Re: JOB: linux sysadmin with good mysql skills [think really'mysql dba] - LOCATION: reading , berkshire, england, uk - SALARY:£40k-£55k at l east!

2009-03-17 Thread John Daisley
James, I'm guessing this is the same position you sent me direct, sorry for not getting back to you, it slipped my mind. Sadly the location is not suitable for me. Can I suggest you post this on the MySQL website in the Jobs Forum? You should get a good response from there as its a good

Re: JOB: linux sysadmin with good mysql skills [thin k really mysql dba] - LOCATION: reading, berkshire, england , uk - SALARY: £40k-£55k at least!

2009-03-17 Thread Jujitsu Lizard
On Tue, Mar 17, 2009 at 12:25 PM, j...@camalyn.org j...@camalyn.org wrote: On Tue, 2009-03-17 at 17:10 +0100, Jon Stephens wrote: Please don't post off-topic mails to the MySQL Cluster list. Jon hi, I couldn't see anything that read such posts were not permitted. That said, I have tried to

Re: Negated SELECT query

2009-03-17 Thread Perrin Harkins
On Tue, Mar 17, 2009 at 12:42 PM, BobSharp bobsh...@ntlworld.com wrote: These have been written successfully with Sub-Queries, I would like to know how they can be done with only JOINs  ? http://dev.mysql.com/doc/refman/5.0/en/rewriting-subqueries.html - Perrin -- MySQL General Mailing List

Re: JOB: linux sysadmin with good mysql skills [think really mysql dba] - LOCATION: reading, berkshire, england, uk - SALARY: £40k-£55k at least!

2009-03-17 Thread John Daisley
On Tue, 2009-03-17 at 12:56 -0400, Jujitsu Lizard wrote: On Tue, Mar 17, 2009 at 12:25 PM, j...@camalyn.org j...@camalyn.org wrote: On Tue, 2009-03-17 at 17:10 +0100, Jon Stephens wrote: Please don't post off-topic mails to the MySQL Cluster list. Jon hi, I couldn't see anything

Re: JOB: linux sysadmin with good mysql skills [think really mysql dba] - LOCATION: reading, berkshire, england, uk - SALARY: £40k-£55k at least!

2009-03-17 Thread John Daisley
Massimo, First, I don't see this is spam, every reply I have seen on the list, with the exception of those from yourself and another Sun employee, agree that James post was of benefit to list the members, particularly in the current economic climate. Surely if list members think the message is

RE: Negated SELECT query

2009-03-17 Thread Bonnett, John
SELECT Employees.* FROM Employees LEFT JOIN Assets ON Employess.EmployeeID = Assets.EmployeeID WHERE Assets.EmployeeID IS NULL The one for assets with no maintenance is similar. The point is the left join above produces in its output all rows from the Employees table regardless of whether

Re: Negated SELECT query

2009-03-17 Thread BobSharp
Thanks for that,worked through and found that this gives the correct result ... --- Employee No Assets --- SELECT DISTINCT e.employeeID AS eID, concat(e.firstname, , e.lastname) AS eName FROM employees e LEFT JOIN assets a ON e.employeeID = a.employeeID WHERE

Separate customer databases vs all in one

2009-03-17 Thread Daevid Vincent
I'm writing a report tool wherein we have many customers who subscribe to this SaaS. There are millions of rows of data per customer. All customers are islands from each other (of course). Are there any major issues or benefits between storing each customer in their own database (with their own

Re: Separate customer databases vs all in one

2009-03-17 Thread Arthur Fuller
Are these databases identical or merely similar? If they are structurally identical, I'd go for one database per customer. Then you have isolation, easy structure updates and above all, consistent front-end code, in whatever language that occurs. Just obtain the customer ID and then use the