<?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>»» Coldfusion Blog - By Phil Porter ««&#187; SQL</title>
	<atom:link href="http://cfblog.co.uk/category/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://cfblog.co.uk</link>
	<description></description>
	<lastBuildDate>Sat, 11 Dec 2010 10:32:01 +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>Multiple SQL inserts: Oracle, Mysql, Mssql</title>
		<link>http://cfblog.co.uk/multiple-inserts-oracle-mysql-ms-sql/</link>
		<comments>http://cfblog.co.uk/multiple-inserts-oracle-mysql-ms-sql/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 11:20:00 +0000</pubDate>
		<dc:creator>Phil P</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://cfblog.co.uk/?p=27</guid>
		<description><![CDATA[I've found a useful technique for inserting multiple rows into Oracle, MYSQL and MS SQL databases.  Using these examples will help increase the speed and help avoid database timeouts.


Related posts:<ol><li><a href='http://cfblog.co.uk/sql-select-top-n-equivalent-in-oracle-and-mysql/' rel='bookmark' title='Permanent Link: SQL SELECT TOP N equivalent in ORACLE and MySQL'>SQL SELECT TOP N equivalent in ORACLE and MySQL</a></li><li><a href='http://cfblog.co.uk/eclipse-oracle-plugin/' rel='bookmark' title='Permanent Link: Eclipse Oracle Plugin'>Eclipse Oracle Plugin</a></li><li><a href='http://cfblog.co.uk/sql-the-case-for-case/' rel='bookmark' title='Permanent Link: SQL &#8211; The case for CASE'>SQL &#8211; The case for CASE</a></li></ol>]]></description>
		<wfw:commentRss>http://cfblog.co.uk/multiple-inserts-oracle-mysql-ms-sql/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Eclipse Oracle Plugin</title>
		<link>http://cfblog.co.uk/eclipse-oracle-plugin/</link>
		<comments>http://cfblog.co.uk/eclipse-oracle-plugin/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 10:25:00 +0000</pubDate>
		<dc:creator>Phil P</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cfblog.co.uk/?p=36</guid>
		<description><![CDATA[jOra is an Eclipse-Plugin for Oracle Developers and Oracle Admins. The plugin makes the work with Oracle easier and more efficient. It eases the daily use of the database.

jOra integrates seamless in the Eclipse Workbench and is therefore best suited for Coldfusion/Java developers using an Oracle database.
jOra is Freeware. It can be used for free [...]


Related posts:<ol><li><a href='http://cfblog.co.uk/multiple-inserts-oracle-mysql-ms-sql/' rel='bookmark' title='Permanent Link: Multiple SQL inserts: Oracle, Mysql, Mssql'>Multiple SQL inserts: Oracle, Mysql, Mssql</a></li></ol>]]></description>
		<wfw:commentRss>http://cfblog.co.uk/eclipse-oracle-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL SELECT TOP N equivalent in ORACLE and MySQL</title>
		<link>http://cfblog.co.uk/sql-select-top-n-equivalent-in-oracle-and-mysql/</link>
		<comments>http://cfblog.co.uk/sql-select-top-n-equivalent-in-oracle-and-mysql/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 10:59:00 +0000</pubDate>
		<dc:creator>Phil P</dc:creator>
				<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cfblog.co.uk/?p=23</guid>
		<description><![CDATA[Something I needed today&#8230; I wish this was standarized, but it is not, so here are some examples:
SQL Server:

SELECT TOP 10 product, descr, email
FROM products

ORACLE:

SELECT product, descr, email
FROM products
WHERE ROWNUM 


Related posts:<ol><li><a href='http://cfblog.co.uk/multiple-inserts-oracle-mysql-ms-sql/' rel='bookmark' title='Permanent Link: Multiple SQL inserts: Oracle, Mysql, Mssql'>Multiple SQL inserts: Oracle, Mysql, Mssql</a></li><li><a href='http://cfblog.co.uk/eclipse-oracle-plugin/' rel='bookmark' title='Permanent Link: Eclipse Oracle Plugin'>Eclipse Oracle Plugin</a></li></ol>]]></description>
		<wfw:commentRss>http://cfblog.co.uk/sql-select-top-n-equivalent-in-oracle-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL &#8211; getting table info</title>
		<link>http://cfblog.co.uk/sql-getting-table-info/</link>
		<comments>http://cfblog.co.uk/sql-getting-table-info/#comments</comments>
		<pubDate>Mon, 05 Feb 2007 06:56:00 +0000</pubDate>
		<dc:creator>Phil P</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cfblog.co.uk/?p=22</guid>
		<description><![CDATA[Sometimes I&#8217;ve had the need to use SQL to go and get table information i.e is a field varchar or int etc.

For MS SQL server you can use the following to get info on a table


SELECT RIGHT(syscolumns.name, LEN(syscolumns.name)) AS dbFieldName, systypes.name AS typename, syscolumns.length AS maxlength, syscolumns.xprec AS [precision], syscolumns.xscale AS scale, syscolumns.isnullable AS isnullable
FROM [...]


Related posts:<ol><li><a href='http://cfblog.co.uk/sql-the-case-for-case/' rel='bookmark' title='Permanent Link: SQL &#8211; The case for CASE'>SQL &#8211; The case for CASE</a></li></ol>]]></description>
		<wfw:commentRss>http://cfblog.co.uk/sql-getting-table-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CFQuery &#8211; metadata</title>
		<link>http://cfblog.co.uk/cfquery-metadata/</link>
		<comments>http://cfblog.co.uk/cfquery-metadata/#comments</comments>
		<pubDate>Tue, 05 Dec 2006 05:48:00 +0000</pubDate>
		<dc:creator>Phil P</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cfblog.co.uk/?p=10</guid>
		<description><![CDATA[You learn something new everyday! I Just discovered that in Coldfusion 7 you can get query infomation (metadata) by adding result = &#8216;aVariable&#8217; to the cfquery tag.


for example:



select * from aTable



The resulting dump shows:

CACHED (boolean)
COLUMNLIST (the names of the columns returned)
EXECUTIONTIME (time to execute query ms)
RECORDCOUNT (rows returned)
SQL (the sql that was executed)


I use it [...]


Related posts:<ol><li><a href='http://cfblog.co.uk/sql-the-case-for-case/' rel='bookmark' title='Permanent Link: SQL &#8211; The case for CASE'>SQL &#8211; The case for CASE</a></li></ol>]]></description>
		<wfw:commentRss>http://cfblog.co.uk/cfquery-metadata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL &#8211; The case for CASE</title>
		<link>http://cfblog.co.uk/sql-the-case-for-case/</link>
		<comments>http://cfblog.co.uk/sql-the-case-for-case/#comments</comments>
		<pubDate>Fri, 27 Oct 2006 18:07:00 +0000</pubDate>
		<dc:creator>Phil P</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://cfblog.co.uk/?p=3</guid>
		<description><![CDATA[The Transact SQL Case statement is a particularly useful piece of syntax to know as it can be used to solve many potentially tricky SQL Server programming tasks without resorting to more computationally intensive procedures such as using cursors, temporary tables or processing of the results set in a programming. One such use is to [...]


Related posts:<ol><li><a href='http://cfblog.co.uk/cfquery-metadata/' rel='bookmark' title='Permanent Link: CFQuery &#8211; metadata'>CFQuery &#8211; metadata</a></li></ol>]]></description>
		<wfw:commentRss>http://cfblog.co.uk/sql-the-case-for-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

