<?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>Jiramot.info &#187; sql</title>
	<atom:link href="http://www.jiramot.info/tag/sql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jiramot.info</link>
	<description>me?.note.each{ println it }</description>
	<lastBuildDate>Fri, 30 Jul 2010 19:57:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SQL Change column name in table</title>
		<link>http://www.jiramot.info/sql-change-column-name-in-table</link>
		<comments>http://www.jiramot.info/sql-change-column-name-in-table#comments</comments>
		<pubDate>Wed, 02 Dec 2009 05:29:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">http://www.jiramot.info/?p=457</guid>
		<description><![CDATA[Using the Query Analyzer may not be the right way always, you can use the SQL syntax as given below, if you are unable to have access to use the query analyzer
For Oracle 9i, the syntax is :
ALTER TABLE table_name
RENAME COLUMN old_name to new_name;
For Microsoft SQL the syntax is :
EXEC sp_rename &#8216;Table.[OldColumnName]&#8216;, NewColumnName, &#8216;COLUMN&#8217;
*Note here [...]]]></description>
			<content:encoded><![CDATA[<p><span>Using the Query Analyzer may not be the right way always, you can use the SQL syntax as given below, if you are unable to have access to use the query analyzer</p>
<p>For Oracle 9i, the syntax is :<br />
ALTER TABLE table_name<br />
RENAME COLUMN old_name to new_name;</p>
<p>For Microsoft SQL the syntax is :<br />
EXEC sp_rename &#8216;Table.[OldColumnName]&#8216;, NewColumnName, &#8216;COLUMN&#8217;</p>
<p>*Note here the alst terms &#8216;COLUMN&#8217; is a must.</p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiramot.info/sql-change-column-name-in-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Derby vs Sqlite</title>
		<link>http://www.jiramot.info/derby-vs-sqlite</link>
		<comments>http://www.jiramot.info/derby-vs-sqlite#comments</comments>
		<pubDate>Wed, 05 Aug 2009 11:06:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[derby]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://www.jiramot.info/?p=371</guid>
		<description><![CDATA[ตอนแรกก็กะว่าจะลองเองว่า derby กับ sqlite ความเร็วมันต่างกันแค่ไหน อะไรเหมาะสมกว่ากันถ้าจะเขียน java แล้วอยากได้ database เล็กๆ ก็เลยมอง derby และ sqlite เอาไว้ ก็เลยลองไปหาข้อมูล แล้วก็เจอเจ้านี่เข้า

Personally, I think there&#8217;s no comparison between Derby and SQLite.
Derby&#8217;s an actual database with &#8220;all&#8221; the bells and whistles, but still
a really compact size. SQLite is an extremely fast database-like system
with a much smaller subset of features and SQL [...]]]></description>
			<content:encoded><![CDATA[<p>ตอนแรกก็กะว่าจะลองเองว่า derby กับ sqlite ความเร็วมันต่างกันแค่ไหน อะไรเหมาะสมกว่ากันถ้าจะเขียน java แล้วอยากได้ database เล็กๆ ก็เลยมอง derby และ sqlite เอาไว้ ก็เลยลองไปหาข้อมูล แล้วก็เจอเจ้านี่เข้า</p>
<blockquote><p>
Personally, I think there&#8217;s no comparison between Derby and SQLite.<br />
Derby&#8217;s an actual database with &#8220;all&#8221; the bells and whistles, but still<br />
a really compact size. SQLite is an extremely fast database-like system<br />
with a much smaller subset of features and SQL compliance. Plus, if<br />
you&#8217;re writing in Java, go with Derby. If you&#8217;re writing in C or C++,<br />
give SQLite a run-through.</p>
<p>Off the top of my head, SQLite doesn&#8217;t support foreign key constraints,<br />
or use column types (everything is a string, unless it&#8217;s an int, which<br />
is actually a string). In the quirks department, I&#8217;ve noticed join order<br />
can have a dramatic effect on performance. What&#8217;s really nice is that<br />
the whole database is a single file, which makes using it as a save file<br />
in your application really nice. Also, startup times are zero. I think<br />
Derby takes a second or two to startup. Both systems support<br />
transactions. Derby can be used in a multi-user mode, while SQLite is<br />
strictly mono-user.</p>
<p>I know both databases claim to be zero-administration, but I&#8217;d say<br />
SQLite more serious about it. I don&#8217;t even know how to configure SQLite.<br />
Derby certainly works great without administration, but there are a<br />
whole lot of options you can muck with if you like.
</p></blockquote>
<p>source: <a href="http://www.nabble.com/Derby-v-SQLite-td13496423.html">http://www.nabble.com/Derby-v-SQLite-td13496423.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jiramot.info/derby-vs-sqlite/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
