<?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: Stuck on opening a table but don't understand fix in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955854#M42955</link>
    <description>&lt;P&gt;I'd suggest trying a different web browser to see if that helps. What one are you using now?&lt;/P&gt;</description>
    <pubDate>Sun, 12 Jan 2025 21:08:33 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2025-01-12T21:08:33Z</dc:date>
    <item>
      <title>Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955112#M42912</link>
      <description>&lt;P&gt;Looking for help.&amp;nbsp; I am using SAS ondemand for Academics.&amp;nbsp; I clicked on a sas data set I uploaded.&amp;nbsp; Now it just reads "Opening a table" and has been doing this for about 24 hours.&amp;nbsp; I found that others have experienced this and the posts mention shutting down the VM.&amp;nbsp; I don't understand this.&amp;nbsp; I am not using any special software to access Sas ondemand (as far as I know anyway); just the browser.&amp;nbsp; Appreciate any help.&amp;nbsp; Thanks,&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jan 2025 20:11:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955112#M42912</guid>
      <dc:creator>monyakjt</dc:creator>
      <dc:date>2025-01-04T20:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955119#M42913</link>
      <description>&lt;P&gt;How large was the dataset you uploaded?&lt;/P&gt;
&lt;P&gt;Was it a SAS dataset? Or do you mean some other type of file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead oif trying to open the file interactively try running some code to look at the file and just print PART of it.&lt;/P&gt;
&lt;P&gt;For example run PROC CONTENTS on the SAS dataset to see what variables it has and how many observations.&lt;/P&gt;
&lt;P&gt;Soi if you uploaded a file name memname.sas7bdat then you migth run something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mylib '...path of the directory where you save the file...';
proc contents data=mylib.memname;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or run PROC PRINT for just the first few observations.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=mylib.memname(obs=3);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If it is just a TEXT file, such as a CSV file, then run a data step to see what is in it.&amp;nbsp; For example a program like this will dump the first 5 lines from the file to the SAS log.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  infile 'fully qualified name of file'  obs=5;
  input;
  list;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Jan 2025 01:12:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955119#M42913</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-01-05T01:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955328#M42926</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your suggestion is what I should have done, I suppose.&amp;nbsp; But the problem is I can't even execute any SAS code now, because the system is stuck.&amp;nbsp; Before it was stuck on opening a table.&amp;nbsp; Now, I just tried it again, and it seems to be stuck just on logging in.&amp;nbsp; It just says "initializing" and is hanging.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 15:14:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955328#M42926</guid>
      <dc:creator>monyakjt</dc:creator>
      <dc:date>2025-01-07T15:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955445#M42934</link>
      <description>&lt;P&gt;I don't know if this will help, but I suggest you delete all browsing history in your web browser, reboot your PC and then try signing in again. The &lt;A href="https://support.sas.com/ondemand/caq_new.html" target="_blank" rel="noopener"&gt;SODA FAQ&lt;/A&gt; provides some additional things to try.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 02:54:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955445#M42934</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-01-08T02:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955450#M42935</link>
      <description>&lt;P&gt;I have tried this one once I faced this issue.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 05:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955450#M42935</guid>
      <dc:creator>alexjordan</dc:creator>
      <dc:date>2025-01-08T05:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955853#M42954</link>
      <description>&lt;P&gt;I tried what you suggested.&amp;nbsp; It did allow me to get back into SAS studio (before it got stuck on "initializing" while signing in).&amp;nbsp; But it is still stuck on "opening a table".&amp;nbsp; It is over a week, now.&amp;nbsp; I would have thought this process would have stopped on its own at some point.&amp;nbsp; Any other ideas?&amp;nbsp; Appreciate any help, thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 20:37:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955853#M42954</guid>
      <dc:creator>monyakjt</dc:creator>
      <dc:date>2025-01-12T20:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955854#M42955</link>
      <description>&lt;P&gt;I'd suggest trying a different web browser to see if that helps. What one are you using now?&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 21:08:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/955854#M42955</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-01-12T21:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/956678#M43010</link>
      <description>&lt;P&gt;I was using the Chrome browser.&amp;nbsp; I tried Edge, but it gave the same thing.&amp;nbsp; I contacted SAS support.&amp;nbsp; They suggested deleting cookies and cache.&amp;nbsp; I tried that, but it did not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 16:54:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/956678#M43010</guid>
      <dc:creator>monyakjt</dc:creator>
      <dc:date>2025-01-20T16:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Stuck on opening a table but don't understand fix</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/956704#M43011</link>
      <description>&lt;P&gt;What do you mean by "opening a table"?&lt;/P&gt;
&lt;P&gt;Are you able to run code?&lt;/P&gt;
&lt;P&gt;Try running something simple first.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc print data=sashelp.class;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Jan 2025 23:22:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Stuck-on-opening-a-table-but-don-t-understand-fix/m-p/956704#M43011</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-01-20T23:22:17Z</dc:date>
    </item>
  </channel>
</rss>

