<?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: SAS EG Project Scheduling help in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-Project-Scheduling-help/m-p/197427#M14917</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;His/her SAS is running on AIX, so you need to store the .sas and run the sas executable there.&lt;/P&gt;&lt;P&gt;If we knew how to detect the dataset arrival, we could provide a proper UNIX shell script which would then be run periodically by the cron daemon.&lt;/P&gt;&lt;P&gt;OTOH, I suspect that the creation of the source dataset is also handled by a scheduling system, so the most prudent option is to have the SAS job started by that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Apr 2015 15:01:00 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2015-04-21T15:01:00Z</dc:date>
    <item>
      <title>SAS EG Project Scheduling help</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-Project-Scheduling-help/m-p/197425#M14915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very new to SAS EG. &lt;/P&gt;&lt;P&gt;I have a AIX server and windows 7 environment. Windows scheduler is on and working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My SAS EG project consists of only one program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname output "/gpfs1/out_area";&lt;/P&gt;&lt;P&gt;libname source oracle user="" password="";&lt;/P&gt;&lt;P&gt;data output.mortg;&lt;/P&gt;&lt;P&gt;set source.mortg_v;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code runs absolutely fine and I need to schedule it on dataset arrival condition in source. &lt;/P&gt;&lt;P&gt;I scheduled it from SAS EG and it did create the .vbs file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am unable to go to the next steps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If i double click on the .vbs file it gives error &lt;/P&gt;&lt;P&gt;2. How to add this file in windows scheduler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is really appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 13:37:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-Project-Scheduling-help/m-p/197425#M14915</guid>
      <dc:creator>yashpande</dc:creator>
      <dc:date>2015-04-16T13:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS EG Project Scheduling help</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-Project-Scheduling-help/m-p/197426#M14916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the EG created a .job-File in %windir%\Tasks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, at the moment, I stand in front of a similar Problem. The Task-Manager (i don't know the correct Englisch translation, in german it's called "Aufgabenplanung") doesn't show the .job-Files in %windir%\Tasks, but the .xml-Files in %windir%\system32\Tasks.&lt;/P&gt;&lt;P&gt;That is no solution for me, because i need an overview of all upcoming tasks (both folders)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, until I find out more, i will schedule the *.sas Files (Safe them from the EG) by hand.&lt;/P&gt;&lt;P&gt;The Problem is, that the Metafiles, like LIBNAMES/FILENAMES or any other Settings, you possibly made in the EG and not in the source-code, doesn't exist in the .sas File.&lt;/P&gt;&lt;P&gt;But if you only have those two libname's from your sample, it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I plan a Job with the Task-Manager. &lt;BR /&gt;Action: Start a Program&lt;/P&gt;&lt;P&gt;Program/Script: C:\SASHome\x86\SASFoundation\9.3\sas.exe&lt;/P&gt;&lt;P&gt;Options: -CONFIG "C:\SASHome\x86\SASFoundation\9.3\nls\de\sasv9.cfg" -autoexec "[YOUR-PATH]\autotcp.sas" -sysin "[YOUR-PATH\YOUR-PROGRAMNAME].sas"&amp;nbsp; -log&amp;nbsp; "[YOUR-PATH\YOUR-LOGFILE].log"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should check the Paths and maybe delete the -autoexec... string, if you don't use it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 14:06:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-Project-Scheduling-help/m-p/197426#M14916</guid>
      <dc:creator>MarFin777</dc:creator>
      <dc:date>2015-04-21T14:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAS EG Project Scheduling help</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-Project-Scheduling-help/m-p/197427#M14917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;His/her SAS is running on AIX, so you need to store the .sas and run the sas executable there.&lt;/P&gt;&lt;P&gt;If we knew how to detect the dataset arrival, we could provide a proper UNIX shell script which would then be run periodically by the cron daemon.&lt;/P&gt;&lt;P&gt;OTOH, I suspect that the creation of the source dataset is also handled by a scheduling system, so the most prudent option is to have the SAS job started by that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 15:01:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-EG-Project-Scheduling-help/m-p/197427#M14917</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2015-04-21T15:01:00Z</dc:date>
    </item>
  </channel>
</rss>

