 




<?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: How can I generate an output file from two input files choosing data from each files using utl_file package or any other way?</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 12:21:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83284</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Thu, 04 Nov 2010 21:24:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-83284</guid>
		<description><![CDATA[You are welcome, Techguys.
I&#039;m glad it worked.]]></description>
		<content:encoded><![CDATA[<p>You are welcome, Techguys.<br />
I&#8217;m glad it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techguys</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83282</link>
		<dc:creator>techguys</dc:creator>
		<pubDate>Thu, 04 Nov 2010 20:50:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-83282</guid>
		<description><![CDATA[Carlosdl,

You said on Nov. 2 &quot;When you reach the end of v3_input_file, the reading pointer does not automatically move back to the beginning of the file.
You might want to open and close v3_input_file on each iteration of the outer loop.&quot; 

It was a perfect solution for the problem I had. Finally I did the way you suggested and works fine now.  Thank you very much. You are great!]]></description>
		<content:encoded><![CDATA[<p>Carlosdl,</p>
<p>You said on Nov. 2 &#8220;When you reach the end of v3_input_file, the reading pointer does not automatically move back to the beginning of the file.<br />
You might want to open and close v3_input_file on each iteration of the outer loop.&#8221; </p>
<p>It was a perfect solution for the problem I had. Finally I did the way you suggested and works fine now.  Thank you very much. You are great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techguys</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83281</link>
		<dc:creator>techguys</dc:creator>
		<pubDate>Thu, 04 Nov 2010 19:55:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-83281</guid>
		<description><![CDATA[Hi Carlosdl,

The following is a slightly improved code. I have added the exception block for the outer block. The error message I am getting now is:
 &quot;29283. 00000 -  &quot;invalid file operation&quot;
*Cause:    An attempt was made to read from a file or directory that does
           not exist, or file or directory access was denied by the
           operating system.
*Action:   Verify file and directory access privileges on the file system,
           and if reading, verify that the file exists.
invalid_operation
&quot;  which is captured by the outer exception block. All files and directory exist. I do not know what else this error message indicates.


 set serveroutput on
  declare
  
    v3_input_file utl_file.file_type;
    v3_output_file  utl_file.file_type;
    v4_input_file utl_file.file_type;
    v4_output_file utl_file.file_type;
    
    v3_input_buffer   varchar2(32767);
    v4_input_buffer   varchar2(32767);
    
    
   end_of_file BOOLEAN := FALSE;
    myEOF  char(1);
  BEGIN
   
   v3_input_file := utl_file.fopen (&#039;ORALOAD&#039;,&#039;input_file.html&#039;, &#039;R&#039;,32767);
   v3_output_file := utl_file.fopen (&#039;ORALOAD&#039;,&#039;v3_output.html&#039;, &#039;W&#039;);-- open in read mode
   v4_input_file := utl_file.fopen (&#039;ORALOAD&#039;,&#039;template.html&#039;, &#039;R&#039;, 32767);
   v4_output_file := utl_file.fopen (&#039;ORALOAD&#039;,&#039;v4_output.html&#039;, &#039;W&#039;);
   
   if (utl_file.is_open(v4_input_file)) then
       v4_line_counter := 1;
       myEOF := &#039;N&#039;;
         
       WHILE myEOF = &#039;N&#039; loop
         end_of_file := FALSE;
         utl_file.get_line(v4_input_file,v4_input_buffer);
         
            -- WHILE NOT end_of_file
           BEGIN
             LOOP
             
              utl_file.get_line(v3_input_file,v3_input_buffer);
             --utl_file.put_line(v4_output_file,v3_input_buffer);
              dbms_output.put_line(&#039;v4_line_counter :&#039;&#124;&#124;v4_line_counter&#124;&#124;&#039; : &#039;&#124;&#124;v4_input_buffer);
            END LOOP ;
           EXCEPTION
            WHEN no_data_found THEN
            end_of_file := TRUE;
            EXIT;
             --dbms_output.put_line(&#039;Reached end-of-file.&#039;);
            END;
          
          v4_line_counter := v4_line_counter + 1;
       
       END LOOP;
    end if;  
 EXCEPTION
   WHEN UTL_FILE.INVALID_PATH THEN 
       DBMS_OUTPUT.PUT_LINE (&#039;invalid_path&#039;); RAISE;
   WHEN UTL_FILE.INVALID_MODE THEN 
       DBMS_OUTPUT.PUT_LINE (&#039;invalid_mode&#039;); RAISE;
   WHEN UTL_FILE.INVALID_FILEHANDLE THEN 
       DBMS_OUTPUT.PUT_LINE (&#039;invalid_filehandle in outer loop&#039;); RAISE;
    WHEN UTL_FILE.INVALID_OPERATION THEN 
       DBMS_OUTPUT.PUT_LINE (&#039;invalid_operation&#039;); RAISE;
    WHEN UTL_FILE.READ_ERROR THEN  
       DBMS_OUTPUT.PUT_LINE (&#039;read_error&#039;); RAISE;
    WHEN UTL_FILE.WRITE_ERROR THEN 
      DBMS_OUTPUT.PUT_LINE (&#039;write_error&#039;); RAISE;
    WHEN UTL_FILE.INTERNAL_ERROR THEN 
      DBMS_OUTPUT.PUT_LINE (&#039;internal_error&#039;); RAISE;
    when NO_DATA_FOUND then
       myEOF := &#039;Y&#039;;
       utl_file.fclose(v4_input_file);
   WHEN OTHERS THEN
     raise_application_error(-20001,&#039;An error was encountered - &#039;&#124;&#124;SQLCODE&#124;&#124;&#039; -ERROR- &#039;&#124;&#124;SQLERRM);
   END ; --MULTIPLE_CURSORS_PROC;]]></description>
		<content:encoded><![CDATA[<p>Hi Carlosdl,</p>
<p>The following is a slightly improved code. I have added the exception block for the outer block. The error message I am getting now is:<br />
 &#8220;29283. 00000 &#8211;  &#8220;invalid file operation&#8221;<br />
*Cause:    An attempt was made to read from a file or directory that does<br />
           not exist, or file or directory access was denied by the<br />
           operating system.<br />
*Action:   Verify file and directory access privileges on the file system,<br />
           and if reading, verify that the file exists.<br />
invalid_operation<br />
&#8221;  which is captured by the outer exception block. All files and directory exist. I do not know what else this error message indicates.</p>
<p> set serveroutput on<br />
  declare</p>
<p>    v3_input_file utl_file.file_type;<br />
    v3_output_file  utl_file.file_type;<br />
    v4_input_file utl_file.file_type;<br />
    v4_output_file utl_file.file_type;</p>
<p>    v3_input_buffer   varchar2(32767);<br />
    v4_input_buffer   varchar2(32767);</p>
<p>   end_of_file BOOLEAN := FALSE;<br />
    myEOF  char(1);<br />
  BEGIN</p>
<p>   v3_input_file := utl_file.fopen (&#8216;ORALOAD&#8217;,'input_file.html&#8217;, &#8216;R&#8217;,32767);<br />
   v3_output_file := utl_file.fopen (&#8216;ORALOAD&#8217;,'v3_output.html&#8217;, &#8216;W&#8217;);&#8211; open in read mode<br />
   v4_input_file := utl_file.fopen (&#8216;ORALOAD&#8217;,'template.html&#8217;, &#8216;R&#8217;, 32767);<br />
   v4_output_file := utl_file.fopen (&#8216;ORALOAD&#8217;,'v4_output.html&#8217;, &#8216;W&#8217;);</p>
<p>   if (utl_file.is_open(v4_input_file)) then<br />
       v4_line_counter := 1;<br />
       myEOF := &#8216;N&#8217;;</p>
<p>       WHILE myEOF = &#8216;N&#8217; loop<br />
         end_of_file := FALSE;<br />
         utl_file.get_line(v4_input_file,v4_input_buffer);</p>
<p>            &#8212; WHILE NOT end_of_file<br />
           BEGIN<br />
             LOOP</p>
<p>              utl_file.get_line(v3_input_file,v3_input_buffer);<br />
             &#8211;utl_file.put_line(v4_output_file,v3_input_buffer);<br />
              dbms_output.put_line(&#8216;v4_line_counter :&#8217;||v4_line_counter||&#8217; : &#8216;||v4_input_buffer);<br />
            END LOOP ;<br />
           EXCEPTION<br />
            WHEN no_data_found THEN<br />
            end_of_file := TRUE;<br />
            EXIT;<br />
             &#8211;dbms_output.put_line(&#8216;Reached end-of-file.&#8217;);<br />
            END;</p>
<p>          v4_line_counter := v4_line_counter + 1;</p>
<p>       END LOOP;<br />
    end if;<br />
 EXCEPTION<br />
   WHEN UTL_FILE.INVALID_PATH THEN<br />
       DBMS_OUTPUT.PUT_LINE (&#8216;invalid_path&#8217;); RAISE;<br />
   WHEN UTL_FILE.INVALID_MODE THEN<br />
       DBMS_OUTPUT.PUT_LINE (&#8216;invalid_mode&#8217;); RAISE;<br />
   WHEN UTL_FILE.INVALID_FILEHANDLE THEN<br />
       DBMS_OUTPUT.PUT_LINE (&#8216;invalid_filehandle in outer loop&#8217;); RAISE;<br />
    WHEN UTL_FILE.INVALID_OPERATION THEN<br />
       DBMS_OUTPUT.PUT_LINE (&#8216;invalid_operation&#8217;); RAISE;<br />
    WHEN UTL_FILE.READ_ERROR THEN<br />
       DBMS_OUTPUT.PUT_LINE (&#8216;read_error&#8217;); RAISE;<br />
    WHEN UTL_FILE.WRITE_ERROR THEN<br />
      DBMS_OUTPUT.PUT_LINE (&#8216;write_error&#8217;); RAISE;<br />
    WHEN UTL_FILE.INTERNAL_ERROR THEN<br />
      DBMS_OUTPUT.PUT_LINE (&#8216;internal_error&#8217;); RAISE;<br />
    when NO_DATA_FOUND then<br />
       myEOF := &#8216;Y&#8217;;<br />
       utl_file.fclose(v4_input_file);<br />
   WHEN OTHERS THEN<br />
     raise_application_error(-20001,&#8217;An error was encountered &#8211; &#8216;||SQLCODE||&#8217; -ERROR- &#8216;||SQLERRM);<br />
   END ; &#8211;MULTIPLE_CURSORS_PROC;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83268</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Thu, 04 Nov 2010 14:49:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-83268</guid>
		<description><![CDATA[Also, if you are getting some error message please let us know, and it would be nice to take a look at the code of your get_nextline procedure, so we don&#039;t have to assume what it does (if it handles the no_data_found exception internally, then part of my previous post becomes invalid).]]></description>
		<content:encoded><![CDATA[<p>Also, if you are getting some error message please let us know, and it would be nice to take a look at the code of your get_nextline procedure, so we don&#8217;t have to assume what it does (if it handles the no_data_found exception internally, then part of my previous post becomes invalid).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83266</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Thu, 04 Nov 2010 14:35:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-83266</guid>
		<description><![CDATA[I would have to test the procedure to be sure, but I think it is successfully reading all lines from v4_input_file but you don&#039;t see any output because after reading  the whole v3_input_file the first time, the line where you call dbms_output.put_line is never executed again, as every execution of  get_nextline (v3_input_file, tab_in(v3_line_counter), end_of_file) produces an error and makes the execution go to the exception block.

I would try adding some more debug messages.

Additionally, I don&#039;t see where you manage the no_data_found exception for the outer loop, which is needed to exit the loop when the end of 4_input_file is reached.]]></description>
		<content:encoded><![CDATA[<p>I would have to test the procedure to be sure, but I think it is successfully reading all lines from v4_input_file but you don&#8217;t see any output because after reading  the whole v3_input_file the first time, the line where you call dbms_output.put_line is never executed again, as every execution of  get_nextline (v3_input_file, tab_in(v3_line_counter), end_of_file) produces an error and makes the execution go to the exception block.</p>
<p>I would try adding some more debug messages.</p>
<p>Additionally, I don&#8217;t see where you manage the no_data_found exception for the outer loop, which is needed to exit the loop when the end of 4_input_file is reached.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techguys</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83262</link>
		<dc:creator>techguys</dc:creator>
		<pubDate>Thu, 04 Nov 2010 13:34:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-83262</guid>
		<description><![CDATA[Hi Carlosdl,

You said &quot;When you reach the end of v3_input_file, the reading pointer does not automatically move back to the beginning of the file&quot;.  Before the pointer goes back to the beginning of the v3_input_file , it has to come out of the its loop which is an inner loop and go to the outer loop to read the second line from v4_input_file to the buffer. But it does not do that. 

Here are how the execution takes place as I understand it:
1. First the pointer enters the outer loop and reads one line from the file.
2. After reading the first line in the outer loop (v4_input_file)the pointer enters the inner loop.
3. The pointer reads all lines from v3_input_file and exits its loop.

After going through the above steps the pointer comes out of the inner loop as well as the outer loop which must not be… at least according to my understanding. 
I expect the pointer has to go back to the v4_input_file inside the outer loop and read the remaining lines. Unfortunately it does not do that.  I suspect I am missing something. I do not know what I am missing.  This works fine with text files but not I guess with files type utl_file.
Thank you for looking into theis
. 
 
The outer loop at the beginning of the execution reads one line from the v4_input_file and the pointer goes to the inner It Here is my problem... the outer loop  reads only one time...at the initial execution and the pointer]]></description>
		<content:encoded><![CDATA[<p>Hi Carlosdl,</p>
<p>You said &#8220;When you reach the end of v3_input_file, the reading pointer does not automatically move back to the beginning of the file&#8221;.  Before the pointer goes back to the beginning of the v3_input_file , it has to come out of the its loop which is an inner loop and go to the outer loop to read the second line from v4_input_file to the buffer. But it does not do that. </p>
<p>Here are how the execution takes place as I understand it:<br />
1. First the pointer enters the outer loop and reads one line from the file.<br />
2. After reading the first line in the outer loop (v4_input_file)the pointer enters the inner loop.<br />
3. The pointer reads all lines from v3_input_file and exits its loop.</p>
<p>After going through the above steps the pointer comes out of the inner loop as well as the outer loop which must not be… at least according to my understanding.<br />
I expect the pointer has to go back to the v4_input_file inside the outer loop and read the remaining lines. Unfortunately it does not do that.  I suspect I am missing something. I do not know what I am missing.  This works fine with text files but not I guess with files type utl_file.<br />
Thank you for looking into theis<br />
. </p>
<p>The outer loop at the beginning of the execution reads one line from the v4_input_file and the pointer goes to the inner It Here is my problem&#8230; the outer loop  reads only one time&#8230;at the initial execution and the pointer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83159</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Tue, 02 Nov 2010 15:58:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-83159</guid>
		<description><![CDATA[Hi Techguys,

When you reach the end of v3_input_file, the reading pointer does not automatically move back to the beginning of the file.

You might want to open and close v3_input_file on each iteration of the outer loop.

Feel free to add any additional information you consider relevant.]]></description>
		<content:encoded><![CDATA[<p>Hi Techguys,</p>
<p>When you reach the end of v3_input_file, the reading pointer does not automatically move back to the beginning of the file.</p>
<p>You might want to open and close v3_input_file on each iteration of the outer loop.</p>
<p>Feel free to add any additional information you consider relevant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techguys</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-83089</link>
		<dc:creator>techguys</dc:creator>
		<pubDate>Mon, 01 Nov 2010 02:15:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-83089</guid>
		<description><![CDATA[Hello Carlosdl,
Thank you for responding to my question. Here below shown the code. 
To clarify my question let me add some words. I am  trying to read from two files and write onto the output file.  To test how it works I chose to display on the screen using DBMS_OUTPUT.PUT_LINE program.
This program reads  only one record from v4_input_file in the outer loop. It is not coming back to read the rest of the records after going through all lines inside v3_input_file in the inner loop. 
What is the thing that I missing? why the outer loop reads only one line in the v4_input_file?

Thank you very much for your help.
set serveroutput on
declare

v3_input_file    utl_file.file_type;
v4_input_file    utl_file.file_type;
v4_output_file    utl_file.file_type;

v3_input_buffer   archaizer(4000);
v4_input_buffer  varchar2(4000);
v4_output_buffer   varchar2(4000);
v3_line_counter   pls_integer:=1;
v4_line_counter   pls_integer:=1;

Begin

 v3_input_file := utl_file.fopen (&#039;ORALOAD&#039;,&#039;overview.html&#039;, &#039;R&#039;,32767); 
  v4_input_file := utl_file.fopen (&#039;ORALOAD&#039;,&#039;basic_template.html&#039;, &#039;R&#039;); 
     v4_output_file := utl_file.fopen(&#039;ORALOAD&#039;, &#039;outputfile.html&#039;, &#039;W&#039;);

if (utl_file.is_open(v4_input_file)) then --template file
          
        LOOP   --outer loop
           utl_file.get_line(v4_input_file,v4_input_buffer);
             
                   
           if (utl_file.is_open(v3_input_file)) then  --input file
            BEGIN
            WHILE NOT end_of_file   LOOP   --inner loop
              get_nextline (v3_input_file, tab_in(v3_line_counter), end_of_file);
              
             -- utl_file.put_line(v4_output_file,tab_in(v3_line_counter));
             dbms_output.put_line(&#039;v4_line_counter :&#039;&#124;&#124;v4_line_counter);
                                    
           END LOOP ;            
           EXCEPTION
           WHEN no_data_found THEN
            end_of_file := FALSE;
            
           END;
         end if;
        v4_line_counter := v4_line_counter + 1;
       END LOOP;
    end if;  
    
     utl_file.fclose(v3_input_file);
     utl_file.fclose(v4_output_file);
     
End;]]></description>
		<content:encoded><![CDATA[<p>Hello Carlosdl,<br />
Thank you for responding to my question. Here below shown the code.<br />
To clarify my question let me add some words. I am  trying to read from two files and write onto the output file.  To test how it works I chose to display on the screen using DBMS_OUTPUT.PUT_LINE program.<br />
This program reads  only one record from v4_input_file in the outer loop. It is not coming back to read the rest of the records after going through all lines inside v3_input_file in the inner loop.<br />
What is the thing that I missing? why the outer loop reads only one line in the v4_input_file?</p>
<p>Thank you very much for your help.<br />
set serveroutput on<br />
declare</p>
<p>v3_input_file    utl_file.file_type;<br />
v4_input_file    utl_file.file_type;<br />
v4_output_file    utl_file.file_type;</p>
<p>v3_input_buffer   archaizer(4000);<br />
v4_input_buffer  varchar2(4000);<br />
v4_output_buffer   varchar2(4000);<br />
v3_line_counter   pls_integer:=1;<br />
v4_line_counter   pls_integer:=1;</p>
<p>Begin</p>
<p> v3_input_file := utl_file.fopen (&#8216;ORALOAD&#8217;,'overview.html&#8217;, &#8216;R&#8217;,32767);<br />
  v4_input_file := utl_file.fopen (&#8216;ORALOAD&#8217;,'basic_template.html&#8217;, &#8216;R&#8217;);<br />
     v4_output_file := utl_file.fopen(&#8216;ORALOAD&#8217;, &#8216;outputfile.html&#8217;, &#8216;W&#8217;);</p>
<p>if (utl_file.is_open(v4_input_file)) then &#8211;template file</p>
<p>        LOOP   &#8211;outer loop<br />
           utl_file.get_line(v4_input_file,v4_input_buffer);</p>
<p>           if (utl_file.is_open(v3_input_file)) then  &#8211;input file<br />
            BEGIN<br />
            WHILE NOT end_of_file   LOOP   &#8211;inner loop<br />
              get_nextline (v3_input_file, tab_in(v3_line_counter), end_of_file);</p>
<p>             &#8212; utl_file.put_line(v4_output_file,tab_in(v3_line_counter));<br />
             dbms_output.put_line(&#8216;v4_line_counter :&#8217;||v4_line_counter);</p>
<p>           END LOOP ;<br />
           EXCEPTION<br />
           WHEN no_data_found THEN<br />
            end_of_file := FALSE;</p>
<p>           END;<br />
         end if;<br />
        v4_line_counter := v4_line_counter + 1;<br />
       END LOOP;<br />
    end if;  </p>
<p>     utl_file.fclose(v3_input_file);<br />
     utl_file.fclose(v4_output_file);</p>
<p>End;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-can-i-generate-an-ouput-file-from-two-input-files-choosing-data-from-each-files-using-utl_file-package-or-any-other-way/#comment-82988</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Thu, 28 Oct 2010 21:27:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-82988</guid>
		<description><![CDATA[Hi Techguys,

Can you post your current code, so we can take a look and suggest changes ?

Thanks,]]></description>
		<content:encoded><![CDATA[<p>Hi Techguys,</p>
<p>Can you post your current code, so we can take a look and suggest changes ?</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/10 queries in 0.060 seconds using memcached
Object Caching 379/385 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 13:37:01 -->