<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for IN ORACLE MILIEU ...</title>
	<atom:link href="http://avdeo.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://avdeo.com</link>
	<description>Beyond Knowledge</description>
	<lastBuildDate>Sat, 26 May 2012 15:34:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Uploading excel sheet using Oracle Application Express (APEX) by gaurav</title>
		<link>http://avdeo.com/2008/05/21/uploading-excel-sheet-using-oracle-application-express-apex/#comment-9101</link>
		<dc:creator><![CDATA[gaurav]]></dc:creator>
		<pubDate>Sat, 26 May 2012 15:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/?p=387#comment-9101</guid>
		<description><![CDATA[i am trying to uplad on excel file can suggest the changes and also i tried your code with .csv file it didnt work can you help.The csv file had only on column]]></description>
		<content:encoded><![CDATA[<p>i am trying to uplad on excel file can suggest the changes and also i tried your code with .csv file it didnt work can you help.The csv file had only on column</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up Oracle DataGuard for 10g by ganga</title>
		<link>http://avdeo.com/2007/06/12/setting-up-oracle-dataguard-for-10g/#comment-9099</link>
		<dc:creator><![CDATA[ganga]]></dc:creator>
		<pubDate>Mon, 21 May 2012 07:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/2007/06/12/setting-up-oracle-dataguard-for-10g/#comment-9099</guid>
		<description><![CDATA[very very good Doc,it is helpful for all....]]></description>
		<content:encoded><![CDATA[<p>very very good Doc,it is helpful for all&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handling Large Objects (LOB) &#8211; Oracle Database 10g by Menggunakan ORACLE BLOB (Binary Large Object) &#171; Lakukanlah dengan sepenuh hati!</title>
		<link>http://avdeo.com/2007/06/03/handling-large-objects-lob-oracle-database-10g/#comment-9098</link>
		<dc:creator><![CDATA[Menggunakan ORACLE BLOB (Binary Large Object) &#171; Lakukanlah dengan sepenuh hati!]]></dc:creator>
		<pubDate>Mon, 21 May 2012 07:26:57 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/2007/06/03/handling-large-objects-lob-oracle-database-10g/#comment-9098</guid>
		<description><![CDATA[[...] Referensi  [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Referensi  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Uploading excel sheet using Oracle Application Express (APEX) by ahmet</title>
		<link>http://avdeo.com/2008/05/21/uploading-excel-sheet-using-oracle-application-express-apex/#comment-9097</link>
		<dc:creator><![CDATA[ahmet]]></dc:creator>
		<pubDate>Fri, 18 May 2012 08:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/?p=387#comment-9097</guid>
		<description><![CDATA[My code below, but ı got error conversation number
DECLARE
 v_blob_data       BLOB;
 v_blob_len        NUMBER;
 v_position        NUMBER;
 v_raw_chunk       RAW(10000);
 v_char      CHAR(1);
 c_chunk_len   number       := 1;
 v_line        VARCHAR2 (32767)        := NULL;
 v_data_array      wwv_flow_global.vc_arr2;
 v_rows number;
 v_sr_no number := 1;

BEGIN

delete from DWH.TMP_CITY_CODE_APEX;

-- Read data from wwv_flow_files
 select blob_content into v_blob_data
 from wwv_flow_files
 where last_updated = (select max(last_updated) from wwv_flow_files where UPDATED_BY = :APP_USER)
 and id = (select max(id) from wwv_flow_files where updated_by = :APP_USER);

v_blob_len := dbms_lob.getlength(v_blob_data);
 v_position := 1;

-- Read and convert binary to char
 WHILE ( v_position &lt;= v_blob_len ) LOOP
 v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
 v_char :=  chr(DWH.hex_to_decimal(rawtohex(v_raw_chunk)));
 v_line := v_line &#124;&#124; v_char;
 v_position := v_position + c_chunk_len;
 -- When a whole line is retrieved 
 IF v_char = CHR(10) THEN
 -- Convert comma to : to use wwv_flow_utilities 
 v_line := REPLACE (v_line, &#039;,&#039;, &#039;:&#039;);
-- Convert each column separated by : into array of data 
 v_data_array := wwv_flow_utilities.string_to_table (v_line);
 -- Insert data into target table 
 EXECUTE IMMEDIATE &#039;insert into TMP_APEX_CITY_CODE (CITY_CODE, YEAR, YM01,YM02,YM0,YM04,YM05,YM06,YM07,YM08,YM09,YM10,YM11,YM12,
 YM01_EUR, YM02_EUR, YM03_EUR, YM04_EUR, YM05_EUR, YM06_EUR, YM07_EUR, YM08_EUR, YM09_EUR, YM10_EUR, YM11_EUR, YM12_EUR,
 YM01_TRL, YM02_TRL, YM03_TRL, YM04_TRL, YM05_TRL, YM06_TRL, YM07_TRL, YM08_TRL, YM09_TRL, YM10_TRL, YM11_TRL, YM12_TRL)
 values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11)&#039;
 USING
 v_sr_no,
 v_data_array(1),
 to_number(v_data_array(2)),
 v_data_array(3),
 v_data_array(4),
 v_data_array(5),
 v_data_array(6),
 to_number(v_data_array(7)),
 to_number(v_data_array(8)),
 to_number(v_data_array(9)),
 v_data_array(10);
 -- Clear out
 v_line := NULL;
 v_sr_no := v_sr_no + 1;
 END IF;

END LOOP;
 END;]]></description>
		<content:encoded><![CDATA[<p>My code below, but ı got error conversation number<br />
DECLARE<br />
 v_blob_data       BLOB;<br />
 v_blob_len        NUMBER;<br />
 v_position        NUMBER;<br />
 v_raw_chunk       RAW(10000);<br />
 v_char      CHAR(1);<br />
 c_chunk_len   number       := 1;<br />
 v_line        VARCHAR2 (32767)        := NULL;<br />
 v_data_array      wwv_flow_global.vc_arr2;<br />
 v_rows number;<br />
 v_sr_no number := 1;</p>
<p>BEGIN</p>
<p>delete from DWH.TMP_CITY_CODE_APEX;</p>
<p>&#8211; Read data from wwv_flow_files<br />
 select blob_content into v_blob_data<br />
 from wwv_flow_files<br />
 where last_updated = (select max(last_updated) from wwv_flow_files where UPDATED_BY = :APP_USER)<br />
 and id = (select max(id) from wwv_flow_files where updated_by = :APP_USER);</p>
<p>v_blob_len := dbms_lob.getlength(v_blob_data);<br />
 v_position := 1;</p>
<p>&#8211; Read and convert binary to char<br />
 WHILE ( v_position &lt;= v_blob_len ) LOOP<br />
 v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);<br />
 v_char :=  chr(DWH.hex_to_decimal(rawtohex(v_raw_chunk)));<br />
 v_line := v_line || v_char;<br />
 v_position := v_position + c_chunk_len;<br />
 &#8212; When a whole line is retrieved<br />
 IF v_char = CHR(10) THEN<br />
 &#8212; Convert comma to : to use wwv_flow_utilities<br />
 v_line := REPLACE (v_line, &#8216;,&#8217;, &#8216;:&#8217;);<br />
&#8211; Convert each column separated by : into array of data<br />
 v_data_array := wwv_flow_utilities.string_to_table (v_line);<br />
 &#8212; Insert data into target table<br />
 EXECUTE IMMEDIATE &#8216;insert into TMP_APEX_CITY_CODE (CITY_CODE, YEAR, YM01,YM02,YM0,YM04,YM05,YM06,YM07,YM08,YM09,YM10,YM11,YM12,<br />
 YM01_EUR, YM02_EUR, YM03_EUR, YM04_EUR, YM05_EUR, YM06_EUR, YM07_EUR, YM08_EUR, YM09_EUR, YM10_EUR, YM11_EUR, YM12_EUR,<br />
 YM01_TRL, YM02_TRL, YM03_TRL, YM04_TRL, YM05_TRL, YM06_TRL, YM07_TRL, YM08_TRL, YM09_TRL, YM10_TRL, YM11_TRL, YM12_TRL)<br />
 values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11)&#8217;<br />
 USING<br />
 v_sr_no,<br />
 v_data_array(1),<br />
 to_number(v_data_array(2)),<br />
 v_data_array(3),<br />
 v_data_array(4),<br />
 v_data_array(5),<br />
 v_data_array(6),<br />
 to_number(v_data_array(7)),<br />
 to_number(v_data_array(8)),<br />
 to_number(v_data_array(9)),<br />
 v_data_array(10);<br />
 &#8212; Clear out<br />
 v_line := NULL;<br />
 v_sr_no := v_sr_no + 1;<br />
 END IF;</p>
<p>END LOOP;<br />
 END;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Uploading excel sheet using Oracle Application Express (APEX) by ahmet</title>
		<link>http://avdeo.com/2008/05/21/uploading-excel-sheet-using-oracle-application-express-apex/#comment-9096</link>
		<dc:creator><![CDATA[ahmet]]></dc:creator>
		<pubDate>Fri, 18 May 2012 08:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/?p=387#comment-9096</guid>
		<description><![CDATA[DECLARE
 v_blob_data       BLOB;
 v_blob_len        NUMBER;
 v_position        NUMBER;
 v_raw_chunk       RAW(10000);
 v_char      CHAR(1);
 c_chunk_len   number       := 1;
 v_line        VARCHAR2 (32767)        := NULL;
 v_data_array      wwv_flow_global.vc_arr2;
 v_rows number;
 v_sr_no number := 1;

BEGIN

delete from DWH.TMP_CITY_CODE_APEX;

-- Read data from wwv_flow_files
 select blob_content into v_blob_data
 from wwv_flow_files
 where last_updated = (select max(last_updated) from wwv_flow_files where UPDATED_BY = :APP_USER)
 and id = (select max(id) from wwv_flow_files where updated_by = :APP_USER);

v_blob_len := dbms_lob.getlength(v_blob_data);
 v_position := 1;

-- Read and convert binary to char
 WHILE ( v_position &lt;= v_blob_len ) LOOP
 v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
 v_char :=  chr(DWH.hex_to_decimal(rawtohex(v_raw_chunk)));
 v_line := v_line &#124;&#124; v_char;
 v_position := v_position + c_chunk_len;
 -- When a whole line is retrieved 
 IF v_char = CHR(10) THEN
 -- Convert comma to : to use wwv_flow_utilities 
 v_line := REPLACE (v_line, &#039;,&#039;, &#039;:&#039;);
-- Convert each column separated by : into array of data 
 v_data_array := wwv_flow_utilities.string_to_table (v_line);
 -- Insert data into target table 
 EXECUTE IMMEDIATE &#039;insert into TMP_APEX_CITY_CODE (CITY_CODE, YEAR, YM01,YM02,YM0,YM04,YM05,YM06,YM07,YM08,YM09,YM10,YM11,YM12,
 YM01_EUR, YM02_EUR, YM03_EUR, YM04_EUR, YM05_EUR, YM06_EUR, YM07_EUR, YM08_EUR, YM09_EUR, YM10_EUR, YM11_EUR, YM12_EUR,
 YM01_TRL, YM02_TRL, YM03_TRL, YM04_TRL, YM05_TRL, YM06_TRL, YM07_TRL, YM08_TRL, YM09_TRL, YM10_TRL, YM11_TRL, YM12_TRL)
 values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11)&#039;
 USING
 v_sr_no,
 v_data_array(1),
 to_number(v_data_array(2)),
 v_data_array(3),
 v_data_array(4),
 v_data_array(5),
 v_data_array(6),
 to_number(v_data_array(7)),
 to_number(v_data_array(8)),
 to_number(v_data_array(9)),
 v_data_array(10);
 -- Clear out
 v_line := NULL;
 v_sr_no := v_sr_no + 1;
 END IF;

END LOOP;
 END;]]></description>
		<content:encoded><![CDATA[<p>DECLARE<br />
 v_blob_data       BLOB;<br />
 v_blob_len        NUMBER;<br />
 v_position        NUMBER;<br />
 v_raw_chunk       RAW(10000);<br />
 v_char      CHAR(1);<br />
 c_chunk_len   number       := 1;<br />
 v_line        VARCHAR2 (32767)        := NULL;<br />
 v_data_array      wwv_flow_global.vc_arr2;<br />
 v_rows number;<br />
 v_sr_no number := 1;</p>
<p>BEGIN</p>
<p>delete from DWH.TMP_CITY_CODE_APEX;</p>
<p>&#8211; Read data from wwv_flow_files<br />
 select blob_content into v_blob_data<br />
 from wwv_flow_files<br />
 where last_updated = (select max(last_updated) from wwv_flow_files where UPDATED_BY = :APP_USER)<br />
 and id = (select max(id) from wwv_flow_files where updated_by = :APP_USER);</p>
<p>v_blob_len := dbms_lob.getlength(v_blob_data);<br />
 v_position := 1;</p>
<p>&#8211; Read and convert binary to char<br />
 WHILE ( v_position &lt;= v_blob_len ) LOOP<br />
 v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);<br />
 v_char :=  chr(DWH.hex_to_decimal(rawtohex(v_raw_chunk)));<br />
 v_line := v_line || v_char;<br />
 v_position := v_position + c_chunk_len;<br />
 &#8212; When a whole line is retrieved<br />
 IF v_char = CHR(10) THEN<br />
 &#8212; Convert comma to : to use wwv_flow_utilities<br />
 v_line := REPLACE (v_line, &#8216;,&#8217;, &#8216;:&#8217;);<br />
&#8211; Convert each column separated by : into array of data<br />
 v_data_array := wwv_flow_utilities.string_to_table (v_line);<br />
 &#8212; Insert data into target table<br />
 EXECUTE IMMEDIATE &#8216;insert into TMP_APEX_CITY_CODE (CITY_CODE, YEAR, YM01,YM02,YM0,YM04,YM05,YM06,YM07,YM08,YM09,YM10,YM11,YM12,<br />
 YM01_EUR, YM02_EUR, YM03_EUR, YM04_EUR, YM05_EUR, YM06_EUR, YM07_EUR, YM08_EUR, YM09_EUR, YM10_EUR, YM11_EUR, YM12_EUR,<br />
 YM01_TRL, YM02_TRL, YM03_TRL, YM04_TRL, YM05_TRL, YM06_TRL, YM07_TRL, YM08_TRL, YM09_TRL, YM10_TRL, YM11_TRL, YM12_TRL)<br />
 values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11)&#8217;<br />
 USING<br />
 v_sr_no,<br />
 v_data_array(1),<br />
 to_number(v_data_array(2)),<br />
 v_data_array(3),<br />
 v_data_array(4),<br />
 v_data_array(5),<br />
 v_data_array(6),<br />
 to_number(v_data_array(7)),<br />
 to_number(v_data_array(8)),<br />
 to_number(v_data_array(9)),<br />
 v_data_array(10);<br />
 &#8212; Clear out<br />
 v_line := NULL;<br />
 v_sr_no := v_sr_no + 1;<br />
 END IF;</p>
<p>END LOOP;<br />
 END;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle Database Lite 10g (OLite 10g) by o2h</title>
		<link>http://avdeo.com/2010/11/01/oracle-database-lite-10g-olite-10g/#comment-9094</link>
		<dc:creator><![CDATA[o2h]]></dc:creator>
		<pubDate>Wed, 09 May 2012 09:29:08 +0000</pubDate>
		<guid isPermaLink="false">http://avdeo.com/?p=789#comment-9094</guid>
		<description><![CDATA[Thank you.]]></description>
		<content:encoded><![CDATA[<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Identifying Locks on Objects using V$LOCKS by Olie</title>
		<link>http://avdeo.com/2008/06/21/identifying-locks-on-objects-using-vlocks/#comment-9093</link>
		<dc:creator><![CDATA[Olie]]></dc:creator>
		<pubDate>Sun, 06 May 2012 18:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/?p=406#comment-9093</guid>
		<description><![CDATA[THumbs upp for the article! This is very useful when we forgot to install Toad  :-)
This&#039;ll make us smarter..!]]></description>
		<content:encoded><![CDATA[<p>THumbs upp for the article! This is very useful when we forgot to install Toad  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
This&#8217;ll make us smarter..!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cleaner APEX URLs by J Gil</title>
		<link>http://avdeo.com/2008/08/07/cleaner-apex-urls/#comment-9084</link>
		<dc:creator><![CDATA[J Gil]]></dc:creator>
		<pubDate>Fri, 27 Apr 2012 11:57:52 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/?p=453#comment-9084</guid>
		<description><![CDATA[OK, I answered my own question by aading this to the page template/s

  window.parent.document.title = &quot;#TITLE#&quot;;
]]></description>
		<content:encoded><![CDATA[<p>OK, I answered my own question by aading this to the page template/s</p>
<p>  window.parent.document.title = &#8220;#TITLE#&#8221;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reducing datafile size to recover free space &#8211; Oracle Database 10g by N. Ivankin</title>
		<link>http://avdeo.com/2008/02/21/reducing-datafile-size-to-recover-free-space-oracle-database-10g/#comment-9083</link>
		<dc:creator><![CDATA[N. Ivankin]]></dc:creator>
		<pubDate>Fri, 27 Apr 2012 09:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/?p=209#comment-9083</guid>
		<description><![CDATA[Nice article!
I think, this script http://nikolayivankin.wordpress.com/2012/04/27/useful-scripts-get-a-list-of-objects-to-be-moved-for-a-data-file-resize/ will be useful for your readers.]]></description>
		<content:encoded><![CDATA[<p>Nice article!<br />
I think, this script <a href="http://nikolayivankin.wordpress.com/2012/04/27/useful-scripts-get-a-list-of-objects-to-be-moved-for-a-data-file-resize/" rel="nofollow">http://nikolayivankin.wordpress.com/2012/04/27/useful-scripts-get-a-list-of-objects-to-be-moved-for-a-data-file-resize/</a> will be useful for your readers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cleaner APEX URLs by J Gil</title>
		<link>http://avdeo.com/2008/08/07/cleaner-apex-urls/#comment-9082</link>
		<dc:creator><![CDATA[J Gil]]></dc:creator>
		<pubDate>Thu, 26 Apr 2012 15:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://advait.wordpress.com/?p=453#comment-9082</guid>
		<description><![CDATA[Hi,
Good post.
I&#039;ve tried it and it works fine but I&#039;ve got a query. By adding the frame we lose the page title in the window title bar which could make life more difficult when communicating with users as it will be more difficult to find out which page they are in.
Any ideas or suggestions on how to workaround this?

Many thanks]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
Good post.<br />
I&#8217;ve tried it and it works fine but I&#8217;ve got a query. By adding the frame we lose the page title in the window title bar which could make life more difficult when communicating with users as it will be more difficult to find out which page they are in.<br />
Any ideas or suggestions on how to workaround this?</p>
<p>Many thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

