<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: %ds2csv - how to remove qouble quote from each field in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47352#M6163</link>
    <description>Thanks Cynthia</description>
    <pubDate>Tue, 20 Jul 2010 06:03:42 GMT</pubDate>
    <dc:creator>kedar</dc:creator>
    <dc:date>2010-07-20T06:03:42Z</dc:date>
    <item>
      <title>%ds2csv - how to remove qouble quote from each field</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47347#M6158</link>
      <description>%ds2csv - how to remove qouble quote from each field in output files</description>
      <pubDate>Mon, 12 Jul 2010 06:32:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47347#M6158</guid>
      <dc:creator>kedar</dc:creator>
      <dc:date>2010-07-12T06:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: %ds2csv - how to remove qouble quote from each field</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47348#M6159</link>
      <description>Share your code that is contributing to the condition - also, did you review the available documentation?  And, knowing your SAS version, OS platform, as well as contributing your code and possibly even a sample output row with the condition revealed would be most helpful.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
Recommended Google advanced search argument, this topic / post:&lt;BR /&gt;
&lt;BR /&gt;
ds2csv site:sas.com</description>
      <pubDate>Mon, 12 Jul 2010 12:49:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47348#M6159</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-07-12T12:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: %ds2csv - how to remove qouble quote from each field</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47349#M6160</link>
      <description>Hi:&lt;BR /&gt;
  Do you want to remove the quotes from EACH field or only from the numeric fields???&lt;BR /&gt;
   &lt;BR /&gt;
  You might try using the ODS CSV method of creating a CSV file instead of %DS2CSV. It only quotes the character fields and leaves the numeric fields unquoted.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
%ds2csv (data=sashelp.class, runmode=b, csvfile=c:\temp\ds_method.csv);&lt;BR /&gt;
                                &lt;BR /&gt;
ods csv file='c:\temp\alt_method.csv';&lt;BR /&gt;
proc print data=sashelp.class;&lt;BR /&gt;
run;&lt;BR /&gt;
ods csv close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Mon, 12 Jul 2010 14:24:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47349#M6160</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-07-12T14:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: %ds2csv - how to remove qouble quote from each field</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47350#M6161</link>
      <description>Hi, &lt;BR /&gt;
&lt;BR /&gt;
I want to remove quotes from EACH field. &lt;BR /&gt;
&lt;BR /&gt;
I have input SAS table. I want to execute above code in mainframe. It will work?</description>
      <pubDate>Wed, 14 Jul 2010 07:17:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47350#M6161</guid>
      <dc:creator>kedar</dc:creator>
      <dc:date>2010-07-14T07:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: %ds2csv - how to remove qouble quote from each field</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47351#M6162</link>
      <description>ODS CSV will work on the mainframe (as long as you have SAS 8.2 or higher). The only difference is that the FILE= option would point to the mainframe file that you were creating, instead of a C drive location. However, unless your file is all numeric variables, it sounds like ODS CSV won't do what you want. When you use ODS CSV, character values are still quoted.&lt;BR /&gt;
 &lt;BR /&gt;
You may need to investigate writing a DATA step program where you write out the variable values to an external (sequential) file without any quotes.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 14 Jul 2010 10:49:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47351#M6162</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-07-14T10:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: %ds2csv - how to remove qouble quote from each field</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47352#M6163</link>
      <description>Thanks Cynthia</description>
      <pubDate>Tue, 20 Jul 2010 06:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ds2csv-how-to-remove-qouble-quote-from-each-field/m-p/47352#M6163</guid>
      <dc:creator>kedar</dc:creator>
      <dc:date>2010-07-20T06:03:42Z</dc:date>
    </item>
  </channel>
</rss>

