<?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: Read an Excel xlsx with PL/SQL</title>
	<atom:link href="http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=read-a-excel-xlsx-with-plsql</link>
	<description></description>
	<lastBuildDate>Tue, 11 Jun 2013 22:09:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Naseer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7340</link>
		<dc:creator>Naseer</dc:creator>
		<pubDate>Tue, 11 Jun 2013 22:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7340</guid>
		<description><![CDATA[Anton thanks a lot for your help. With your help I am able to see the data in the string_val column by replacing pattern from &#039;.&#039; to &#039;*/text()&#039;

Thanks again.]]></description>
		<content:encoded><![CDATA[<p>Anton thanks a lot for your help. With your help I am able to see the data in the string_val column by replacing pattern from &#8216;.&#8217; to &#8216;*/text()&#8217;</p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naseer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7339</link>
		<dc:creator>Naseer</dc:creator>
		<pubDate>Tue, 11 Jun 2013 19:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7339</guid>
		<description><![CDATA[I think in my case this line is causing string_val to be empty.
t_strings( i ) := dbms_xslprocessor.valueof( dbms_xmldom.item( t_nl, i ), &#039;.&#039; );

It looks like patron &#039;.&#039; is incorrect because dbms_xslprocessor.valueof( dbms_xmldom.item( t_nl, i ), &#039;.&#039; ); is returning NULL.

Do you think there is some kind of version issue with XML related packages?]]></description>
		<content:encoded><![CDATA[<p>I think in my case this line is causing string_val to be empty.<br />
t_strings( i ) := dbms_xslprocessor.valueof( dbms_xmldom.item( t_nl, i ), &#8216;.&#8217; );</p>
<p>It looks like patron &#8216;.&#8217; is incorrect because dbms_xslprocessor.valueof( dbms_xmldom.item( t_nl, i ), &#8216;.&#8217; ); is returning NULL.</p>
<p>Do you think there is some kind of version issue with XML related packages?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naseer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7338</link>
		<dc:creator>Naseer</dc:creator>
		<pubDate>Mon, 10 Jun 2013 20:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7338</guid>
		<description><![CDATA[Query is:
select *
  from table( as_read_xlsx.read( as_read_xlsx.file2blob( &#039;UPLOAD_DIR&#039;, &#039;Spring2013.xlsx&#039; ) ) )

Query can read file and correctly list all columns except STRING_VAL (I am suing formula)

I will send you .xlsx file in few minutes.

Regards,]]></description>
		<content:encoded><![CDATA[<p>Query is:<br />
select *<br />
  from table( as_read_xlsx.read( as_read_xlsx.file2blob( &#8216;UPLOAD_DIR&#8217;, &#8216;Spring2013.xlsx&#8217; ) ) )</p>
<p>Query can read file and correctly list all columns except STRING_VAL (I am suing formula)</p>
<p>I will send you .xlsx file in few minutes.</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Scheffer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7337</link>
		<dc:creator>Anton Scheffer</dc:creator>
		<pubDate>Mon, 10 Jun 2013 20:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7337</guid>
		<description><![CDATA[You could show me the query you are using or send me the excel you use
scheffer @ &quot;the company I work&quot; .nl]]></description>
		<content:encoded><![CDATA[<p>You could show me the query you are using or send me the excel you use<br />
scheffer @ &#8220;the company I work&#8221; .nl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naseer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7336</link>
		<dc:creator>Naseer</dc:creator>
		<pubDate>Mon, 10 Jun 2013 20:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7336</guid>
		<description><![CDATA[Thanks for quick reply. My bad I though I gave the necessary info :(.
In my case whenever the output for column CELL_TYPE is S in these cases STRING_VAL column is blank.
I tried to play with line below but no success.
t_one_cell.string_val := t_strings( to_number( t_val ) );

What info you are looking to suggest any possible reason.

Thanks a lot.]]></description>
		<content:encoded><![CDATA[<p>Thanks for quick reply. My bad I though I gave the necessary info <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> .<br />
In my case whenever the output for column CELL_TYPE is S in these cases STRING_VAL column is blank.<br />
I tried to play with line below but no success.<br />
t_one_cell.string_val := t_strings( to_number( t_val ) );</p>
<p>What info you are looking to suggest any possible reason.</p>
<p>Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Scheffer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7335</link>
		<dc:creator>Anton Scheffer</dc:creator>
		<pubDate>Mon, 10 Jun 2013 19:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7335</guid>
		<description><![CDATA[@Naseer.
No, I have no ideas. But it could be that you gave just to little information to work on :).]]></description>
		<content:encoded><![CDATA[<p>@Naseer.<br />
No, I have no ideas. But it could be that you gave just to little information to work on <img src='http://technology.amis.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naseer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7334</link>
		<dc:creator>Naseer</dc:creator>
		<pubDate>Mon, 10 Jun 2013 19:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7334</guid>
		<description><![CDATA[Hello Anton,

 This is great utility. In my case String valuses are not comming up (blank). Number are comming correctly. We are at office 2010 and db is 11.1.0.7.0 - 64bit.

 Any Idea?

 Thanks,

 Naseer - Houston]]></description>
		<content:encoded><![CDATA[<p>Hello Anton,</p>
<p> This is great utility. In my case String valuses are not comming up (blank). Number are comming correctly. We are at office 2010 and db is 11.1.0.7.0 &#8211; 64bit.</p>
<p> Any Idea?</p>
<p> Thanks,</p>
<p> Naseer &#8211; Houston</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Scheffer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7327</link>
		<dc:creator>Anton Scheffer</dc:creator>
		<pubDate>Tue, 19 Feb 2013 17:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7327</guid>
		<description><![CDATA[@tuataneo This blog is called read Excel xlsx for a reason. Of course you can read xls, or every other format you can think of with plsql, but not with the code I provided here.]]></description>
		<content:encoded><![CDATA[<p>@tuataneo This blog is called read Excel xlsx for a reason. Of course you can read xls, or every other format you can think of with plsql, but not with the code I provided here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton Scheffer</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7326</link>
		<dc:creator>Anton Scheffer</dc:creator>
		<pubDate>Tue, 19 Feb 2013 17:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7326</guid>
		<description><![CDATA[@regrbde. This code shows the result of every formula I tried, but please show your changes or mail it to me  scheffer@.....]]></description>
		<content:encoded><![CDATA[<p>@regrbde. This code shows the result of every formula I tried, but please show your changes or mail it to me  scheffer@&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tuataneo</title>
		<link>http://technology.amis.nl/2013/01/19/read-a-excel-xlsx-with-plsql/#comment-7325</link>
		<dc:creator>tuataneo</dc:creator>
		<pubDate>Tue, 19 Feb 2013 14:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/?p=20612#comment-7325</guid>
		<description><![CDATA[Excellent, but when I try *xls file, I cannot read * xls file. How I read *xls file in PL-SQL? is it possible?
Thanks]]></description>
		<content:encoded><![CDATA[<p>Excellent, but when I try *xls file, I cannot read * xls file. How I read *xls file in PL-SQL? is it possible?<br />
Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
