<?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 sql to retrieve 10m rows from Oracle does not finish in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274882#M7685</link>
    <description>&lt;P&gt;Try a select count(*) only with your program. Does it complete and how long does it take? This will test the database response, removing the time to download the data.&lt;/P&gt;</description>
    <pubDate>Sat, 04 Jun 2016 03:08:04 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2016-06-04T03:08:04Z</dc:date>
    <item>
      <title>proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274864#M7682</link>
      <description>&lt;P&gt;Hello SAS Experts,&lt;/P&gt;
&lt;P&gt;I am without a clue why the performance in SAS is so bad. I run the SQL via EG 7.1 on our SAS Server using SAS/ACCESS for Oracle.&lt;/P&gt;
&lt;P&gt;The SQL Script itself selects abou 10-12m rows in Oracle in less than 30 minutes (Oracle SQL Developer) if I submit the same&lt;/P&gt;
&lt;P&gt;SQL script via EG it just does not finish. I come back the next day and its still running. Something is really strange.&lt;/P&gt;
&lt;P&gt;Any ideas would be amazing!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;The below SQL embedded in the proc sql takes 3 minutes to run on the Oracle DB and does not finish after 3 hours within a SAS program running on a SASApp Server. why is that? 10m rows.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; connect to oracle as oracleadb (user=xxxx password='xxxx' path=DMP_ADB buffsize=50000);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table SASDWH.sasdwh_fact as&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select *&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from connection to oracleadb&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* takes 3 minutes to run in Oracle, 10m rows */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&amp;nbsp; /*connection close*/&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; );&lt;BR /&gt;&amp;nbsp;&amp;nbsp; disconnect from oracleadb;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 07:30:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274864#M7682</guid>
      <dc:creator>metallon</dc:creator>
      <dc:date>2016-06-03T07:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274875#M7683</link>
      <description>&lt;P&gt;What happends if you issue this SQL in the via the SQL*NET client on the SAS server, but not using SAS?&lt;/P&gt;
&lt;P&gt;The gut feeling is that the bottleneck is on the network.&lt;/P&gt;
&lt;P&gt;Another way to test the bandwith is to ftp files between the hosts.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 08:16:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274875#M7683</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-06-03T08:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274879#M7684</link>
      <description>&lt;P&gt;Have you taken this up with your IT people so they can debug the situation. &amp;nbsp;Could be any number of things, space on drive, network connection, ODBC driver etc.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 08:25:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274879#M7684</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-06-03T08:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274882#M7685</link>
      <description>&lt;P&gt;Try a select count(*) only with your program. Does it complete and how long does it take? This will test the database response, removing the time to download the data.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2016 03:08:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274882#M7685</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2016-06-04T03:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274898#M7686</link>
      <description>Add libname option   readbuff=100000    into it to make it faster.

Or can you just use data step to copy 
Or Try  PROC COPY .</description>
      <pubDate>Fri, 03 Jun 2016 09:04:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274898#M7686</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-06-03T09:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274903#M7687</link>
      <description>&lt;P&gt;Since SAS uses a locally installed client to the DB in question, I'd use that same client to run the same select and store the resulting data in a local flat file. You might have a misconfiguration in the Oracle client to begin with.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 09:20:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/274903#M7687</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-03T09:20:48Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/275944#M7761</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have not spoken to IT regarding the network but the SQL client selects the 10m rows in 30 minutes. SAS proc sql does not finish but quits with an error:&lt;/P&gt;
&lt;H2 class="lia-thread-subject"&gt;&amp;nbsp;&lt;/H2&gt;
&lt;P&gt;ERROR: Insufficient space in file xxxxx is damaged. I/O processing did not complete.&lt;BR /&gt;&lt;BR /&gt;SAS System&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14:08 Wednesday, June 8, 2016&lt;BR /&gt;&lt;BR /&gt;ORACLE: Pipelined I/O thread did not timely terminate&lt;BR /&gt;&lt;BR /&gt;ORACLE: Pipelined I/O thread terminated on 2nd attempt&lt;BR /&gt;&lt;BR /&gt;NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements.&lt;BR /&gt;NOTE: SQL Statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 41:27.17&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; user cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3:19.85&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; system cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:05.44&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; memory&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1351358.96k&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OS Memory&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1369752.00k&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Timestamp&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 06/08/2016 02:50:17 PM&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Step Count&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp; Switch Count&amp;nbsp; 1425&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page Faults&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page Reclaims&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4367&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Page Swaps&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Voluntary Context Switches&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1499183&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Involuntary Context Switches&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 19569&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Block Input Operations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 656&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Block Output Operations&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 62433400&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 12:58:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/275944#M7761</guid>
      <dc:creator>metallon</dc:creator>
      <dc:date>2016-06-08T12:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/275946#M7762</link>
      <description>&lt;P&gt;Well, you obviously ran out of disk space in library SASDWH.&lt;/P&gt;
&lt;P&gt;Try using the compress=yes dataset option on your output dataset; this is especially helpful when long character fields are present.&lt;/P&gt;
&lt;P&gt;If that does not help, either free up disk space by removing unneeded data or somehow get more space.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2016 13:10:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/275946#M7762</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-08T13:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276177#M7782</link>
      <description>Hi Kurt,&lt;BR /&gt;I changed to the library engine from V9 to SPD and set the partsize to 1250M and the new error is:&lt;BR /&gt;&lt;BR /&gt;ERROR: The table or an index was not created because of insufficient disk space.&lt;BR /&gt;&lt;BR /&gt;I wonder how I can see how much disk space I acutally need or if its a trial and error.</description>
      <pubDate>Thu, 09 Jun 2016 08:18:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276177#M7782</guid>
      <dc:creator>metallon</dc:creator>
      <dc:date>2016-06-09T08:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276187#M7784</link>
      <description>&lt;P&gt;Since you could use the DB client, you have access to the SAS server outside of SAS (commandline, GUI). This means you can look at the disk space of your SASDWH location with tools depending on the type of the operating system (ie df on UNIX)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What if you just import 1 million records instead of 10 million?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 08:42:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276187#M7784</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-09T08:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276189#M7785</link>
      <description>Hi. I just talked to the SAS Server Admin. I have filled the whole 30GB partition in minutes trying to write a SAS data set with about 10m rows (also using compress) ok. I will try it with 1m now. yes, we use Unix. I am suprised that 10m rows take up more than 30gb...that doesnt seem right.</description>
      <pubDate>Thu, 09 Jun 2016 08:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276189#M7785</guid>
      <dc:creator>metallon</dc:creator>
      <dc:date>2016-06-09T08:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276191#M7786</link>
      <description>&lt;P&gt;Some things to ponder:&lt;/P&gt;
&lt;P&gt;Look at the structure of your dataset (create it with just a few records and use proc contents). This will show you the observation size.&lt;/P&gt;
&lt;P&gt;Next, look at the state of the partition before and while you run your data step.&lt;/P&gt;
&lt;P&gt;Third, look if there's a quota regulation active on the partition. You might run into a personal quota limit long before the filesystem actually flows over.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 09:03:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276191#M7786</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-09T09:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276194#M7787</link>
      <description>&lt;P&gt;You should be able to log on to a UNIX server using your SAS server credentials, using a SSH client like PuTTY.&lt;/P&gt;
&lt;P&gt;Determine the physical location of your SASDWH by right-clicking on the library in the EG server list and selecting Properties&lt;/P&gt;
&lt;P&gt;Then do&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;df -k &lt;EM&gt;location&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;from the UNIX commandline. This shows you filesystem size and usage in kbytes.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 09:08:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276194#M7787</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-09T09:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276208#M7788</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I run the proc contents on the 1m rows that I managed to load.&lt;BR /&gt;&lt;BR /&gt;Blocking Factor (obs/block) 264&lt;BR /&gt;Data Partsize 1310664960&lt;BR /&gt;&lt;BR /&gt;Obersvations: 1000000&lt;BR /&gt;Variables: 100&lt;BR /&gt;Obs length: 3960&lt;BR /&gt;Compressed: No&lt;BR /&gt;Sorted: No&lt;BR /&gt;&lt;BR /&gt;Engine: META&lt;BR /&gt;membertype: data</description>
      <pubDate>Thu, 09 Jun 2016 10:11:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276208#M7788</guid>
      <dc:creator>metallon</dc:creator>
      <dc:date>2016-06-09T10:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276214#M7789</link>
      <description>&lt;P&gt;So you see that you get roughly 3960 * 1000000 bytes. Thats about 3.8 GB. Multiply by 10, and you get your filesystem overflow past 30 GB.&lt;/P&gt;
&lt;P&gt;Also note that&lt;/P&gt;
&lt;P&gt;Compressed: No&lt;/P&gt;
&lt;P&gt;says you did not yet use the (compress=yes) dataset option, which might reduce the physical dataset size significantly if mostly empty character variables are present in the dataset.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 10:24:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276214#M7789</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-06-09T10:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276222#M7790</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I run the proc contents on the 1m rows that I managed to load.&lt;BR /&gt;&lt;BR /&gt;Blocking Factor (obs/block) 264&lt;BR /&gt;Data Partsize 1310664960&lt;BR /&gt;&lt;BR /&gt;Obersvations: 1000000&lt;BR /&gt;Variables: 100&lt;BR /&gt;Obs length: 3960&lt;BR /&gt;Compressed: No&lt;BR /&gt;Sorted: No&lt;BR /&gt;&lt;BR /&gt;Engine: META&lt;BR /&gt;membertype: data&lt;BR /&gt;&lt;BR /&gt;server admin said 2.8gb are used up.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2016 10:58:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276222#M7790</guid>
      <dc:creator>metallon</dc:creator>
      <dc:date>2016-06-09T10:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql to retrieve 10m rows from Oracle does not finish</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276887#M7820</link>
      <description>We significatly extended the disc space and now  its working like a charm. 10m rows take up 8.5GB.</description>
      <pubDate>Mon, 13 Jun 2016 11:01:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/proc-sql-to-retrieve-10m-rows-from-Oracle-does-not-finish/m-p/276887#M7820</guid>
      <dc:creator>metallon</dc:creator>
      <dc:date>2016-06-13T11:01:44Z</dc:date>
    </item>
  </channel>
</rss>

