<?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: Selecting Top ten rows in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270421#M15902</link>
    <description>&lt;P&gt;I tried doing a select count(*) that spins in Oracle on the table for five mintues with no result.&lt;/P&gt;</description>
    <pubDate>Fri, 13 May 2016 17:59:46 GMT</pubDate>
    <dc:creator>DavidPhillips2</dc:creator>
    <dc:date>2016-05-13T17:59:46Z</dc:date>
    <item>
      <title>Selecting Top ten rows</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270415#M15898</link>
      <description>&lt;P&gt;I have a large table that I cannot open directly in SAS due to size.&amp;nbsp; I tried selecting only the top ten rows but the query is taking forever.&amp;nbsp; Is there a reason why selecting the top ten rows would have a delay at all?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data myTable_temp;&lt;BR /&gt;set mylibrary.&lt;SPAN&gt;myTable&lt;/SPAN&gt;&amp;nbsp;(obs=10);&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 17:31:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270415#M15898</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2016-05-13T17:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Top ten rows</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270417#M15899</link>
      <description>&lt;P&gt;Is your MyLibrary another database and not a native SAS data set?&lt;/P&gt;
&lt;P&gt;Or located on a network with possible comminication issues?&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 17:39:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270417#M15899</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-05-13T17:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Top ten rows</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270418#M15900</link>
      <description>&lt;P&gt;How do I tell?&amp;nbsp; I see it as a SAS dataset under shared data in Enterprise Guide.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 17:44:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270418#M15900</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2016-05-13T17:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Top ten rows</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270421#M15902</link>
      <description>&lt;P&gt;I tried doing a select count(*) that spins in Oracle on the table for five mintues with no result.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 17:59:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270421#M15902</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2016-05-13T17:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Top ten rows</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270422#M15903</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql inobs=10;
create table mytable_temp as
select * from mylibrary.mytable;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 May 2016 18:05:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270422#M15903</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-05-13T18:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Top ten rows</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270434#M15905</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/5059"&gt;@DavidPhillips2&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;How do I tell?&amp;nbsp; I see it as a SAS dataset under shared data in Enterprise Guide.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Assuming this is how to see what/where a library or data set may be&lt;/P&gt;
&lt;P&gt;In Libraries under the server list right click on the library and select Properties from the menu. It will show the Path to the library and other&lt;/P&gt;
&lt;P&gt;properties.&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 19:34:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270434#M15905</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-05-13T19:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Top ten rows</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270677#M15912</link>
      <description>&lt;P&gt;I learned that a count(*) on a few actually takes a long time.&amp;nbsp; When querying large views the idea is to use a where clause.&lt;/P&gt;</description>
      <pubDate>Mon, 16 May 2016 12:25:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Selecting-Top-ten-rows/m-p/270677#M15912</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2016-05-16T12:25:23Z</dc:date>
    </item>
  </channel>
</rss>

