<?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: DI Studio, can I remove quotes in file created by File Writer in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/366100#M87047</link>
    <description>&lt;P&gt;This only works if you know your dataset doesn't have empty columns; if it does, then setting that option makes things worse, as the incoming data aren't read properly.&amp;nbsp; unless, i suppose, we have separate metadata for the file being written an the file being output?&lt;/P&gt;</description>
    <pubDate>Mon, 12 Jun 2017 10:55:41 GMT</pubDate>
    <dc:creator>eavesdm</dc:creator>
    <dc:date>2017-06-12T10:55:41Z</dc:date>
    <item>
      <title>DI Studio, can I remove quotes in file created by File Writer</title>
      <link>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83940#M18126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wanna create a file based on data in a SAS table, using the File Writer transform in DI Studio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The generated code contains logic to enclose every variable in "-characters (qoutes).&amp;nbsp; This is not what I want.&amp;nbsp; Is there any way to remove these quotes?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The part of the code that is responsible for this looks something like this: (it is the quote variable that is responsilbe for this printing of quotes)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; quote='"';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; file "&amp;amp;FILENAME_CATO_AGG." TERMSTR=CRLF dlm=' ';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; quote +(-1) ReportDate +(-1) quote&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; quote +(-1) FolderName +(-1) quote&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 20:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83940#M18126</guid>
      <dc:creator>FredrikFerm</dc:creator>
      <dc:date>2013-03-20T20:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: DI Studio, can I remove quotes in file created by File Writer</title>
      <link>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83941#M18127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove the &lt;BR /&gt;"quote +(-1)" and "+(-1) quote" surrounding each of your variables that appear in the PUT statement. The +(-1) parts are there to snuggle the quotes against the values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 21:11:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83941#M18127</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-03-20T21:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: DI Studio, can I remove quotes in file created by File Writer</title>
      <link>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83942#M18128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, my question wasn't really how to change the code to do what I want, but instead how to make DI Studio generate code that does what I want....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can certainly change the code, but that would mean that I would not use the File Writer transform of DI Studio anymore, which is something that I want to continue (if possible) to do.&amp;nbsp; If I instead write the code directly I get into lots of maintainability issues in our system, which is primarily built using DI Studio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, to restate the question more clearly:&amp;nbsp; Can I make DI Studio generate code that does not put quotations around everything that is written to the file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Mar 2013 22:10:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83942#M18128</guid>
      <dc:creator>FredrikFerm</dc:creator>
      <dc:date>2013-03-20T22:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: DI Studio, can I remove quotes in file created by File Writer</title>
      <link>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83943#M18129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Times New Roman'; font-size: 12px;"&gt;You must select "Treat consecutive delimiters as a single delimiter" in the external file properties (File Parameters tab) to prevent the double quotation marks from being included in the data.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2014 10:12:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/83943#M18129</guid>
      <dc:creator>TwanManders</dc:creator>
      <dc:date>2014-05-26T10:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: DI Studio, can I remove quotes in file created by File Writer</title>
      <link>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/366100#M87047</link>
      <description>&lt;P&gt;This only works if you know your dataset doesn't have empty columns; if it does, then setting that option makes things worse, as the incoming data aren't read properly.&amp;nbsp; unless, i suppose, we have separate metadata for the file being written an the file being output?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 10:55:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/DI-Studio-can-I-remove-quotes-in-file-created-by-File-Writer/m-p/366100#M87047</guid>
      <dc:creator>eavesdm</dc:creator>
      <dc:date>2017-06-12T10:55:41Z</dc:date>
    </item>
  </channel>
</rss>

