<?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: Strict Date validation for Oracle</title>
	<atom:link href="http://www.hazaah.com/databases/strict-date-validation-for-oracle-isdate-replacement/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hazaah.com/databases/strict-date-validation-for-oracle-isdate-replacement/</link>
	<description>buffle the world</description>
	<lastBuildDate>Fri, 12 Feb 2010 18:20:09 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rupali</title>
		<link>http://www.hazaah.com/databases/strict-date-validation-for-oracle-isdate-replacement/comment-page-1/#comment-14631</link>
		<dc:creator>Rupali</dc:creator>
		<pubDate>Fri, 12 Feb 2010 18:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.knowbies.com/admin/databases/strict-date-validation-for-oracle-decent-isdate-replacement/#comment-14631</guid>
		<description>Riz,

The modification was explicitly excellent, i had been looking for osmething like this since long, very happy to see it (never thought the date format can be accepetd as a parameter , but I am new to Oracle anyway). Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Riz,</p>
<p>The modification was explicitly excellent, i had been looking for osmething like this since long, very happy to see it (never thought the date format can be accepetd as a parameter , but I am new to Oracle anyway). Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riz</title>
		<link>http://www.hazaah.com/databases/strict-date-validation-for-oracle-isdate-replacement/comment-page-1/#comment-9348</link>
		<dc:creator>Riz</dc:creator>
		<pubDate>Mon, 05 Jan 2009 19:58:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.knowbies.com/admin/databases/strict-date-validation-for-oracle-decent-isdate-replacement/#comment-9348</guid>
		<description>Thanks for the tip, very useful.

Here&#039;s how I modified it.

CREATE OR REPLACE FUNCTION ISDATE
(
  ip_date in varchar2,
  date_format in varchar2 default &#039;yy-mm-dd&#039;)
return date
is
begin
return to_date(ip_date,date_format);
exception
when others
then return null;
end isdate;</description>
		<content:encoded><![CDATA[<p>Thanks for the tip, very useful.</p>
<p>Here&#8217;s how I modified it.</p>
<p>CREATE OR REPLACE FUNCTION ISDATE<br />
(<br />
  ip_date in varchar2,<br />
  date_format in varchar2 default &#8216;yy-mm-dd&#8217;)<br />
return date<br />
is<br />
begin<br />
return to_date(ip_date,date_format);<br />
exception<br />
when others<br />
then return null;<br />
end isdate;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
