<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech Notes &#187; alter</title>
	<atom:link href="http://www.ryannitz.org/tech-notes/tag/alter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryannitz.org/tech-notes</link>
	<description>Miscellaneous technology examples and notes</description>
	<lastBuildDate>Sun, 03 Apr 2011 16:48:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<image>
  <link>http://www.ryannitz.org/tech-notes</link>
  <url>http://ryan-nitz/favicon.ico</url>
  <title>Tech Notes</title>
</image>
		<item>
		<title>MySQL Increase Column Size</title>
		<link>http://www.ryannitz.org/tech-notes/2008/11/17/mysql-increase-column-size/</link>
		<comments>http://www.ryannitz.org/tech-notes/2008/11/17/mysql-increase-column-size/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 02:31:39 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[alter]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://leisuremech.com/?p=65</guid>
		<description><![CDATA[An example of modifying a MySQL table to increase a VARCHAR column size: alter table TABLE_NAME modify COLUMN_NAME VARCHAR(1024) NOT NULL; This increases COLUMN_NAME to 1024 characters.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ryannitz.org/tech-notes/wp-content/uploads/2008/06/mysql.jpeg"><img class="alignnone size-medium wp-image-15" title="mysql" src="http://www.ryannitz.org/tech-notes/wp-content/uploads/2008/06/mysql.jpeg" alt="" width="124" height="90" /></a></p>
<p>An example of <a href="http://dev.mysql.com/doc/refman/5.0/en/alter-table.html">modifying a MySQL table</a> to increase a VARCHAR column size:</p>
<pre>alter table TABLE_NAME modify COLUMN_NAME VARCHAR(1024) NOT NULL;</pre>
<p>This increases COLUMN_NAME to 1024 characters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannitz.org/tech-notes/2008/11/17/mysql-increase-column-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Drop Unique Constraint</title>
		<link>http://www.ryannitz.org/tech-notes/2008/11/17/mysql-drop-unique-constraint/</link>
		<comments>http://www.ryannitz.org/tech-notes/2008/11/17/mysql-drop-unique-constraint/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 02:03:45 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[alter]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://leisuremech.com/?p=60</guid>
		<description><![CDATA[In MySQL 5.0 it is possible to drop unqiue constraints but, the syntax is not incredibly intuitive. alter table TABLE_NAME drop index UNIQUE_CONSTRAINT_NAME; Code Ghar provides a more thorough description.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ryannitz.org/tech-notes/wp-content/uploads/2008/06/mysql.jpeg"><img class="alignnone size-medium wp-image-15" title="mysql" src="http://www.ryannitz.org/tech-notes/wp-content/uploads/2008/06/mysql.jpeg" alt="" width="124" height="90" /></a></p>
<p>In MySQL 5.0 it is possible to drop unqiue constraints but, the syntax is not incredibly intuitive.</p>
<pre>alter table TABLE_NAME drop index UNIQUE_CONSTRAINT_NAME;</pre>
<p>Code Ghar provides a more <a href="http://codeghar.wordpress.com/2008/03/28/drop-unique-constraint-in-mysql/">thorough description</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannitz.org/tech-notes/2008/11/17/mysql-drop-unique-constraint/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

