<?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: Proc Import CSV Error in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741007#M231584</link>
    <description>&lt;P&gt;&lt;STRONG&gt;You can ignore it.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is just a bug in the design/coding of PROC IMPORT.&amp;nbsp; The procedure either does not properly test whether it is allowed to create such an object before trying to make it.&amp;nbsp; Or it does test and writes that useless message when it cannot.&amp;nbsp; But not being able to make that object does not prevent the procedure from working.&amp;nbsp; So I have no idea why after all these years SAS has not removed that confusing message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 May 2021 03:16:43 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2021-05-13T03:16:43Z</dc:date>
    <item>
      <title>Proc Import CSV Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/740994#M231576</link>
      <description>&lt;P&gt;proc import out=&lt;BR /&gt;datafile=" "&lt;BR /&gt;DBMS=csv&lt;/P&gt;&lt;P&gt;out =&lt;/P&gt;&lt;P&gt;REPLACE;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This basic syntax is resulting in the following error:&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;BR /&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know how to solve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 01:35:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/740994#M231576</guid>
      <dc:creator>mstjean</dc:creator>
      <dc:date>2021-05-13T01:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import CSV Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/740998#M231578</link>
      <description>&lt;P&gt;Are you seeing the following messages when starting SAS?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-05-13_10h58_36.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59305iF484D6F3D0673FE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-05-13_10h58_36.png" alt="2021-05-13_10h58_36.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, it is likely that the previously launched SAS has locked some files in the SASUSER library and you do not have write permission.&lt;BR /&gt;The NOTE itself in PROC IMPORT is not a problem even if it appears, but if you are concerned about it, quit all SASs once and start SAS again, then run the program again and check if the message disappears.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternatively, you may have specified -RSASUSER as an option at startup. This is a mode that forces SASUSER to open in read-only mode.&lt;/P&gt;
&lt;P&gt;This is&amp;nbsp;set in the startup shortcut and configuration file sasv9.cfg.&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 02:10:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/740998#M231578</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2021-05-13T02:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import CSV Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741007#M231584</link>
      <description>&lt;P&gt;&lt;STRONG&gt;You can ignore it.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is just a bug in the design/coding of PROC IMPORT.&amp;nbsp; The procedure either does not properly test whether it is allowed to create such an object before trying to make it.&amp;nbsp; Or it does test and writes that useless message when it cannot.&amp;nbsp; But not being able to make that object does not prevent the procedure from working.&amp;nbsp; So I have no idea why after all these years SAS has not removed that confusing message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 03:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741007#M231584</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-05-13T03:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import CSV Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741011#M231588</link>
      <description>&lt;P&gt;Thanks for this clarification, I was stumped otherwise. As you mentioned the procedure completed regardless.&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 03:59:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741011#M231588</guid>
      <dc:creator>mstjean</dc:creator>
      <dc:date>2021-05-13T03:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import CSV Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741012#M231589</link>
      <description>&lt;P&gt;This note is the result of your SAS session having the SAS option RSASUSER turned on - your SASUSER library is set to read-only. This is typically a default option with recent SAS 9 installations. You can confirm this by running PROC OPTIONS and checking the setting in the SAS log.&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 04:05:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741012#M231589</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-05-13T04:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import CSV Error</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741170#M231656</link>
      <description>&lt;P&gt;Not related to the message but a suggestion:&lt;/P&gt;
&lt;P&gt;Use the GUESSINGROWS=MAX; opton when using proc import with delimited files. The default behavior will only examine the first few rows of the data and may make guesses as to variable type or length poorly with variables that are infrequent or have differing lengths such as a "comment" field.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Better, use the documentation of the source file contents to write a data step to set properties correctly. Values like 20210512 will be read as numbers by proc import and not the date it likely is, account numbers like like "00031245" will be read as numeric by Proc Import and lose the leading zeroes. Which means you won't be able to tell the difference between accounts "00031245" and "31245" if both are in the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hybrid approach: use proc import once to generate the data step to read the data, copy from the log, paste into the editor, clean up the code, check that the assigned informats make sense, add labels, and possibly search and replace the default variable names to something that&amp;nbsp; makes more sense.&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 16:41:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-CSV-Error/m-p/741170#M231656</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-05-13T16:41:41Z</dc:date>
    </item>
  </channel>
</rss>

