<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: More on variables ambiguities</title>
	<atom:link href="http://code.openark.org/blog/mysql/more-on-variables-ambiguities/feed" rel="self" type="application/rss+xml" />
	<link>http://code.openark.org/blog/mysql/more-on-variables-ambiguities</link>
	<description>Blog by Shlomi Noach</description>
	<lastBuildDate>Wed, 01 Feb 2012 20:47:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: INFORMATION_SCHEMA.GLOBAL_STATUS: watch out &#124; code.openark.org</title>
		<link>http://code.openark.org/blog/mysql/more-on-variables-ambiguities/comment-page-1#comment-4881</link>
		<dc:creator>INFORMATION_SCHEMA.GLOBAL_STATUS: watch out &#124; code.openark.org</dc:creator>
		<pubDate>Wed, 14 Oct 2009 19:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://code.openark.org/blog/?p=799#comment-4881</guid>
		<description>[...] There are a few ON/OFF values (I&#8217;ve expressed my opinion and concerns on these here and here; why not just use 0/1?). SSL_CIPHER seems like the only variable which can get long enough to [...]</description>
		<content:encoded><![CDATA[<p>[...] There are a few ON/OFF values (I&#8217;ve expressed my opinion and concerns on these here and here; why not just use 0/1?). SSL_CIPHER seems like the only variable which can get long enough to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shlomi</title>
		<link>http://code.openark.org/blog/mysql/more-on-variables-ambiguities/comment-page-1#comment-1751</link>
		<dc:creator>shlomi</dc:creator>
		<pubDate>Thu, 30 Apr 2009 17:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://code.openark.org/blog/?p=799#comment-1751</guid>
		<description>@Giuseppe:

I don&#039;t mind that much that some variables can have options like &quot;OFF/ON/DISABLED&quot;
I would just expect it to be consistent for that particular variable throughout parameters, variables, SHOW and mysqld.</description>
		<content:encoded><![CDATA[<p>@Giuseppe:</p>
<p>I don't mind that much that some variables can have options like "OFF/ON/DISABLED"<br />
I would just expect it to be consistent for that particular variable throughout parameters, variables, SHOW and mysqld.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shlomi</title>
		<link>http://code.openark.org/blog/mysql/more-on-variables-ambiguities/comment-page-1#comment-1750</link>
		<dc:creator>shlomi</dc:creator>
		<pubDate>Thu, 30 Apr 2009 17:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://code.openark.org/blog/?p=799#comment-1750</guid>
		<description>@Sergei,

A YES variable (I never mentioned a NO):

mysql&gt; show global variables like &#039;updat%&#039;;
+----------------------------+-------+
&#124; Variable_name              &#124; Value &#124;
+----------------------------+-------+
&#124; updatable_views_with_limit &#124; YES   &#124; 
+----------------------------+-------+
1 row in set (0.01 sec)


I didn&#039;t know about the --enable, --disable: very interesting!
The --skip is familiar from mysqldump.</description>
		<content:encoded><![CDATA[<p>@Sergei,</p>
<p>A YES variable (I never mentioned a NO):</p>
<p>mysql> show global variables like 'updat%';<br />
+----------------------------+-------+<br />
| Variable_name              | Value |<br />
+----------------------------+-------+<br />
| updatable_views_with_limit | YES   |<br />
+----------------------------+-------+<br />
1 row in set (0.01 sec)</p>
<p>I didn't know about the --enable, --disable: very interesting!<br />
The --skip is familiar from mysqldump.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergei Golubchik</title>
		<link>http://code.openark.org/blog/mysql/more-on-variables-ambiguities/comment-page-1#comment-1749</link>
		<dc:creator>Sergei Golubchik</dc:creator>
		<pubDate>Thu, 30 Apr 2009 16:43:20 +0000</pubDate>
		<guid isPermaLink="false">http://code.openark.org/blog/?p=799#comment-1749</guid>
		<description>--skip --enable --disable can be used with any boolean option.
For example as --enable-innodb-file-per-table

Also, boolean options accept TRUE/FALSE.

What option accepts YES/NO ? I couldn&#039;t find any.

ON/OFF (and DISABLED), as far as I could see, is only accepted by event-scheduler, I&#039;m fixing that.</description>
		<content:encoded><![CDATA[<p>--skip --enable --disable can be used with any boolean option.<br />
For example as --enable-innodb-file-per-table</p>
<p>Also, boolean options accept TRUE/FALSE.</p>
<p>What option accepts YES/NO ? I couldn't find any.</p>
<p>ON/OFF (and DISABLED), as far as I could see, is only accepted by event-scheduler, I'm fixing that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giuseppe Maxia</title>
		<link>http://code.openark.org/blog/mysql/more-on-variables-ambiguities/comment-page-1#comment-1742</link>
		<dc:creator>Giuseppe Maxia</dc:creator>
		<pubDate>Thu, 30 Apr 2009 05:23:39 +0000</pubDate>
		<guid isPermaLink="false">http://code.openark.org/blog/?p=799#comment-1742</guid>
		<description>Just to make your life more difficult, some variables can also accept &quot;disabled&quot;
http://dev.mysql.com/doc/refman/5.1/en/events-configuration.html#events-event-scheduler-option
and some options are disabled by &quot;--skip-option-name&quot; instead.
Yes. We need more consistency.</description>
		<content:encoded><![CDATA[<p>Just to make your life more difficult, some variables can also accept "disabled"<br />
<a href="http://dev.mysql.com/doc/refman/5.1/en/events-configuration.html#events-event-scheduler-option" rel="nofollow">http://dev.mysql.com/doc/refman/5.1/en/events-configuration.html#events-event-scheduler-option</a><br />
and some options are disabled by "--skip-option-name" instead.<br />
Yes. We need more consistency.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

