 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; AS400 program</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/as400-program/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 21:33:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Program use</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/program-use/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/program-use/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 22:46:19 +0000</pubDate>
		<dc:creator>Jim482</dc:creator>
				<category><![CDATA[AS/400]]></category>
		<category><![CDATA[AS400 program]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/program-use/</guid>
		<description><![CDATA[New Discussion Post by ToddN2000]]></description>
				<content:encoded><![CDATA[New Discussion Post by ToddN2000]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/program-use/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SNDDST</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/snddst-7/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/snddst-7/#comments</comments>
		<pubDate>Mon, 27 Aug 2012 12:51:53 +0000</pubDate>
		<dc:creator>kingstoniseries</dc:creator>
				<category><![CDATA[AS400 admin]]></category>
		<category><![CDATA[AS400 program]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/snddst-7/</guid>
		<description><![CDATA[Question Edited by kingstoniseries]]></description>
				<content:encoded><![CDATA[Question Edited by kingstoniseries]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/snddst-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to remove the double quotes in CSV file in iSeries</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-remove-the-double-quotes-in-csv-file-in-iseries/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-remove-the-double-quotes-in-csv-file-in-iseries/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 11:59:00 +0000</pubDate>
		<dc:creator>iiiiiiiiiiiii</dc:creator>
				<category><![CDATA[AS400 program]]></category>
		<category><![CDATA[CLLE]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[CSV file format]]></category>
		<category><![CDATA[iSeries]]></category>
		<category><![CDATA[Shell commands]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi The command is to remove the double quotes present in CSV file. I have used one shell command. Strqsh cmd(Sed -e &#8216;s/&#8221;"//g&#8217; file name &#62; new file name) I have to write this command in CLLE program. CHGVAR     VAR(&#038;RPLC) VALUE(&#8216;Sed&#8217; *BCAT &#8216;-e&#8217; *BCAT +                  &#8216;s/&#8221;"//g&#8217; *BCAT &#8216;/&#8217; *TCAT &#038;USER +                            *TCAT &#038;WOUTFN [...]]]></description>
				<content:encoded><![CDATA[<p>Hi</p>
<p>The command is to remove the double quotes present in CSV file.</p>
<p>I have used one shell command.</p>
<p>Strqsh cmd(Sed -e &#8216;s/&#8221;"//g&#8217; file name &gt; new file name)</p>
<p>I have to write this command in CLLE program.</p>
<p>CHGVAR     VAR(&#038;RPLC) VALUE(&#8216;Sed&#8217; *BCAT &#8216;-e&#8217; *BCAT +      <br />
           &#8216;s/&#8221;"//g&#8217; *BCAT &#8216;/&#8217; *TCAT &#038;USER +              <br />
             *TCAT &#038;WOUTFN *TCAT &#8216;_US&#8217; *TCAT &#8216;_&#8217; *TCAT +  <br />
             &#038;WRKDT *TCAT &#8216;.csv&#8217; *bcat &#8216;&gt;&#8217; *bcat   +      <br />
             &#8216;/&#8217; *TCAT &#038;USER *TCAT &#8216;/&#8217; *TCAT &#038;WOUTFN +    <br />
            *TCAT &#8216;_US&#8217; *TCAT &#8216;_&#8217; *TCAT &#038;WRKDT *TCAT +    <br />
            &#8216;.csv&#8217;)                                       <br />
strqsh     cmd(&#038;rplc)       </p>
<p>This CHGVAR is throwing eroor.can u pls help me out in framing this command.</p>
<p>Thanks</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-remove-the-double-quotes-in-csv-file-in-iseries/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</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/9 queries in 0.016 seconds using memcached
Object Caching 442/443 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 02:24:15 -->