<?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: End of File Warning messages in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/44459#M9096</link>
    <description>Please reveal more about the LIBNAME allocation for &lt;LIBREF&gt; XCDW_P, specifically explain what it is and where it resides.  As well, showing your SAS code that allocates the source-reference would also be useful.&lt;BR /&gt;
&lt;BR /&gt;
Info about SAS version, OS platform, where SAS is installed (either local or remote server) will be quite helpful, as with most all forum posts.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;/LIBREF&gt;</description>
    <pubDate>Mon, 05 Jul 2010 14:45:18 GMT</pubDate>
    <dc:creator>sbb</dc:creator>
    <dc:date>2010-07-05T14:45:18Z</dc:date>
    <item>
      <title>End of File Warning messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/44458#M9095</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I'm getting the end of file warning messages after the execution of code.&lt;BR /&gt;
The code is running fine, this code was running fine earlier as well.&lt;BR /&gt;
&lt;BR /&gt;
This has happened few times over the last 2/3 days.&lt;BR /&gt;
&lt;BR /&gt;
Any idea why this happens??&lt;BR /&gt;
&lt;BR /&gt;
Example below.&lt;BR /&gt;
&lt;BR /&gt;
15         &lt;BR /&gt;
16         proc sql;&lt;BR /&gt;
17                 create table XCDW_PF.Renewals_Fact_Table2 as&lt;BR /&gt;
18         		  	select a.*, b.policy_number&lt;BR /&gt;
19         			from XCDW_PF.Renewals_Fact_Table a left join&lt;BR /&gt;
20         			     XCDW_PF.Policies b&lt;BR /&gt;
21         			on a.policy_key = b.policy_key&lt;BR /&gt;
22         &lt;BR /&gt;
23         		;&lt;BR /&gt;
WARNING: End of file.&lt;BR /&gt;
WARNING: End of file.&lt;BR /&gt;
NOTE: Table XCDW_PF.RENEWALS_FACT_TABLE2 created, with 3635740 rows and 35 columns.&lt;BR /&gt;
&lt;BR /&gt;
24         quit;&lt;BR /&gt;
NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;
      real time           1:05.00&lt;BR /&gt;
      cpu time            1:02.73</description>
      <pubDate>Mon, 05 Jul 2010 13:41:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/44458#M9095</guid>
      <dc:creator>sahkul</dc:creator>
      <dc:date>2010-07-05T13:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: End of File Warning messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/44459#M9096</link>
      <description>Please reveal more about the LIBNAME allocation for &lt;LIBREF&gt; XCDW_P, specifically explain what it is and where it resides.  As well, showing your SAS code that allocates the source-reference would also be useful.&lt;BR /&gt;
&lt;BR /&gt;
Info about SAS version, OS platform, where SAS is installed (either local or remote server) will be quite helpful, as with most all forum posts.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;/LIBREF&gt;</description>
      <pubDate>Mon, 05 Jul 2010 14:45:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/44459#M9096</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-07-05T14:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: End of File Warning messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/44460#M9097</link>
      <description>libname XCDW_PF '/home/data/Prod/cvm/rac/rescue/retention/xcdw_pf' ;&lt;BR /&gt;
&lt;BR /&gt;
This is in Unix.&lt;BR /&gt;
&lt;BR /&gt;
SAS is on Unix and being accessed through SAS EG. &lt;BR /&gt;
&lt;BR /&gt;
It seems to me the problem because of Oracle. &lt;BR /&gt;
&lt;BR /&gt;
Another example where the probelm occurs is:&lt;BR /&gt;
&lt;BR /&gt;
proc sql;&lt;BR /&gt;
&lt;BR /&gt;
   connect to oracle(user=sas_user password=a67774 path='@pday' PRESERVE_COMMENTS);&lt;BR /&gt;
        create table XCDW_PF.Policies as&lt;BR /&gt;
	        select * from connection to oracle&lt;BR /&gt;
            (&lt;BR /&gt;
            select /*+ full(pd)*/&lt;BR /&gt;
                   pd.policy_key,&lt;BR /&gt;
				   pd.policy_number,&lt;BR /&gt;
				   pd.resignation_date,&lt;BR /&gt;
				   pd.agreement_status,&lt;BR /&gt;
				   pd.first_start_date,&lt;BR /&gt;
				   pd.cover_start_date,&lt;BR /&gt;
  				   pd.cover_expiry_date,&lt;BR /&gt;
				   pd.renewal_date,&lt;BR /&gt;
				   pd.current_row,&lt;BR /&gt;
				   pd.row_added_date,&lt;BR /&gt;
				   pd.row_expiry_date,&lt;BR /&gt;
				   pd.payment_frequency,&lt;BR /&gt;
				   pd.years_of_renewal,&lt;BR /&gt;
                   prd.product_code,&lt;BR /&gt;
                   prd.package_code,&lt;BR /&gt;
                   prd.service_level_code&lt;BR /&gt;
           from    ccm_owner.ad_hoc_fact_table ah&lt;BR /&gt;
                   ,ccm_owner.policy_dimension pd&lt;BR /&gt;
                   ,ccm_owner.product_dimension prd&lt;BR /&gt;
                   ,ccm_owner.account_dimension ac&lt;BR /&gt;
          where    &lt;BR /&gt;
				   ah.policy_key           = pd.policy_key&lt;BR /&gt;
            and    ah.product_key          = prd.product_key&lt;BR /&gt;
            and    ah.account_key          = ac.account_key&lt;BR /&gt;
            and    ac.account_sub_type     = 'Affinity'&lt;BR /&gt;
            and    prd.breakdown           = 'B'&lt;BR /&gt;
			and    pd.renewal_date &amp;gt;=TO_DATE('01JAN2009','DDMONYYYY')&lt;BR /&gt;
    );&lt;BR /&gt;
disconnect from oracle;&lt;BR /&gt;
quit;</description>
      <pubDate>Mon, 05 Jul 2010 16:11:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/44460#M9097</guid>
      <dc:creator>sahkul</dc:creator>
      <dc:date>2010-07-05T16:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: End of File Warning messages</title>
      <link>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/362409#M85617</link>
      <description>&lt;P&gt;This was happening to me (In random places where I was not working with any files except for datasets) and I think it was only occurring when I was trying to view/move around the log file within in Enterprise Guide. The output etc was fine - so at the moment I assume it was because I was moving around the log file or maybe even lst/result file e.g. if I reran but just left it running it would finish w/o the warning.&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2017 02:55:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/End-of-File-Warning-messages/m-p/362409#M85617</guid>
      <dc:creator>luke1973</dc:creator>
      <dc:date>2017-05-29T02:55:46Z</dc:date>
    </item>
  </channel>
</rss>

