<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-13</id>
	<title>Nabble - MySQL</title>
	<updated>2008-12-03T12:33:21Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/MySQL-f13.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/MySQL-f13.html" />
	<subtitle type="html">MySQL home is &lt;a href=&quot;http://www.mysql.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-20821075</id>
	<title>Can MySQL 5 fully support XA transactions?</title>
	<published>2008-12-03T12:33:21Z</published>
	<updated>2008-12-03T12:33:21Z</updated>
	<author>
		<name>James Adams</name>
	</author>
	<content type="html">I am trying to use XA transactions with a MySQL database using Spring, Hibernate, OpenMQ, and Atomikos and there is apparently an insufficiency in the XA DataSource implementation (due to this &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/xa-restrictions.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.mysql.com/doc/refman/5.0/en/xa-restrictions.html&lt;/a&gt;) which prevents resumes from completing successfully.
&lt;br&gt;&lt;br&gt;See thisa thread for more information as far as error stack traces and configuration details: &lt;a href=&quot;http://fogbugz.atomikos.com/default.asp?community.6.360.2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://fogbugz.atomikos.com/default.asp?community.6.360.2&lt;/a&gt;&lt;br&gt;&lt;br&gt;Can I use MySQL for XA transactions in this manner, or would using another approach (different TransactionManager, etc.) be a better idea?
&lt;br&gt;&lt;br&gt;I will eventually deploy in Glassfish, so should I try using the Glassfish JTA TransactionManager and hope that it works a little better with the MySQL XA Driver?
&lt;br&gt;&lt;br&gt;Thanks in advance for any suggestions.
&lt;br&gt;&lt;br&gt;--James&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Java-f20.html&quot; embed=&quot;fixTarget[20]&quot; target=&quot;_top&quot; &gt;MySQL - Java&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Can-MySQL-5-fully-support-XA-transactions--tp20821075p20821075.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20796395</id>
	<title>unique constraint with 4 columns</title>
	<published>2008-12-02T09:24:16Z</published>
	<updated>2008-12-02T09:24:16Z</updated>
	<author>
		<name>bensender</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;Is it common to create unique constraints that consist of 4 columns? Can this result performance issues?
&lt;br&gt;Thank you!&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/unique-constraint-with-4-columns-tp20796395p20796395.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20738375</id>
	<title>Best Practices on Dump and Load</title>
	<published>2008-11-28T10:52:14Z</published>
	<updated>2008-11-29T16:13:32Z</updated>
	<author>
		<name>Mike Oliver</name>
	</author>
	<content type="html">Does anyone have a set of best practices they would share related to Dump and Load?
&lt;br&gt;&lt;br&gt;We have had some problems arise when taking a dump from a developer instance of the database and loading it on another, but not consistently.
&lt;br&gt;&lt;br&gt;I am particularly interested in its use to migrate schemas along with test data from Dev to Build to QA to Staging and into Production.
&lt;br&gt;&lt;br&gt;We have some that favor the use of Dump and Load ONLY for initial setup of a DB instance and use Patch files from then on, while others think Dump and Load is ok for schema changes as well.
&lt;br&gt;&lt;br&gt;Interested in the community opinion on these choices and / or those Best Practices.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Ollie
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Community-f754.html&quot; embed=&quot;fixTarget[754]&quot; target=&quot;_top&quot; &gt;MySQL - Community&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Best-Practices-on-Dump-and-Load-tp20738375p20738375.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20688051</id>
	<title>Optimising query question, EXPLAIN SELECT ...</title>
	<published>2008-11-25T11:30:11Z</published>
	<updated>2008-11-25T11:30:11Z</updated>
	<author>
		<name>debussy007</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I am pretty new in optimizing tables with idnex and may need some help.
&lt;br&gt;This is my query:
&lt;br&gt;&lt;br&gt;EXPLAIN SELECT timestamp
&lt;br&gt;FROM Meting_INT_COPY
&lt;br&gt;WHERE blockid = '200811252000'
&lt;br&gt;ORDER BY timestamp DESC
&lt;br&gt;LIMIT 1 
&lt;br&gt;&lt;br&gt;If I have an index(blockid),
&lt;br&gt;EXPLAIN will return the following information:
&lt;br&gt;&lt;br&gt;type 	possible_keys 	key &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;rows 	Extra
&lt;br&gt;ref 	index_blockid 	index_blockid &amp;nbsp; &amp;nbsp; 2638 	Using where; Using filesort
&lt;br&gt;&lt;br&gt;If I add an index(blockid,timestamp)
&lt;br&gt;EXPLAIN will display the following:
&lt;br&gt;&lt;br&gt;type 	possible_keys 	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; key &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;rows 	Extra
&lt;br&gt;ref 	index_blockid,index_blockid_timestamp &amp;nbsp; &amp;nbsp;index_blockid_timestamp &amp;nbsp; &amp;nbsp;8248 	Using where; Using index
&lt;br&gt;&lt;br&gt;&lt;br&gt;Why for the index(blockid) 2638 rows are returned and for a more specific index(blockid,timestamp) 8248 rows are returned ?
&lt;br&gt;&lt;br&gt;Thank you for any answer !
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Optimising-query-question%2C-EXPLAIN-SELECT-...-tp20688051p20688051.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20645325</id>
	<title>auto_increment field</title>
	<published>2008-11-23T03:35:45Z</published>
	<updated>2008-11-23T03:35:45Z</updated>
	<author>
		<name>googerdi</name>
	</author>
	<content type="html">I want to use value of auto_increment column and combine it with an string and save it.
&lt;br&gt;Is there any solution in that i don't mark any column as auto_increment but use the value of it when inserting a new row.&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/auto_increment-field-tp20645325p20645325.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20580776</id>
	<title>RE: MS Access</title>
	<published>2008-11-19T06:21:54Z</published>
	<updated>2008-11-19T06:21:54Z</updated>
	<author>
		<name>RonB</name>
	</author>
	<content type="html">I have finally solved my problem.
&lt;br&gt;&lt;br&gt;'ODBC' needs to be inserted into the connection string.
&lt;br&gt;&lt;br&gt;&lt;br&gt;My cfinal onnections string is:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LINK_MYSQL = &amp;quot;ODBC; DRIVER={MySQL ODBC 3.51 Driver};
&lt;br&gt;Server=&lt;a href=&quot;http://www.###.co.uk;&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.###.co.uk;&lt;/a&gt;&amp;nbsp;UID=###;PWD=###;Option=16387;database=###&amp;quot;
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---ODBC-f21.html&quot; embed=&quot;fixTarget[21]&quot; target=&quot;_top&quot; &gt;MySQL - ODBC&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/MS-Access-tp17802549p20580776.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20577373</id>
	<title>Re: Index or trigger</title>
	<published>2008-11-19T02:49:37Z</published>
	<updated>2008-11-19T02:49:37Z</updated>
	<author>
		<name>ngaymoi</name>
	</author>
	<content type="html">Go for the index
&lt;br&gt;&lt;br&gt;See example below
&lt;br&gt;&lt;a href=&quot;http://www.sieuthi77.com/main/nhakhoa.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nha khoa&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.sieuthi77.com/main/mainpage.aspx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gia cong nhua&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.sieuthi77.com/main/mainpage.aspx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nhua&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.sieuthi77.com/main/mainpage.aspx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gia cong chi tiet&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.sieuthi77.com/main/mainpage.aspx&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;khuon mau&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.sieuthi77.com/thietkeweb&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thiet ke web&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.thaituongthinh.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;do dung cho be&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Index-or-trigger-tp20577356p20577373.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20577356</id>
	<title>Index or trigger</title>
	<published>2008-11-19T02:48:34Z</published>
	<updated>2008-11-19T02:48:34Z</updated>
	<author>
		<name>nhakhoa</name>
	</author>
	<content type="html">&lt;br&gt;I have about 30 look up tables which contain the options for various values to be displayed to the users. Those tables will have lot of SELECT queries but very few INSERT or UPDATE queries. 
&lt;br&gt;That being the case, am i better off having a unique index on the options or have a 'before-insert' trigger for that table which checks for unique values? 
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Index-or-trigger-tp20577356p20577356.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20475219</id>
	<title>Select top three results from different catagories</title>
	<published>2008-11-12T22:00:40Z</published>
	<updated>2008-11-12T22:00:40Z</updated>
	<author>
		<name>ngaymoi</name>
	</author>
	<content type="html">I post detail at Software &lt;a href=&quot;http://www.sieuthi77.com/main/nhakhoa.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nha khoa&lt;/a&gt;&amp;nbsp;Group
&lt;br&gt;&amp;nbsp;I cannot seem to get this to work. I have a table full of hockey teams records that I need to get the top three teams based on points but each team of the top three has to be from a different division.
&lt;br&gt;&lt;br&gt;Here is an example:
&lt;br&gt;&lt;br&gt;Table: Teams
&lt;br&gt;&lt;br&gt;TEAM | POINTS | DIVISION
&lt;br&gt;T#1 25 DIV#1
&lt;br&gt;T#2 23 DIV#1
&lt;br&gt;T#3 30 DIV#2
&lt;br&gt;T#4 12 DIV#2
&lt;br&gt;T#5 26 DIV#3
&lt;br&gt;T#6 27 DIV#3
&lt;br&gt;&lt;br&gt;The result should look like this:
&lt;br&gt;1. T#3 
&lt;br&gt;2. T#6
&lt;br&gt;3. T#1
&lt;br&gt;&lt;br&gt;Not look like this:
&lt;br&gt;1. T#3
&lt;br&gt;2. T#6
&lt;br&gt;3. T#5
&lt;br&gt;&lt;br&gt;Anybody have an idea what a select statement would look like for this?
&lt;br&gt;&lt;br&gt;Thanks is advance! &lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Select-top-three-results-from-different-catagories-tp20475219p20475219.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20354705</id>
	<title>Re: Sum with Join</title>
	<published>2008-11-05T19:55:17Z</published>
	<updated>2008-11-05T19:55:17Z</updated>
	<author>
		<name>BargainPredator</name>
	</author>
	<content type="html">You should try this :
&lt;br&gt;&lt;br&gt;SELECT BirthMonth, sum(Age) as totalAge, sum(itemCount.cnt) AS numitems
&lt;br&gt;FROM People
&lt;br&gt;LEFT JOIN (SELECT person_id, count(*) &amp;nbsp;AS cnt FROM Items GROUP BY person_id) AS itemCount ON People.ID = itemCount.person_id
&lt;br&gt;WHERE People.Age &amp;gt; 10
&lt;br&gt;GROUP BY BirthMonth			
&lt;br&gt;&lt;div class=&quot;signature&quot;&gt;&lt;a href=&quot;http://www.bargain-predator.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Bargain-Predator.com&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Sum-with-Join-tp19920953p20354705.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20338547</id>
	<title>Training &amp; jobs</title>
	<published>2008-11-05T01:34:18Z</published>
	<updated>2008-11-05T01:34:18Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---.NET-f23.html&quot; embed=&quot;fixTarget[23]&quot; target=&quot;_top&quot; &gt;MySQL - .NET&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp20338547p20338547.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20338528</id>
	<title>Training &amp; jobs</title>
	<published>2008-11-05T01:32:41Z</published>
	<updated>2008-11-05T01:32:41Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp20338528p20338528.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20338519</id>
	<title>Training &amp; jobs</title>
	<published>2008-11-05T01:31:44Z</published>
	<updated>2008-11-05T01:31:44Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Java-f20.html&quot; embed=&quot;fixTarget[20]&quot; target=&quot;_top&quot; &gt;MySQL - Java&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp20338519p20338519.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20338510</id>
	<title>Training &amp; jobs</title>
	<published>2008-11-05T01:30:27Z</published>
	<updated>2008-11-05T01:30:27Z</updated>
	<author>
		<name>KiranUS</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FREE TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FOOD ACCOMODATION 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; H1B PROCESSING 
&lt;br&gt;FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXCELLENT OPPRTUNITIES 
&lt;br&gt;&amp;nbsp;	TRAINING 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are 
&lt;br&gt;of utmost importance. Our highly skilled and dedicated instructors 
&lt;br&gt;train you explicitly in market-related technologies for today and 
&lt;br&gt;tomorrow. We will work with you in developing marketing strategies 
&lt;br&gt;and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting 
&lt;br&gt;careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;&amp;nbsp; &amp;nbsp;Excellent communication skills. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp;(EAD, GC). 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Preferably (not mandatory) Master's Degree in Computers/ 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Electronics or previous IT experience. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Willing to relocate anywhere in USA.
&lt;br&gt;&lt;br&gt;What’s The Deal: 
&lt;br&gt;&amp;nbsp; &amp;nbsp;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Green Card sponsorship through PERM 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Job focused professional training in 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Java/ J2EE 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; .NET 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Documentum 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Share point 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Oracle 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Data Modeling 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Relocation assistance- airfare, hotel accommodation, car rental 
&lt;br&gt;&amp;nbsp; &amp;nbsp;etc 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Guarantee lowest bench period. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Employee referral program. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;&amp;nbsp; &amp;nbsp;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us 
&lt;br&gt;at:609-843-0312 
&lt;br&gt;or 
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---C%2B%2B-f749.html&quot; embed=&quot;fixTarget[749]&quot; target=&quot;_top&quot; &gt;MySQL - C++&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp20338510p20338510.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20222447</id>
	<title>Can't get a third table in MySQL database to work?</title>
	<published>2008-10-29T01:10:08Z</published>
	<updated>2008-10-29T01:10:08Z</updated>
	<author>
		<name>ngaymoi</name>
	</author>
	<content type="html">I see the question on &lt;a href=&quot;http://www.sieuthi77.com/main/nhakhoa.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nha khoa&lt;/a&gt;&amp;nbsp;Software group
&lt;br&gt;&lt;br&gt;This sounds mad, but I've created two tables in a MySQl database into which I can insert data via php pages and display the contents. I've created a third with the same structure, but it just doesn't work - the php pages are just blank and no information is being inserted. I've tried renaming the table, restructuring it, dropping it and starting again but it refuses to cooperate. It's as though MySQL KNOWS what I'm trying to do and is just being bloody-minded. Could there some sort of caching going on either at my sever or on my computer which is preventing me updating the database? Has this happened to anyone else?
&lt;br&gt;&lt;br&gt;More questions about Database are post here: support of &lt;a href=&quot;http://www.sieuthi77.com/main/nhakhoa.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nha khoa&lt;/a&gt;&amp;nbsp;Software group
&lt;br&gt;&lt;br&gt;Any one can help them?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Can%27t-get-a-third-table-in-MySQL-database-to-work--tp20222447p20222447.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20097845</id>
	<title>MySQL DBA Job Opportunity (100% Telecommute)</title>
	<published>2008-10-21T12:45:37Z</published>
	<updated>2008-10-21T12:45:37Z</updated>
	<author>
		<name>eQuest Solutions</name>
	</author>
	<content type="html">Do you have at least 2-5+ years experience administering mission critical MySQL databases, including HA and replication (a MUST HAVE)? If you have this experience, please read the job description/requirements below carefully. &amp;nbsp;If you are a fit and are interested, then please send me an updated resume that details this necessary experience (including your MySQL HA and redundancy experience) to al@equestsolutions.com and then I will call you to tell you all about the company, position and team.
&lt;br&gt;&lt;br&gt;If you are not a fit or are not interested, I was hoping you could help me out and refer me to any MySQL DBA’s or or PHP Developers that you have worked with or know of that would be interested in the following positions I have available. See below for detailed job descriptions. If you prefer, please visit www.equestsolutions.com for all open positions. Based on your outstanding experience, I would like to keep your resume and contact you when I come across something else you maybe interested in.
&lt;br&gt;&lt;br&gt;MySQL DBA
&lt;br&gt;Location: 	Westlake Village or Irvine, CA or Telecommuting
&lt;br&gt;Salary:		$90-150K DOE
&lt;br&gt;&lt;br&gt;A profitable two year startup is looking for a MySQL DBA. The MySQL DBA will be responsible for the administration of 2 MySQL v5.0 databases in InnoDB mode running on RHES v4.x in production/QA/dev environments. Administration will include installation, configuration, monitoring, optimization, tuning, troubleshooting, backup, recovery and upgrades. Due to consistent growth, the company plans to increase the database environment from 2 MySQL Databases with 1 million rows/100 tables and 5gigs of data handling 5 txn/sec to 6-8 MySQL Databases with 100 million rows/200 tables and 200+ gigs of data handling 100 txn/sec. The MySQL DBA will also be responsible for designing, implementing and supporting a formal High Availability (HA) and Redundant solution, preferably based on DRBD (Distributed Raw Block Device). Furthermore, the MySQL DBA will be responsible for implementing a formal backup and recovery solution and process. DBA will also be responsible for optimizing schemas, queries and indexes, tuning for mission critical OO Perl applications, quickly diagnose database and server problems and employ preventive measures to maintain high availability servers and mentoring OO Perl software engineers to develop applications that interact with MySQL. Initially, position may not require 100% DBA work, thus, candidate, depending on background, may be asked to performing Linux systems administration, networking and/or Perl development.
&lt;br&gt;Position reports to Director of Systems Operations
&lt;br&gt;&lt;br&gt;Company will send DBA to any specific MySQL training if needed.
&lt;br&gt;&lt;br&gt;REQUIREMENTS:
&lt;br&gt;MUST HAVE 2-5+ yrs of MySQL DBA experience, with at least some experience in a 24X7 mission critical environment MUST HAVE experience implementing a MySQL HA and Redundant solution with MySQL DRBD (preferred), MySQL Cluster and/or MySQL Replication Experience optimizing and tuning high volume MySQL Databases Monitoring MySQL databases using Nagios, Cacti or any other open source tool Scripting to automate database administration functions (Perl, Python, PHP and/or shell)
&lt;br&gt;Pluses:
&lt;br&gt;Experience in InnoDB Mode
&lt;br&gt;Experience performing Linux administration, networking and/or Perl development Experience with PostgreSQL Experience working within a NetApp environment
&lt;br&gt;&lt;br&gt;With your resume submittal, please answer the following
&lt;br&gt;questions:
&lt;br&gt;&lt;br&gt;Are you a U.S. citizen or green card or EAD holder or H1 Visa holder? 
&lt;br&gt;&lt;br&gt;Do you prefer a permanent or contract position?
&lt;br&gt;&lt;br&gt;What is your current base salary or contract rate (W-2 or 1099)?
&lt;br&gt;&lt;br&gt;What salary or contract range are you considering (please do not respond *negotiable* or similar).
&lt;br&gt;&lt;br&gt;Why did you leave your last 3 employers?
&lt;br&gt;&lt;br&gt;If you do not live in southern CA, are you able to relocate yourself for a permanent position?&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Community-f754.html&quot; embed=&quot;fixTarget[754]&quot; target=&quot;_top&quot; &gt;MySQL - Community&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/MySQL-DBA-Job-Opportunity-%28100--Telecommute%29-tp20097845p20097845.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19920953</id>
	<title>Sum with Join</title>
	<published>2008-10-10T08:51:09Z</published>
	<updated>2008-10-10T08:51:09Z</updated>
	<author>
		<name>skimber</name>
	</author>
	<content type="html">Hi Everyone,
&lt;br&gt;&lt;br&gt;I'm trying to pull data out of two tables using a left join, while doing a sum on a column in the main table. &amp;nbsp;However when the left join links to multiple records the sum is incorrect as duplicate rows are returned.
&lt;br&gt;&lt;br&gt;For example... &amp;nbsp;here's a made-up data structure:
&lt;br&gt;&lt;br&gt;Table: People
&lt;br&gt;ID, Name, Age, BirthMonth
&lt;br&gt;1, John, 25, Jan
&lt;br&gt;2, Fred, 72, Feb
&lt;br&gt;3, Dave, 15, Jan
&lt;br&gt;&lt;br&gt;Table: Items
&lt;br&gt;ID, person_id, itemname
&lt;br&gt;1, 1, Wallet
&lt;br&gt;2, 1, Spectacles
&lt;br&gt;3, 3, Playstation
&lt;br&gt;&lt;br&gt;If I carry out the following query:
&lt;br&gt;&lt;br&gt;SELECT BirthMonth, sum(Age) as totalAge, count(Items.ID) AS numitems
&lt;br&gt;FROM People
&lt;br&gt;LEFT JOIN Items ON People.ID = Items.person_id
&lt;br&gt;WHERE People.Age &amp;gt; 10
&lt;br&gt;GROUP BY BirthMonth
&lt;br&gt;&lt;br&gt;It returns the following result:
&lt;br&gt;&lt;br&gt;BirthMonth, totalAge, numitems &amp;nbsp;
&lt;br&gt;Feb, 72, 0 
&lt;br&gt;Jan, 65, 3 
&lt;br&gt;&lt;br&gt;... and John's age is counted twice because he has two Items.
&lt;br&gt;&lt;br&gt;&lt;br&gt;If I try the following query, using a sub-query (something that I'm quite new to doing!):
&lt;br&gt;&lt;br&gt;SELECT BirthMonth, sum(Age) as totalAge, 
&lt;br&gt;(SELECT count(*) FROM Items WHERE person_id = People.ID) AS numitems
&lt;br&gt;FROM People
&lt;br&gt;WHERE People.Age &amp;gt; 10
&lt;br&gt;GROUP BY BirthMonth
&lt;br&gt;&lt;br&gt;&lt;br&gt;... then I get the following result:
&lt;br&gt;&lt;br&gt;BirthMonth, totalAge, numitems &amp;nbsp;
&lt;br&gt;Feb, 72, 0 
&lt;br&gt;Jan, 40, 2 
&lt;br&gt;&lt;br&gt;... when numitems should be 3, but obviously that doesn't work because I'm using person_id in my sub-query.
&lt;br&gt;&lt;br&gt;Can anyone suggest how I should be going about this problem?
&lt;br&gt;&lt;br&gt;I'm running MySQL 5.0.51 and have included the data structure from my example below.
&lt;br&gt;&lt;br&gt;Any help or advice would be very much appreciated! 
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;&lt;br&gt;Simon
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;CREATE TABLE `Items` (
&lt;br&gt;&amp;nbsp; `ID` int(11) NOT NULL auto_increment,
&lt;br&gt;&amp;nbsp; `person_id` int(11) NOT NULL,
&lt;br&gt;&amp;nbsp; `itemname` varchar(50) NOT NULL,
&lt;br&gt;&amp;nbsp; PRIMARY KEY &amp;nbsp;(`ID`)
&lt;br&gt;);
&lt;br&gt;&lt;br&gt;INSERT INTO `Items` VALUES (1, 1, 'Wallet');
&lt;br&gt;INSERT INTO `Items` VALUES (2, 1, 'Spectacles');
&lt;br&gt;INSERT INTO `Items` VALUES (3, 3, 'Playstation');
&lt;br&gt;&lt;br&gt;CREATE TABLE `People` (
&lt;br&gt;&amp;nbsp; `ID` int(11) NOT NULL auto_increment,
&lt;br&gt;&amp;nbsp; `Name` varchar(25) NOT NULL,
&lt;br&gt;&amp;nbsp; `Age` int(11) NOT NULL,
&lt;br&gt;&amp;nbsp; `BirthMonth` varchar(10) NOT NULL,
&lt;br&gt;&amp;nbsp; PRIMARY KEY &amp;nbsp;(`ID`)
&lt;br&gt;);
&lt;br&gt;&lt;br&gt;INSERT INTO `People` VALUES (1, 'John', 25, 'Jan');
&lt;br&gt;INSERT INTO `People` VALUES (2, 'Fred', 72, 'Feb');
&lt;br&gt;INSERT INTO `People` VALUES (3, 'Dave', 15, 'Jan');
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Sum-with-Join-tp19920953p19920953.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19914772</id>
	<title>how to count rows grouped by a date?</title>
	<published>2008-10-10T02:12:47Z</published>
	<updated>2008-10-10T02:12:47Z</updated>
	<author>
		<name>vdite</name>
	</author>
	<content type="html">hi,
&lt;br&gt;&lt;br&gt;i have red about Group by and Count and tried to count rows, which are created at a special Day
&lt;br&gt;&lt;br&gt;SELECT YEAR(mydate) AS year, MONTH(mydate) AS month, COUNT(*) AS '#edits' FROM mytable GROUP BY YEAR(mydate), MONTH(mydate), DAY(mydate)
&lt;br&gt;&lt;br&gt;but what i get, is wrong
&lt;br&gt;&lt;br&gt;year 	 &amp;nbsp; &amp;nbsp;month 	#edits
&lt;br&gt;2008 	9 	97
&lt;br&gt;2008 	9 	15
&lt;br&gt;2008 	10 	16
&lt;br&gt;2008 	10 	2
&lt;br&gt;2008 	10 	9
&lt;br&gt;&lt;br&gt;why it does show me same month twice?&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/how-to-count-rows-grouped-by-a-date--tp19914772p19914772.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19621949</id>
	<title>Training &amp; jobs</title>
	<published>2008-09-22T23:21:13Z</published>
	<updated>2008-09-22T23:21:13Z</updated>
	<author>
		<name>KiranGupta</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;FREE TRAINING 
&lt;br&gt;FOOD ACCOMODATION 
&lt;br&gt;H1B PROCESSING 	FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;EXCELLENT OPPRTUNITIES 
&lt;br&gt;TRAINING 
&lt;br&gt;PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;Excellent communication skills. 
&lt;br&gt;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status (EAD, GC). 
&lt;br&gt;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;Preferably (not mandatory) Master's Degree in Computers/ Electronics or previous IT experience. 
&lt;br&gt;Willing to relocate anywhere in USA. 
&lt;br&gt;What’s The Deal: 
&lt;br&gt;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;Green Card sponsorship through PERM 
&lt;br&gt;Job focused professional training in 
&lt;br&gt;Java/ J2EE 
&lt;br&gt;.NET 
&lt;br&gt;Documentum 
&lt;br&gt;Share point 
&lt;br&gt;Oracle 
&lt;br&gt;Data Modeling 
&lt;br&gt;Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;Guarantee lowest bench period. 
&lt;br&gt;Employee referral program. 
&lt;br&gt;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us at:609-843-0312 
&lt;br&gt;or 		
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp19621949p19621949.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19621932</id>
	<title>Training &amp; jobs</title>
	<published>2008-09-22T23:19:40Z</published>
	<updated>2008-09-22T23:19:40Z</updated>
	<author>
		<name>KiranGupta</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;FREE TRAINING 
&lt;br&gt;FOOD ACCOMODATION 
&lt;br&gt;H1B PROCESSING 	FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;EXCELLENT OPPRTUNITIES 
&lt;br&gt;TRAINING 
&lt;br&gt;PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;Excellent communication skills. 
&lt;br&gt;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status (EAD, GC). 
&lt;br&gt;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;Preferably (not mandatory) Master's Degree in Computers/ Electronics or previous IT experience. 
&lt;br&gt;Willing to relocate anywhere in USA. 
&lt;br&gt;What’s The Deal: 
&lt;br&gt;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;Green Card sponsorship through PERM 
&lt;br&gt;Job focused professional training in 
&lt;br&gt;Java/ J2EE 
&lt;br&gt;.NET 
&lt;br&gt;Documentum 
&lt;br&gt;Share point 
&lt;br&gt;Oracle 
&lt;br&gt;Data Modeling 
&lt;br&gt;Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;Guarantee lowest bench period. 
&lt;br&gt;Employee referral program. 
&lt;br&gt;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us at:609-843-0312 
&lt;br&gt;or 		
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Community-f754.html&quot; embed=&quot;fixTarget[754]&quot; target=&quot;_top&quot; &gt;MySQL - Community&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp19621932p19621932.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19621922</id>
	<title>Training &amp; jobs</title>
	<published>2008-09-22T23:18:15Z</published>
	<updated>2008-09-22T23:18:15Z</updated>
	<author>
		<name>KiranGupta</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;FREE TRAINING 
&lt;br&gt;FOOD ACCOMODATION 
&lt;br&gt;H1B PROCESSING 	FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;EXCELLENT OPPRTUNITIES 
&lt;br&gt;TRAINING 
&lt;br&gt;PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;Excellent communication skills. 
&lt;br&gt;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status (EAD, GC). 
&lt;br&gt;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;Preferably (not mandatory) Master's Degree in Computers/ Electronics or previous IT experience. 
&lt;br&gt;Willing to relocate anywhere in USA. 
&lt;br&gt;What’s The Deal: 
&lt;br&gt;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;Green Card sponsorship through PERM 
&lt;br&gt;Job focused professional training in 
&lt;br&gt;Java/ J2EE 
&lt;br&gt;.NET 
&lt;br&gt;Documentum 
&lt;br&gt;Share point 
&lt;br&gt;Oracle 
&lt;br&gt;Data Modeling 
&lt;br&gt;Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;Guarantee lowest bench period. 
&lt;br&gt;Employee referral program. 
&lt;br&gt;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us at:609-843-0312 
&lt;br&gt;or 		
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---C%2B%2B-f749.html&quot; embed=&quot;fixTarget[749]&quot; target=&quot;_top&quot; &gt;MySQL - C++&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp19621922p19621922.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19621909</id>
	<title>Training &amp; jobs</title>
	<published>2008-09-22T23:16:51Z</published>
	<updated>2008-09-22T23:16:51Z</updated>
	<author>
		<name>KiranGupta</name>
	</author>
	<content type="html">“Join us to make future”
&lt;br&gt;FOR OPT/F-1 STUDENTS
&lt;br&gt;FREE TRAINING 
&lt;br&gt;FOOD ACCOMODATION 
&lt;br&gt;H1B PROCESSING 	FOR L1/ L2/ H1/ H4/ EAD/ GC 
&lt;br&gt;EXCELLENT OPPRTUNITIES 
&lt;br&gt;TRAINING 
&lt;br&gt;PLACEMENT 
&lt;br&gt;Highly Competitive offers for New H1b Transfers
&lt;br&gt;About Us:
&lt;br&gt;V2 technology inc is serving NJ since 2005, for us our employees are of utmost importance. Our highly skilled and dedicated instructors train you explicitly in market-related technologies for today and tomorrow. We will work with you in developing marketing strategies and finding the assignments of your choice.
&lt;br&gt;We not only help you get a job but we build your long lasting careers!!! 
&lt;br&gt;What are we Looking for:
&lt;br&gt;Excellent communication skills. 
&lt;br&gt;Valid F1/ OPT/ CPT/ H1/ H4/ L1 or valid work status (EAD, GC). 
&lt;br&gt;Bachelors’ degree in CS/ IT or previous IT experience. 
&lt;br&gt;Preferably (not mandatory) Master's Degree in Computers/ Electronics or previous IT experience. 
&lt;br&gt;Willing to relocate anywhere in USA. 
&lt;br&gt;What’s The Deal: 
&lt;br&gt;H1-B sponsorship to F1/ OPT/ H4/ L1/ L2/ E3/ EAD 
&lt;br&gt;Transfer of H1 &amp; L1 visas. 
&lt;br&gt;Green Card sponsorship through PERM 
&lt;br&gt;Job focused professional training in 
&lt;br&gt;Java/ J2EE 
&lt;br&gt;.NET 
&lt;br&gt;Documentum 
&lt;br&gt;Share point 
&lt;br&gt;Oracle 
&lt;br&gt;Data Modeling 
&lt;br&gt;Relocation assistance- airfare, hotel accommodation, car rental etc 
&lt;br&gt;Guarantee lowest bench period. 
&lt;br&gt;Employee referral program. 
&lt;br&gt;Effective Resume writing help, Marketing and Placement. 
&lt;br&gt;Technical mock interviews. Preparation of In Person Interviews 
&lt;br&gt;100% Guaranteed placement 
&lt;br&gt;Get in Touch:
&lt;br&gt;Contact immediately to know more about the opportunities with us at:609-843-0312 
&lt;br&gt;or 		
&lt;br&gt;write mail at jobs@v2techinc.com
&lt;br&gt;Contact person : John
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Java-f20.html&quot; embed=&quot;fixTarget[20]&quot; target=&quot;_top&quot; &gt;MySQL - Java&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Training---jobs-tp19621909p19621909.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19567363</id>
	<title>Navicat for MySQL v.8.0.28 is now available</title>
	<published>2008-09-19T00:16:23Z</published>
	<updated>2008-09-19T00:16:23Z</updated>
	<author>
		<name>samnav</name>
	</author>
	<content type="html">PremiumSoft CyberTech Limited today announced the immediate availability of Navicat for MySQL v.8.0.28. This new version supports MySQL 5.1 new feature Scheduled Event, enabling users to set a schedule for any Event defined in MySQL. Navicat v.8.0.28 also allows Virtual Grouping which provides better categorization for objects. A significant change has also been made to the Form View, which now shows a clearer display of fieldname and its value with focus on current record.
&lt;br&gt;&lt;br&gt;Code Completion is introduced to this new version of Navicat which makes SQL scripting faster than before. In addition, users can now open profile on their desktop directly with the new Profile System. Enhanced Report Printing feature allows user to print report to PDF, HTML and more. Email can also be sent to notify the users upon the completion of the scheduled task.
&lt;br&gt;&lt;br&gt;Other enhancements include the compatibility with any MySQL server version up to 5.1.X, Incremental Search in Table View, usability enhancement in Table Design and many other improvements on features and user-friendliness. 
&lt;br&gt;&lt;br&gt;More information on Navicat for MySQL is available online at &lt;a href=&quot;http://www.navicat.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.navicat.com&lt;/a&gt;&amp;nbsp;, or downloads a 30-day free trial at &lt;a href=&quot;http://www.navicat.com/download.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.navicat.com/download.html&lt;/a&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---GUI-Tools-f19.html&quot; embed=&quot;fixTarget[19]&quot; target=&quot;_top&quot; &gt;MySQL - GUI Tools&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Navicat-for-MySQL-v.8.0.28-is-now-available-tp19567363p19567363.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19358615</id>
	<title>tt</title>
	<published>2008-09-07T07:33:45Z</published>
	<updated>2008-09-07T07:33:45Z</updated>
	<author>
		<name>kanlou</name>
	</author>
	<content type="html">&lt;a href=&quot;http://www.nabble.com/file/p19358615/7861743_10372996.jpg&quot; target=&quot;_top&quot;&gt;7861743_10372996.jpg&lt;/a&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/tt-tp19358615p19358615.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19182538</id>
	<title>Replication Master-Master, rebooting one of them</title>
	<published>2008-08-27T07:44:48Z</published>
	<updated>2008-08-27T07:44:48Z</updated>
	<author>
		<name>Paolo Serafino Via</name>
	</author>
	<content type="html">Hi to you all,
&lt;br&gt;as in the title, i've set up a replication system master-master. All works good but i need to reboot a machine. Can i do this operation safely and without risk??
&lt;br&gt;thank you, regards
&lt;br&gt;Paolo&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Replication-f16.html&quot; embed=&quot;fixTarget[16]&quot; target=&quot;_top&quot; &gt;MySQL - Replication&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Replication-Master-Master%2C-rebooting-one-of-them-tp19182538p19182538.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19154114</id>
	<title>[JOB OPP] MySQL DBA (Location: Silicon Valley)</title>
	<published>2008-08-25T17:45:56Z</published>
	<updated>2008-09-04T11:52:57Z</updated>
	<author>
		<name>tracieg</name>
	</author>
	<content type="html">BayTSP is seeking a talented DBA to manage the day to day operations of the MySQL Databases. This is an excellent opportunity for an experienced DBA or DB Developer who is looking for a new challenge and an opportunity for growth.
&lt;br&gt;&lt;br&gt;Responsibilities
&lt;br&gt;&lt;br&gt;* Oversee production databases and data warehouse systems within a fast-paced high availability 24/7 environment
&lt;br&gt;* Manage MySQL database in production environment including installation, configuration, backup, and performance tuning
&lt;br&gt;* Prepare project plans and report weekly on progress and deliverables &amp;nbsp;
&lt;br&gt;* Optimize the data structures to enhance data load times and end-user data access response times
&lt;br&gt;* Responsible for automation in deployment/migration, monitoring and reporting
&lt;br&gt;* Create and maintain internal processes to ensure data quality, availability and scalability
&lt;br&gt;&lt;br&gt;Requirements
&lt;br&gt;&lt;br&gt;* Solid DBA experience with 1+ yr of MySQL-related experience
&lt;br&gt;* Strong scripting experience (e.g., perl, Python, shell, etc)
&lt;br&gt;* Experience with Linux administration is a plus
&lt;br&gt;* Ability to work in a team-oriented environment
&lt;br&gt;* Comfortable working in a fast-paced environment and has a &amp;quot;can-do&amp;quot; attitude
&lt;br&gt;* Excellent problem solving and troubleshooting skills
&lt;br&gt;* Good communications skills
&lt;br&gt;* Attention to detail
&lt;br&gt;* Strong documentation proficiency
&lt;br&gt;&lt;br&gt;&lt;b&gt;*** TO APPLY: to expedite the application process, please email your resume and cover letter to tracieg [AT] baytsp [DOT] com&lt;/b&gt;&lt;br&gt;*** 3rd party/agency resumes are *not* accepted.
&lt;br&gt;&lt;br&gt;About BayTSP
&lt;br&gt;-------------------
&lt;br&gt;Founded in 1999, BayTSP offers a revolutionary way for digital content owners to track down their valuable online property, in order to effectively deter its theft and misuse. &amp;nbsp;Our company has designed an entire suite of proprietary file branding and tracking applications. &amp;nbsp;BayTSP provides online copyright monitoring and enforcement services for the entertainment industry, software and videogame makers and the publishing industry. &amp;nbsp;Our headquarters is located in Los, Gatos, CA.&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Community-f754.html&quot; embed=&quot;fixTarget[754]&quot; target=&quot;_top&quot; &gt;MySQL - Community&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-JOB-OPP--MySQL-DBA-%28Location%3A-Silicon-Valley%29-tp19154114p19154114.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19068191</id>
	<title>How to evaluate my SQL database design?</title>
	<published>2008-08-20T05:17:54Z</published>
	<updated>2008-08-20T05:17:54Z</updated>
	<author>
		<name>Abe amer</name>
	</author>
	<content type="html">Actually I'm searching for an answer to the question...When I design a database using SQL..how can I evaluate this design? how can I judge that my design is better than other people design (specially when I'm writting a paper that compare my design to the Hippocratic design)?
&lt;br&gt;&lt;br&gt;I'd be very grateful if any one could help me in this question.. Thank you in advance &lt;img class='smiley' src='http://www.nabble.com/images/smiley/anim_handshake.gif' /&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-evaluate-my-SQL-database-design--tp19068191p19068191.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18974649</id>
	<title>Missing tables. Rebuilding</title>
	<published>2008-08-13T19:13:11Z</published>
	<updated>2008-08-13T19:13:11Z</updated>
	<author>
		<name>contiw</name>
	</author>
	<content type="html">For some inscrutable God design some tables have disappeared leaving only the .frm file, and as as a good boob newb I do not have the latest tables creation routine. &amp;nbsp;Are the .frm files of any use to recreate the tables?
&lt;br&gt;&lt;br&gt;Also: I have a &amp;quot;c:\MySql Datafiles\ibdata1&amp;quot; with a date that could correspond to the latest I have used the database. There is no file ext. What is it? Could it help?
&lt;br&gt;&lt;br&gt;Please bear with me. Thanks for the help.&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Missing-tables.-Rebuilding-tp18974649p18974649.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18885645</id>
	<title>How to run this SQL query - Ignore my previous post</title>
	<published>2008-08-07T22:21:35Z</published>
	<updated>2008-08-07T22:21:35Z</updated>
	<author>
		<name>toutiao</name>
	</author>
	<content type="html">Friends, 
&lt;br&gt;&lt;br&gt;I have a legacy table of this form: 
&lt;br&gt;&lt;br&gt;Time &amp;nbsp; ValueType &amp;nbsp; Value 
&lt;br&gt;0:00 &amp;nbsp; A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 
&lt;br&gt;0:00 &amp;nbsp; B &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2 
&lt;br&gt;1:00 &amp;nbsp; A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11 
&lt;br&gt;1:00 &amp;nbsp; B &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 22 
&lt;br&gt;&lt;br&gt;It is not very well designed since each batch of value A and B are always sampled as the same time (0:00, then 1:00). 
&lt;br&gt;&lt;br&gt;How can I run a query to return a result like this? 
&lt;br&gt;&lt;br&gt;Time &amp;nbsp; Value (for ValueType A) &amp;nbsp; Value For (ValueType B) 
&lt;br&gt;0:00 &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2 
&lt;br&gt;1:00 &amp;nbsp; 11 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;22 
&lt;br&gt;&lt;br&gt;Many thanks in advance! 
&lt;br&gt;Toutiao &lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-run-this-SQL-query---Ignore-my-previous-post-tp18885645p18885645.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18885629</id>
	<title>Re: How to run this SQL query</title>
	<published>2008-08-07T22:19:38Z</published>
	<updated>2008-08-07T22:19:38Z</updated>
	<author>
		<name>toutiao</name>
	</author>
	<content type="html">See if I can get the format right this time:
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;toutiao wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Friends,
&lt;br&gt;&lt;br&gt;I have a legacy table of this form:
&lt;br&gt;&lt;br&gt;Time &amp;nbsp; ValueType &amp;nbsp; Value
&lt;br&gt;0:00 &amp;nbsp; A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1
&lt;br&gt;0:00 &amp;nbsp; B &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2
&lt;br&gt;1:00 &amp;nbsp; A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11
&lt;br&gt;1:00 &amp;nbsp; B &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 22
&lt;br&gt;&lt;br&gt;It is not very well designed since each batch of value A and B are always sampled as the same time (0:00, then 1:00).
&lt;br&gt;&lt;br&gt;How can I run a query to return a result like this?
&lt;br&gt;&lt;br&gt;Time &amp;nbsp; Value (for ValueType A) &amp;nbsp; Value For (ValueType B)
&lt;br&gt;0:00 &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2
&lt;br&gt;1:00 &amp;nbsp; 11 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;22
&lt;br&gt;&lt;br&gt;Many thanks in advance!
&lt;br&gt;Toutiao
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-run-this-SQL-query-tp18885616p18885629.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18885616</id>
	<title>How to run this SQL query</title>
	<published>2008-08-07T22:17:21Z</published>
	<updated>2008-08-07T22:17:21Z</updated>
	<author>
		<name>toutiao</name>
	</author>
	<content type="html">Friends,

I have a legacy table of this form:

Time   ValueType   Value
0:00   A               1
0:00   B               2
1:00   A               11
1:00   B               22

It is not very well designed since each batch of value A and B are always sampled as the same time (0:00, then 1:00).

How can I run a query to return a result like this?

Time   Value (for ValueType A)   Value For (ValueType B)
0:00   1                                  2
1:00   11                                22

Many thanks in advance!
Toutiao&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---General-f14.html&quot; embed=&quot;fixTarget[14]&quot; target=&quot;_top&quot; &gt;MySQL - General&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-run-this-SQL-query-tp18885616p18885616.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18648272</id>
	<title>Re: MySQL JDBC + prepared statements -&gt; plain SQL in log</title>
	<published>2008-07-25T02:27:09Z</published>
	<updated>2008-07-25T02:27:09Z</updated>
	<author>
		<name>robs888</name>
	</author>
	<content type="html">Try with these params in your connection URL:
&lt;br&gt;&lt;br&gt;useServerPrepStmts=true (default is false)
&lt;br&gt;emulateUnsupportedPstmts=false (default is true)
&lt;br&gt;&lt;br&gt;and your log will show this:
&lt;br&gt;&lt;br&gt;3 Prepare [2] SELECT * FROM users WHERE SourceId=?
&lt;br&gt;3 Prepare [3] INSERT INTO users (UserId,FirstName,MiddleInitial,LastName,...) VALUES (?,?,?,?,...)
&lt;br&gt;&lt;br&gt;3 Execute [2] SELECT * FROM users WHERE SourceId='25768F9388DC834EC12570ED00578668'
&lt;br&gt;3 Execute [3] INSERT INTO users (UserId,FirstName,MiddleInitial,LastName,...) VALUES ('33',...)
&lt;br&gt;&lt;br&gt;see also here: &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/cj-news-5-0-5.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.mysql.com/doc/refman/5.0/en/cj-news-5-0-5.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;robs&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Java-f20.html&quot; embed=&quot;fixTarget[20]&quot; target=&quot;_top&quot; &gt;MySQL - Java&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/MySQL-JDBC-%2B-prepared-statements--%3E-plain-SQL-in-log-tp15093465p18648272.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18604182</id>
	<title>Auto SQL generation during Update requires a valid SelectCommand.</title>
	<published>2008-07-22T22:34:24Z</published>
	<updated>2008-07-22T22:34:24Z</updated>
	<author>
		<name>jmalcolm</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I am trying to develop a simple C# application that communicates with a MySQL database. &amp;nbsp;My code works fine on Windows under Visual Web Developer 2005 and had been working on Mono 1.9.1 on Centos 5 until this error.
&lt;br&gt;&lt;br&gt;When I access a page that is calling MySqlDataAdapter.Update() I get the following error:
&lt;br&gt;&lt;br&gt;==============================================================
&lt;br&gt;Server Error in '/' Application
&lt;br&gt;Auto SQL generation during Update requires a valid SelectCommand.
&lt;br&gt;&lt;br&gt;Description: HTTP 500. Error processing request.
&lt;br&gt;&lt;br&gt;Stack Trace:
&lt;br&gt;&lt;br&gt;System.InvalidOperationException: Auto SQL generation during Update requires a valid SelectCommand.
&lt;br&gt;&amp;nbsp; at System.Data.Common.DbDataAdapter.Update (System.Data.DataRow[] dataRows, System.Data.Common.DataTableMapping tableMapping) [0x00000] 
&lt;br&gt;&lt;br&gt;Version information: Mono Version: 2.0.50727.42; ASP.NET Version: 2.0.50727.42
&lt;br&gt;&lt;br&gt;============================================================
&lt;br&gt;&lt;br&gt;Here is an example of my code. &amp;nbsp;It is calling a wrapper around the database.
&lt;br&gt;&lt;br&gt;============================================================
&lt;br&gt;&lt;br&gt;using System;
&lt;br&gt;using System.Data;
&lt;br&gt;using System.Web.UI;
&lt;br&gt;using System.Web.UI.WebControls;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;public class DataNames : System.Web.UI.Page
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp;// The output will be dumped to a Literal called pageText
&lt;br&gt;&amp;nbsp; &amp;nbsp;protected Literal pageText;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;// This method is called whenever the page is viewed
&lt;br&gt;&amp;nbsp; &amp;nbsp;protected void Page_Load(object sender, EventArgs e)
&lt;br&gt;&amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Create a DataTable with the &amp;quot;member&amp;quot; table
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Cobra.Data is defined in Cobra.Database.cs (below)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Cobra.Data memberData = 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new Cobra.Data(&amp;quot;member&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Load plan members into a DataTable
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataTable memberTable = memberData.DataTable();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;	// loop thru the DataTable to do something useful
&lt;br&gt;&amp;nbsp; &amp;nbsp;	foreach ( DataRow Member in memberTable.Rows )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string tempString =
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String.Format(&amp;quot;Member #{0} is {1} {2}&amp;lt;br&amp;gt;\n&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Member[&amp;quot;MemberID&amp;quot;],
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Member[&amp;quot;FirstName&amp;quot;],
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Member[&amp;quot;LastName&amp;quot;]);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pageText.Text += tempString;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataRow aRow = memberData.FilterRow(&amp;quot;MemberID = 89&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; aRow[&amp;quot;LastName&amp;quot;] = &amp;quot;Malcolm&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // *********** This is the offending code **************
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // *********** The class is defined below **************
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; memberData.Save();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; pageText.Text += memberData.SC() + &amp;quot;&amp;lt;br&amp;gt;\n&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; pageText.Text += memberData.IC() + &amp;quot;&amp;lt;br&amp;gt;\n&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; pageText.Text += memberData.DC() + &amp;quot;&amp;lt;br&amp;gt;\n&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; pageText.Text += memberData.UC() + &amp;quot;&amp;lt;br&amp;gt;\n&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Output the number of rows to pageText
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pageText.Text +=
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String.Format(&amp;quot;&amp;lt;p&amp;gt;There are {0} rows in total&amp;lt;/p&amp;gt;&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; memberTable.Rows.Count);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataSet dataSet = memberData.DataSet();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string xml = Server.HtmlEncode(dataSet.GetXml());
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pageText.Text += xml;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;} &amp;nbsp;// End of Page_Load()
&lt;br&gt;} // End of NetNames class
&lt;br&gt;&lt;br&gt;=================================================================
&lt;br&gt;&lt;br&gt;Here is the class that is being invoked when new Cobra.Data(&amp;quot;member&amp;quot;) and Cobra.Data.Save() above:
&lt;br&gt;&lt;br&gt;================================================================
&lt;br&gt;&lt;br&gt;using System;
&lt;br&gt;using System.Data;
&lt;br&gt;using MySql.Data.MySqlClient;
&lt;br&gt;&lt;br&gt;namespace Cobra {
&lt;br&gt;&amp;nbsp; &amp;nbsp;public class Data
&lt;br&gt;&amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private MySqlConnection database;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private MySqlDataAdapter adapter;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private DataSet data;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private string setName;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public Data (string sql, string name)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BuildData(sql, name);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public Data (string name)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string sql = &amp;quot;select * from &amp;quot; + name + &amp;quot;;&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BuildData(sql, name);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private void BuildData (string sql, string setTitle)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Store the name of this DataSet
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setName = setTitle;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // What credentials will be passed to the database
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string connectionString =
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 		&amp;quot;Server=localhost;&amp;quot; +
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 		&amp;quot;Database=agencydb;&amp;quot; +
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 		&amp;quot;User ID=healthuser;&amp;quot; +
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 		&amp;quot;Password=health;&amp;quot; +
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 		&amp;quot;Pooling=false&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;		// Create a connection to the database
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;		database = new MySqlConnection(connectionString);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Create an IDataAdapter to link to the database
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; adapter = new MySqlDataAdapter();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; adapter.SelectCommand = new MySqlCommand(sql, database);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 	
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Automagically build insert, update, delete queries
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MySqlCommandBuilder theBuilder =
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new MySqlCommandBuilder(adapter);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Create a DataSet to hold the data
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data = new DataSet();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; database.Open();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Populate data
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; adapter.Fill(data, setName);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; database.Close();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public string SC()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;string theString;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IDbCommand command = adapter.SelectCommand;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (command == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = &amp;quot;Nothing&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = command.CommandText;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return theString;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public string IC()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;string theString;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IDbCommand command = adapter.InsertCommand;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (command == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = &amp;quot;Nothing&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = command.CommandText;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return theString;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public string DC()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;string theString;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IDbCommand command = adapter.DeleteCommand;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (command == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = &amp;quot;Nothing&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = command.CommandText;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return theString;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public string UC()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;string theString;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IDbCommand command = adapter.UpdateCommand;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (command == null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = &amp;quot;Nothing&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theString = command.CommandText;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return theString;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DataSet DataSet ()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return data;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DataTable DataTable ()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return data.Tables[0];
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public DataRow FilterRow (string filter)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataView theView = new DataView (data.Tables[0]);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; theView.RowFilter = filter;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataRow theRow = (DataRow) theView[0].Row;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return theRow;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public void Save ()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;//		database.Open();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Save the changes to the database
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; adapter.Update( data, setName );
&lt;br&gt;&lt;br&gt;//		database.Close();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp;} // End of class Data
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;} // End of namespace Cobra
&lt;br&gt;&lt;br&gt;===========================================================
&lt;br&gt;&lt;br&gt;I am using the Managed Connector for MySQL. &amp;nbsp;I had the same results using 5.2.2 and an earlier 5.0 version.
&lt;br&gt;&lt;br&gt;I am pre-compiling Cobra.Database into a DLL using gmcs under Mono.
&lt;br&gt;&lt;br&gt;The results are the same regardless of whether the MySqlConnection is open or closed. &amp;nbsp;Also, it does not seem to matter if I do the MySqlCommandBuilder in Save() or elsewhere.
&lt;br&gt;&lt;br&gt;As I said, it works great under .NET/Windows and the data underneath is really updated the way it should be.
&lt;br&gt;&lt;br&gt;I left in the SC(), DC(), IC(), and UC() methods as I thought they might also be interesting.
&lt;br&gt;&lt;br&gt;If I take out the call to Save() the whole page renders fine on both Mono/Linux and .NET/Windows and I see the output of these methods
&lt;br&gt;&lt;br&gt;SC() returns &amp;quot;select * from member&amp;quot; but the rest all return &amp;quot;Nothing&amp;quot; which means that the equivalent commands in MySqlDataAdapter are null. &amp;nbsp;This is also the output I get under .NET/Windows when it writes the changes to the database correctly.
&lt;br&gt;&lt;br&gt;Any ideas on where this error is coming from and how I can get rid of it?
&lt;br&gt;&lt;br&gt;Alternatively, can anybody point me at a good tutorial for building the queries directly instead of relying on MySqlCommandBuilder?
&lt;br&gt;&lt;br&gt;Thank you.
&lt;br&gt;&lt;br&gt;Justin
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---.NET-f23.html&quot; embed=&quot;fixTarget[23]&quot; target=&quot;_top&quot; &gt;MySQL - .NET&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Auto-SQL-generation-during-Update-requires-a-valid-SelectCommand.-tp18604182p18604182.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18541644</id>
	<title>RE: Mysql server has gone away error</title>
	<published>2008-07-18T22:47:58Z</published>
	<updated>2008-07-18T22:47:58Z</updated>
	<author>
		<name>Bob_A</name>
	</author>
	<content type="html">-----Original Message-----
&lt;br&gt;From: geniekids [mailto:geniekids@gmail.com] 
&lt;br&gt;Sent: 05 June 2008 06:35
&lt;br&gt;To: myodbc@lists.mysql.com
&lt;br&gt;Subject: Mysql server has gone away error
&lt;br&gt;Hi
&lt;br&gt;I have a mysql database on my web server and an MS Access (2002) frontend on
&lt;br&gt;my desktop. I am using ODBC 5.1 to connect the access frontend to the mysql
&lt;br&gt;database. However i keep getting this error almost every few minutes
&lt;br&gt;QUOTE:
&lt;br&gt;ODBC call failed
&lt;br&gt;[MYSQL][ODBC MYSQL 5.1 Driver][mysqld-5.0.45-community]Mysql server has gone
&lt;br&gt;away (#2006)
&lt;br&gt;UNQUOTE
&lt;br&gt;Once this error comes i need to close the ms access and open it again - it
&lt;br&gt;works for few minutes and then the same error.
&lt;br&gt;Any help will be really appreciated.
&lt;br&gt;&lt;br&gt;Geniekids:
&lt;br&gt;I too had been struggling with this (or at least a very similar problem) for a week. &amp;nbsp;I too am a newbie. &amp;nbsp;The problem is with the timout setting and can be solved within the DSN.
&lt;br&gt;&lt;br&gt;1) I'm using MSAccess Offic 2003 as a front end.
&lt;br&gt;2) MYSQL database is on a remote host. &amp;nbsp;It's a 4.0, not 5.0, if that matters.
&lt;br&gt;3) I first installed the the appropriate ODBC 3.5.1 driver for MySQL. &amp;nbsp;You can download it from the URL:
&lt;br&gt;&lt;a href=&quot;http://www.mysql.com/products/connector/odbc/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mysql.com/products/connector/odbc/&lt;/a&gt;&amp;nbsp;
&lt;br&gt;4) Once this driver is in place you can then create a DSN connection to the MYSQL Server. (Start&amp;gt;programs&amp;gt;administrative tools&amp;gt;Data Sources (OBDC)&amp;gt;Add&amp;gt; and find your new MYSQL Driver). &amp;nbsp;You must then know its IP address, your username and password for the MYSQL database. &amp;nbsp; &lt;b&gt;But, there's a key setting you must make when creating the DSN. &amp;nbsp;&lt;/b&gt;&amp;nbsp;(Or you can edit the existing one. &amp;nbsp;See Solution below.)
&lt;br&gt;&lt;br&gt;All this allowed me to establish a linked table in MSAccess (with your .mdb open and looking at the Tables tab, &amp;nbsp;use File&amp;gt;Get External Data&amp;gt;Linked Table&amp;gt;ODBC Database ()&amp;quot; [i.e. the file type] and then use your newly configured DSN for the MYSQL database and select the table you want.
&lt;br&gt;&lt;br&gt;Cool. &amp;nbsp;I could open Access and the linked table would be there just fine. I could open the table, view its content, edit fields, create forms with data linked to the table, etc. BUT, WITHOUT THE SOLUTION BELOW if I let it sit for 100 secs, it would basically time out and I'd get the message you got and have to close Access and then it would be linked again. &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;b&gt;SOLUTION: &amp;nbsp;&lt;/b&gt;To solve my 100 second timeout problem, when creating the the DSN connection (I did a USER connection, not a SYSTEM connection), look at the &amp;quot;Connect Options&amp;quot; tab. &amp;nbsp;In the &amp;quot;Initial Statement&amp;quot; box type &amp;quot;Set wait_timeout=28800&amp;quot; (without the quotes). &amp;nbsp;Apparently that is in seconds so 28800 would be a long time. &amp;nbsp;But since we have very, very few people hitting this database, I don't think it will cause any problems.
&lt;br&gt;&lt;br&gt;If you've already created the DSN connection, use the ODBC manager (Start&amp;gt;programs&amp;gt;administrative tools&amp;gt;Data Sources (OBDC). &amp;nbsp;Highlight the DSN you created and then Configure&amp;gt;Connect Options Tab and supply the above initial statement.
&lt;br&gt;&lt;br&gt;By the way, if you've already created the hot-linked table in Access, you'll have to delete it and recreate the linked table &amp;nbsp;(File&amp;gt;Get External Data&amp;gt;Linked Table&amp;gt;ODBC Database ()&amp;quot; [i.e. the file type] and then use your newly configured DSN to establish it again. &amp;nbsp;The new initial timeout setting (for whatever value you set it at) will then be set in the linked table. &amp;nbsp;Just changing the DSN won't flow the new timeout unless you re-link the table, thus picking up the net setting.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;If you haven't found it, the following link is a good primer for Access front-end and MYSQL backend.
&lt;br&gt;&lt;a href=&quot;http://www.aspfree.com/c/a/Microsoft-Access/An-Access-Front-End-to-MySQL/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aspfree.com/c/a/Microsoft-Access/An-Access-Front-End-to-MySQL/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---ODBC-f21.html&quot; embed=&quot;fixTarget[21]&quot; target=&quot;_top&quot; &gt;MySQL - ODBC&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Mysql-server-has-gone-away-error-tp17662496p18541644.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18538563</id>
	<title>MySQL DBA Position San Diego, CA</title>
	<published>2008-07-18T15:13:07Z</published>
	<updated>2008-07-18T15:13:07Z</updated>
	<author>
		<name>Katie Fennessey</name>
	</author>
	<content type="html">Position : MySQL Database Administrator 
&lt;br&gt;Type: Contract 
&lt;br&gt;Duration : 5-6 months (possibly will get extended beyond that) 
&lt;br&gt;Rate : $70-75/hr 
&lt;br&gt;Location: San Diego, CA (92121) 
&lt;br&gt;&lt;br&gt;&lt;br&gt;The MySQL DBA must have: 
&lt;br&gt;&lt;br&gt;• Ability to work with others groups to design and implement distributed MySQL architecture that will support operational expectations. 
&lt;br&gt;• Two to three years experience supporting MySQL in a Linux/Unix environment 
&lt;br&gt;• Expert knowledge of SQL and writing applications that use MySQL data sources 
&lt;br&gt;• Methods and tools for rapidly exporting and importing to and from MySQL databases. 
&lt;br&gt;• Actively administered more than 10 production MySQL 5.0 servers in a high-traffic and distributed OLTP environment, with a mix of masters and slaves replication. 
&lt;br&gt;• Have written moderately complex Linux/Unix shell scripts utilizing bult-in shell variables, regular expressions, conditional expressions, functions. 
&lt;br&gt;• Working knowledge of Linux/Unix tools such as vi, su, ssh, bash/ksh/csh, perl/awk, snmp/monitoring, crontab, kickstart/netboot 
&lt;br&gt;• Strong knowledge and experiences in setting up and administered MySQL replication, Master/Slave and Master/Master. Ability to resolve replication delay and sychronization issues. Ability to design the process to automatically failover to one of the Slaves in the case of Master failure. 
&lt;br&gt;• Strong knowledge of MySQL backup, recovery and upgrade procedures. 
&lt;br&gt;• Experiences to use existing tools or develop scripts to monitor MySQL such as the health of the MySQL databases and replication delays. 
&lt;br&gt;• Strong knowledge of MySQL performance tuning at the MySQL server configuration level as well as SQL tuning. 
&lt;br&gt;• 24x7 production on-call support 
&lt;br&gt;&lt;br&gt;We desire the MySQL DBA to also have: 
&lt;br&gt;• B.S. Degree or equivalent work experience 
&lt;br&gt;• Linux/Unix system administration 
&lt;br&gt;• SAN Storage Administration 
&lt;br&gt;• Oracle Database Administration or Development 
&lt;br&gt;• PL/SQL 
&lt;br&gt;• TOAD for MySQL
&lt;br&gt;&lt;br&gt;Please Note:
&lt;br&gt;-	This is a 5-6 month contract that MUST be performed onsite in San Diego, no exceptions
&lt;br&gt;-	Non-local candidates will be considered, however, interview flights are only reimbursed if hired.
&lt;br&gt;&lt;br&gt;&lt;br&gt;To Apply:
&lt;br&gt;-	Please send your resume to NextGen@ascendientertainment.com
&lt;br&gt;-	Be sure to add “MySQL DBA” in the subject line
&lt;br&gt;-	Indicate when you would be able to start
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/MySQL---Community-f754.html&quot; embed=&quot;fixTarget[754]&quot; target=&quot;_top&quot; &gt;MySQL - Community&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/MySQL-DBA-Position-San-Diego%2C-CA-tp18538563p18538563.html" />
</entry>

</feed>
