<?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: Libraries View Won't Update in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463151#M5549</link>
    <description>&lt;P&gt;Are you using interactive mode?&amp;nbsp; That's the "go interactive" icon you can select (and you can also set your preferences to always start in interactive mode) which lets you submit one line at a time like you can in display manager.&amp;nbsp; You can see the details in the&amp;nbsp;&lt;A href="http://go.documentation.sas.com/?activeCdc=webeditorcdc&amp;amp;cdcId=sasstudiocdc&amp;amp;cdcVersion=3.71&amp;amp;docsetId=webeditorug&amp;amp;docsetTarget=n0t5b6xetubfnzn1mhjyfg1heypq.htm&amp;amp;locale=en&amp;amp;docsetVersion=3.71#n11xx6ur7wcjg8n0zehuy7oldnlc" target="_self"&gt;user's guide&lt;/A&gt;&amp;nbsp;but the short story is that an interactive mode tab is pretty much its own SAS session separate from the rest of the interface.&amp;nbsp; So libraries you set up don't show in the navigation though you can see them with PROC CONTENTS or whatever.&amp;nbsp; And interactive mode makes use of WEBWORK for temporary files since it can't access WORK from the main Studio SAS session.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this a delightful user experience?&amp;nbsp; Nope.&amp;nbsp; And I do what I can to discourage folks from using interactive mode unless they're aware of its limitations.&amp;nbsp; We are working on a better way to do this (essentially offering an interactive mode type experience but in a more obviously separate perspective) since many users want to use interactive PROC's they way they're designed to be used.&lt;/P&gt;</description>
    <pubDate>Thu, 17 May 2018 20:28:26 GMT</pubDate>
    <dc:creator>AmyP_sas</dc:creator>
    <dc:date>2018-05-17T20:28:26Z</dc:date>
    <item>
      <title>Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463059#M5539</link>
      <description>&lt;P&gt;When using SAS Studio, I can create and work with libraries as you would expect, but this is never seen by the 'Libraries' tab.&amp;nbsp; Running this shows the data sets are created and available for use, but this is never seen by the 'Libraries' tab:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname desktop "C:\Users\L6ZY\Desktop";

proc import datafile="C:\Users\L6ZY\Desktop\my_csv.csv" dbms=csv out=test; run;

proc sql noprint;
create table test_2 as select * from test;
create table desktop.test as select * from test;
quit;

proc datasets lib=work;
run;

proc datasets lib=desktop;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After running this, the log shows there are no issues:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: This session is in interactive mode.
 
 1          libname desktop "C:\Users\L6ZY\Desktop";
 NOTE: Libref DESKTOP was successfully assigned as follows: 
       Engine:        V9 
       Physical Name: C:\Users\L6ZY\Desktop
 2          
 3          proc import datafile="C:\Users\L6ZY\Desktop\approved_list.csv" dbms=csv out=test;
 3        !                                                                                   run;
 NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary 
 parameter values will be saved to WORK.PARMS.PARMS.SLIST.
 4           /**********************************************************************
 5           *   PRODUCT:   SAS
 6           *   VERSION:   9.4
 7           *   CREATOR:   External File Interface
 8           *   DATE:      17MAY18
 9           *   DESC:      Generated SAS Datastep Code
 10          *   TEMPLATE SOURCE:  (None Specified.)
 11          ***********************************************************************/
 12             data WORK.TEST    ;
 13             %let _EFIERR_ = 0; /* set the ERROR detection macro variable */
 14             infile 'C:\Users\L6ZY\Desktop\approved_list.csv' delimiter = ',' MISSOVER DSD
 14       ! lrecl=32767 firstobs=2 ;
 15                informat V1 $83. ;
 16                informat V2 $22. ;
 17                informat V3 $26. ;
 18                informat V4 $363. ;
 19                informat V5 $25. ;
 20                informat V6 $21. ;
 21                informat V7 $19. ;
 22                informat V8 $14. ;
 23                format V1 $83. ;
 24                format V2 $22. ;
 25                format V3 $26. ;
 26                format V4 $363. ;
 27                format V5 $25. ;
 28                format V6 $21. ;
 29                format V7 $19. ;
 30                format V8 $14. ;
 31             input
 32                         V1 $
 33                         V2 $
 34                         V3 $
 35                         V4 $
 36                         V5 $
 37                         V6 $
 38                         V7 $
 39                         V8 $
 40             ;
 41             if _ERROR_ then call symputx('_EFIERR_',1);  /* set ERROR detection macro variable
 41       ! */
 42             run;
 NOTE: The infile 'C:\Users\L6ZY\Desktop\approved_list.csv' is:
       Filename=C:\Users\L6ZY\Desktop\approved_list.csv,
       RECFM=V,LRECL=32767,File Size (bytes)=271909,
       Last Modified=16May2018:17:36:50,
       Create Time=16May2018:17:36:50
 
 NOTE: 816 records were read from the infile 'C:\Users\L6ZY\Desktop\approved_list.csv'.
       The minimum record length was 88.
       The maximum record length was 756.
 NOTE: The data set WORK.TEST has 816 observations and 8 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.02 seconds
       cpu time            0.01 seconds
       
 
 816 rows created in WORK.TEST from C:\Users\L6ZY\Desktop\approved_list.csv.
   
   
   
 NOTE: WORK.TEST data set was successfully created.
 NOTE: The data set WORK.TEST has 816 observations and 8 variables.
 NOTE: PROCEDURE IMPORT used (Total process time):
       real time           0.23 seconds
       cpu time            0.14 seconds
       
 
 43         
 44         proc sql noprint;
 45         create table test_2 as select * from test;
 NOTE: Table WORK.TEST_2 created, with 816 rows and 8 columns.
 
 46         create table desktop.test as select * from test;
 NOTE: Table DESKTOP.TEST created, with 816 rows and 8 columns.
 
 47         quit;
 NOTE: PROCEDURE SQL used (Total process time):
       real time           0.04 seconds
       cpu time            0.04 seconds
       
 
 48         
 49         proc datasets lib=work;
                                             Directory
 
                      Libref         WORK                                     
                      Engine         V9                                       
                      Physical Name  C:\MySASv94\saswork\_TD14824_L76364_\Prc3
                      Filename       C:\MySASv94\saswork\_TD14824_L76364_\Prc3
 
 
                                 Member       File
                     #  Name     Type         Size  Last Modified
 
                     1  PARMS    CATALOG     17408  05/17/2018 12:50:09        
                     2  REGSTRY  ITEMSTOR    25600  05/17/2018 12:49:55        
                     3  SASGOPT  CATALOG      5120  05/17/2018 12:49:56        
                     4  TEST     DATA       589824  05/17/2018 12:50:09        
                     5  TEST_2   DATA       589824  05/17/2018 12:50:09        
 50         run;
 
 51         
 
 NOTE: PROCEDURE DATASETS used (Total process time):
       real time           0.41 seconds
       cpu time            0.15 seconds
       
 
 52         proc datasets lib=desktop;
                                             Directory
 
                                Libref         DESKTOP              
                                Engine         V9                   
                                Physical Name  C:\Users\L6ZY\Desktop
                                Filename       C:\Users\L6ZY\Desktop
 
 
                                Member     File
                       #  Name  Type       Size  Last Modified
 
                       1  TEST  DATA     589824  05/17/2018 12:50:09        
 53         run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is confirmed by the results tab:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 533px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20598iF05392CC1CC84E30/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;However, the 'Libraries' tab does not change, and it shows my 'Work' library as empty.&amp;nbsp; Attempting to refresh does not change anything.&amp;nbsp; For what it's worth, I have no issues running this in 'regular' SAS or EG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 227px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20597iF0F4D9EFC0C88A3F/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 16:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463059#M5539</guid>
      <dc:creator>mark4</dc:creator>
      <dc:date>2018-05-17T16:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463061#M5540</link>
      <description>This sounds like a tech support question, and they'll want the version of SAS Studio as well.</description>
      <pubDate>Thu, 17 May 2018 17:00:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463061#M5540</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-05-17T17:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463062#M5541</link>
      <description>&lt;P&gt;Did you do anything to refresh the libraries tab? Web browsers, ie SAS Studio, usually won't change a display until the link is actually refreshed.&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 17:02:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463062#M5541</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-05-17T17:02:53Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463063#M5542</link>
      <description>&lt;P&gt;Yes.&amp;nbsp; Hitting the refresh icon on the Libraries tab does not change anything.&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 17:05:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463063#M5542</guid>
      <dc:creator>mark4</dc:creator>
      <dc:date>2018-05-17T17:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463151#M5549</link>
      <description>&lt;P&gt;Are you using interactive mode?&amp;nbsp; That's the "go interactive" icon you can select (and you can also set your preferences to always start in interactive mode) which lets you submit one line at a time like you can in display manager.&amp;nbsp; You can see the details in the&amp;nbsp;&lt;A href="http://go.documentation.sas.com/?activeCdc=webeditorcdc&amp;amp;cdcId=sasstudiocdc&amp;amp;cdcVersion=3.71&amp;amp;docsetId=webeditorug&amp;amp;docsetTarget=n0t5b6xetubfnzn1mhjyfg1heypq.htm&amp;amp;locale=en&amp;amp;docsetVersion=3.71#n11xx6ur7wcjg8n0zehuy7oldnlc" target="_self"&gt;user's guide&lt;/A&gt;&amp;nbsp;but the short story is that an interactive mode tab is pretty much its own SAS session separate from the rest of the interface.&amp;nbsp; So libraries you set up don't show in the navigation though you can see them with PROC CONTENTS or whatever.&amp;nbsp; And interactive mode makes use of WEBWORK for temporary files since it can't access WORK from the main Studio SAS session.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this a delightful user experience?&amp;nbsp; Nope.&amp;nbsp; And I do what I can to discourage folks from using interactive mode unless they're aware of its limitations.&amp;nbsp; We are working on a better way to do this (essentially offering an interactive mode type experience but in a more obviously separate perspective) since many users want to use interactive PROC's they way they're designed to be used.&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 20:28:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463151#M5549</guid>
      <dc:creator>AmyP_sas</dc:creator>
      <dc:date>2018-05-17T20:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463156#M5550</link>
      <description>&lt;P&gt;Thanks.&amp;nbsp; The issue was in fact interactive mode.&amp;nbsp; Looking at the documentation, I should be able to see created data that doesn't live in the work folder by refreshing the Library tab.&amp;nbsp; I wasn't able to get this to work, but was that because you can only see new data once it has been assigned to a library before you start interactive mode?&amp;nbsp; But yeah, based on all this, it is a pain and something I will keep disabled.&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 20:46:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/463156#M5550</guid>
      <dc:creator>mark4</dc:creator>
      <dc:date>2018-05-17T20:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464349#M5565</link>
      <description>&lt;P&gt;That did fix it, but SAS Studio opens in interactive mode by default.&amp;nbsp; Is there an option to disable this so that non-interactive mode is the default setting, and if I want interactive mode, I have to manually turn it on?&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 12:16:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464349#M5565</guid>
      <dc:creator>mark4</dc:creator>
      <dc:date>2018-05-23T12:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464385#M5566</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Within the General section of the Preference for SAS Studio, there is an option to "Start new programs in interactive mode."&amp;nbsp; Make sure that is unchecked.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="interactiveModeStartup.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20718i6821AA396C9729EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="interactiveModeStartup.jpg" alt="interactiveModeStartup.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 13:52:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464385#M5566</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2018-05-23T13:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464409#M5568</link>
      <description>&lt;P&gt;You must be using a newer version.&amp;nbsp; I'm running 3.2 and only have this.&amp;nbsp; (Further details on my version are below.)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 510px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20721iC0B4ADB1018D3899/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;STRONG&gt;Release: 3.2 (Single User)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Supported browsers:&lt;/STRONG&gt;&lt;UL&gt;&lt;LI&gt;Microsoft Internet Explorer 9, 10, 11&lt;/LI&gt;&lt;LI&gt;Mozilla Firefox 21+&lt;/LI&gt;&lt;LI&gt;Google Chrome 27+&lt;/LI&gt;&lt;LI&gt;Apple Safari 6.0+ (on Apple OS X)&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;P&gt;&lt;STRONG&gt;Build date:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Thursday, July 24, 2014, 7:59 AM&lt;BR /&gt;&lt;STRONG&gt;SAS Mid-tier release:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Thursday, July 24, 2014, 7:57 AM&lt;BR /&gt;&lt;STRONG&gt;SAS release:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;9.04.01M2P07232014&lt;BR /&gt;&lt;STRONG&gt;SAS platform:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;X64_8PRO WIN&lt;BR /&gt;&lt;STRONG&gt;Site name:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;**&lt;/SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;Site number:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;**&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Copyright © 2012-2014, SAS Institute Inc., Cary, NC, USA.&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 15:01:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464409#M5568</guid>
      <dc:creator>mark4</dc:creator>
      <dc:date>2018-05-23T15:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464412#M5569</link>
      <description>&lt;P&gt;Yes, in your screen shot, there is an option to "Start new programs in interactive mode" and it's currently checked.&amp;nbsp; That option needs to be unchecked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="studio32interactive.png" style="width: 510px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20722iD6FD5744F4BE7676/image-size/large?v=v2&amp;amp;px=999" role="button" title="studio32interactive.png" alt="studio32interactive.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 15:09:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464412#M5569</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2018-05-23T15:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464417#M5570</link>
      <description>Ha...thanks. I have no idea how I missed something so obvious.</description>
      <pubDate>Wed, 23 May 2018 15:13:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464417#M5570</guid>
      <dc:creator>mark4</dc:creator>
      <dc:date>2018-05-23T15:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Libraries View Won't Update</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464418#M5571</link>
      <description>&lt;P&gt;It happens! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp; Glad to help.&lt;/P&gt;</description>
      <pubDate>Wed, 23 May 2018 15:14:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Libraries-View-Won-t-Update/m-p/464418#M5571</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2018-05-23T15:14:35Z</dc:date>
    </item>
  </channel>
</rss>

