<?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: Convert Julian Date to Gregorian Date (SQL)</title>
	<atom:link href="http://www.deepeshmd.com/enterpriseone/technical/convert-julian-date-to-gregorian-date-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.deepeshmd.com/enterpriseone/technical/convert-julian-date-to-gregorian-date-sql/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
	<description>Where Musings Fuse the Tech...</description>
	<lastBuildDate>Thu, 17 May 2012 11:04:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Dale Porter</title>
		<link>http://www.deepeshmd.com/enterpriseone/technical/convert-julian-date-to-gregorian-date-sql/comment-page-1/#comment-967</link>
		<dc:creator>Dale Porter</dc:creator>
		<pubDate>Fri, 02 Dec 2011 22:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.deepeshmd.com/?p=320#comment-967</guid>
		<description>This was a great help.  I always have to search internet to figure out how to convert these.  Now, I&#039;ve created functions and will no longer have to do that.</description>
		<content:encoded><![CDATA[<p>This was a great help.  I always have to search internet to figure out how to convert these.  Now, I&#8217;ve created functions and will no longer have to do that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak Shanker</title>
		<link>http://www.deepeshmd.com/enterpriseone/technical/convert-julian-date-to-gregorian-date-sql/comment-page-1/#comment-852</link>
		<dc:creator>Deepak Shanker</dc:creator>
		<pubDate>Fri, 10 Jun 2011 20:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.deepeshmd.com/?p=320#comment-852</guid>
		<description>In case you have a 0 in the Julian date field(wrong sqls or anything) its good to have the following sql
decode(DATEVAL,0,&#039;0&#039;,TO_DATE(1900000 + DATEVAL, &#039;YYYYDDD&#039;))</description>
		<content:encoded><![CDATA[<p>In case you have a 0 in the Julian date field(wrong sqls or anything) its good to have the following sql<br />
decode(DATEVAL,0,&#8217;0&#8242;,TO_DATE(1900000 + DATEVAL, &#8216;YYYYDDD&#8217;))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepesh Divakaran</title>
		<link>http://www.deepeshmd.com/enterpriseone/technical/convert-julian-date-to-gregorian-date-sql/comment-page-1/#comment-843</link>
		<dc:creator>Deepesh Divakaran</dc:creator>
		<pubDate>Thu, 19 May 2011 14:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.deepeshmd.com/?p=320#comment-843</guid>
		<description>Thanks a lot Tonio for the comments &amp; Tips :) The article has been updated with your tip.</description>
		<content:encoded><![CDATA[<p>Thanks a lot Tonio for the comments &amp; Tips <img src='http://www.deepeshmd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The article has been updated with your tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tonio Thomas</title>
		<link>http://www.deepeshmd.com/enterpriseone/technical/convert-julian-date-to-gregorian-date-sql/comment-page-1/#comment-841</link>
		<dc:creator>Tonio Thomas</dc:creator>
		<pubDate>Tue, 17 May 2011 20:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.deepeshmd.com/?p=320#comment-841</guid>
		<description>Deepesh ,

Was nice to get your website as the first one on my google search.  Keep it up.. good work


You can edit the content to also show a reverse conversion to convert oracle system date to Julian (basically just reverse of the logic to convert to Julian)


TO_NUMBER(TO_CHAR(SYSDATE, &#039;YYYYDDD&#039;))-1900000</description>
		<content:encoded><![CDATA[<p>Deepesh ,</p>
<p>Was nice to get your website as the first one on my google search.  Keep it up.. good work</p>
<p>You can edit the content to also show a reverse conversion to convert oracle system date to Julian (basically just reverse of the logic to convert to Julian)</p>
<p>TO_NUMBER(TO_CHAR(SYSDATE, &#8216;YYYYDDD&#8217;))-1900000</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ola</title>
		<link>http://www.deepeshmd.com/enterpriseone/technical/convert-julian-date-to-gregorian-date-sql/comment-page-1/#comment-686</link>
		<dc:creator>Ola</dc:creator>
		<pubDate>Mon, 13 Sep 2010 15:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.deepeshmd.com/?p=320#comment-686</guid>
		<description>Hi,
Could you please tell me where in access I would need to put this below code, to convert the date from julina to gregorian?


19 + SUBSTR( DATEVAL , 1, 1 )
&#124;&#124; SUBSTR(DATEVAL, 2,2)
&#124;&#124; &#039;/&#039;
&#124;&#124; TO_CHAR( to_date( SUBSTR( DATEVAL, 4, 3 ) , &#039;DDD&#039;) , &#039;MM&#039; )
&#124;&#124; &#039;/&#039;
&#124;&#124; TO_CHAR( to_date( SUBSTR(DATEVAL, 4, 3 ) , &#039;DDD&#039;) , &#039;DD&#039; )


Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Could you please tell me where in access I would need to put this below code, to convert the date from julina to gregorian?</p>
<p>19 + SUBSTR( DATEVAL , 1, 1 )<br />
|| SUBSTR(DATEVAL, 2,2)<br />
|| &#8216;/&#8217;<br />
|| TO_CHAR( to_date( SUBSTR( DATEVAL, 4, 3 ) , &#8216;DDD&#8217;) , &#8216;MM&#8217; )<br />
|| &#8216;/&#8217;<br />
|| TO_CHAR( to_date( SUBSTR(DATEVAL, 4, 3 ) , &#8216;DDD&#8217;) , &#8216;DD&#8217; )</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>

