 




<?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 To create an CSV file in Mainframe (from Object star database)?</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-an-csv-file-in-mainframe-from-object-star-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-an-csv-file-in-mainframe-from-object-star-database/</link>
	<description></description>
	<lastBuildDate>Mon, 20 May 2013 18:21:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: ebieg</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-an-csv-file-in-mainframe-from-object-star-database/#comment-76158</link>
		<dc:creator>ebieg</dc:creator>
		<pubDate>Mon, 19 Apr 2010 12:55:14 +0000</pubDate>
		<guid isPermaLink="false">#comment-76158</guid>
		<description><![CDATA[Hi

Define an export table with the exact field names and lengths as the current table with the data. Then copy the data to the export table. When defining the export table you can specify the name of the csv file, dont forget to specify the .csv extension at the end of the file name when defining the export table.
Hope this helps.]]></description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Define an export table with the exact field names and lengths as the current table with the data. Then copy the data to the export table. When defining the export table you can specify the name of the csv file, dont forget to specify the .csv extension at the end of the file name when defining the export table.<br />
Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ari2009</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-an-csv-file-in-mainframe-from-object-star-database/#comment-75152</link>
		<dc:creator>ari2009</dc:creator>
		<pubDate>Wed, 24 Mar 2010 14:01:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-75152</guid>
		<description><![CDATA[I have to requirements, 

1) I need to extract data present in column A from a O* table, which is of of two columns &#039;A&#039; and &#039;B&#039;. The field value can be between 14 to 19 in length and numeric and the file should have a comma at the end of each record  ( e.g - the file extract should look like below

rec1 - 1234567891011121,

rec2 - 34567891011121,

rec3 - 1234567891011121111,

2) again, I need to read the same file after processing and load data

in Column &#039;B&#039; of the same table. the input file will look like  -

rec1 - 1234567891011121,1234567891011120

rec2 - 34567891011121,34567891011120

rec3 - 1234567891011121111,1234567891011121110

can any one suggest any solution to this , it will be a great help.

regards,

Ad]]></description>
		<content:encoded><![CDATA[<p>I have to requirements, </p>
<p>1) I need to extract data present in column A from a O* table, which is of of two columns &#8216;A&#8217; and &#8216;B&#8217;. The field value can be between 14 to 19 in length and numeric and the file should have a comma at the end of each record  ( e.g &#8211; the file extract should look like below</p>
<p>rec1 &#8211; 1234567891011121,</p>
<p>rec2 &#8211; 34567891011121,</p>
<p>rec3 &#8211; 1234567891011121111,</p>
<p>2) again, I need to read the same file after processing and load data</p>
<p>in Column &#8216;B&#8217; of the same table. the input file will look like  -</p>
<p>rec1 &#8211; 1234567891011121,1234567891011120</p>
<p>rec2 &#8211; 34567891011121,34567891011120</p>
<p>rec3 &#8211; 1234567891011121111,1234567891011121110</p>
<p>can any one suggest any solution to this , it will be a great help.</p>
<p>regards,</p>
<p>Ad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ari2009</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-create-an-csv-file-in-mainframe-from-object-star-database/#comment-71788</link>
		<dc:creator>ari2009</dc:creator>
		<pubDate>Sat, 19 Dec 2009 05:46:36 +0000</pubDate>
		<guid isPermaLink="false">#comment-71788</guid>
		<description><![CDATA[Hi,
is there any way to keep the length fixed for the table fields ?
in present code, if for a table field length is 10 , and the field value is of length 3, then the next fied value is starting from the 4th position in the file. if we need to do a file compare
on field by field , current code is not helpful for that. I need to hold the even the spaces for a field ..
e.g  field f1 of length 6 and f2 length 4.
value for f1 in record 1 -  333 and for f2 4666
value for f1 in record 2 -  22 and for f2 3366 expectation in the file format is  - 

record 1 : 333   4666
record2 : 22      3366

if any one can solve this ,will be a great help.]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
is there any way to keep the length fixed for the table fields ?<br />
in present code, if for a table field length is 10 , and the field value is of length 3, then the next fied value is starting from the 4th position in the file. if we need to do a file compare<br />
on field by field , current code is not helpful for that. I need to hold the even the spaces for a field ..<br />
e.g  field f1 of length 6 and f2 length 4.<br />
value for f1 in record 1 &#8211;  333 and for f2 4666<br />
value for f1 in record 2 &#8211;  22 and for f2 3366 expectation in the file format is  &#8211; </p>
<p>record 1 : 333   4666<br />
record2 : 22      3366</p>
<p>if any one can solve this ,will be a great help.</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 6/9 queries in 0.014 seconds using memcached
Object Caching 296/299 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-20 20:57:02 -->