good day
We wish to subtract the
CURR_TIME(Jobname_01) from
CURR_TIME(Jobname_02)
and update the column DURATION((Jobname_02) with the result.
Excerpt from the DATALOAD_EXEC_LOG Table:
CURR_DATE DATE FORMAT 'YY/MM/DD',
CURR_TIME CHAR(8),
DURATION CHAR(8),
JOBNAME VARCHAR(64)
CURR_DATE...
good day,
I have separate sql-scripts to
drop mytable
create mytable with description of variables
insert data from other tables into mytable
grant select privileges to USER2
how do I combine these into one single sql-script?
if somecriteria (mytable exists)
then
drop table mytable
create...
hi and good day,
need to develop an updateroutine for our report data.
Script 1 gathers the data from a definite starting point eg. start of financial year to date.
After successful completion ORA-table MaxDate is created.
Script 2 is the update part for Script 1.
According to the value...
good day,
need to develop a SAS script to import data from a textfile
into PALO olap DB.
An example provided (using PHP) reads as follows:
<?php
define('HOST', '127.0.0.1');
define('PORT', '7777');
define('USER', 'admin');
define('PASS', 'admin');
$connection = palo_init(HOST, PORT, USER...
thank you Klaz
for your valued response to my question.
As detailed before,
we have installed the SW Schedule Wizard and are able to
call sas.exe as well as the correct scipt.
However,
as far as I can see there are 2 problems to be solved.
1. the automatic login to SAS
2. the starting of the...
thank you Nick,
for your valued response.
Our script is located on a SAS-Client (Windows OS) and it is run remotely on a SAS-Server.
We want to automate the SAS login procedure and then the start of the abovementioned script.
We have installed the Schedule Wizard from
Vince Sorensen
Author...
good day,
I need to run my Main SAS script, in which I have INCLUDEed
the tasks that need to accomplished after a certain
condition has been met.
Basically it should operate as follows:
My SAS script would test, say from 05h00 onward, whether a
specific datevariable meets the condition or not...
good day,
the number of hours and minutes between two dates have to
be calculated.
eg
sdate = 18APR2007:10:34:51
edate = 19APR2007:09:22:58
Any assistance is most welcome.
Kind regards
Karlo
good day,
where could I find a sample application
typically an Invoicing or reporting application written
with SAS
The app should contain a login module
display reports using IE.
Kindest regards
Karlo
Hello and good day,
I need to join the following two tables in Access:
The SQL script looks like this:
FROM VBWADM.VBW_FACT a,
ADBADM.SALES_ORG b
WHERE (a.SALES_NUMBER=b.SALES_NUMBER_ AND a.REPORT_DATE BETWEEN b.VALID_FROM AND b.VALID_THRU)
The SQL-Statement generated by Access (using the...
hello and good day
in my SAS script I have the following proc sql statement:
rsubmit;
proc sql;
create table myTable as
(
select ProductTarif,
sum(number_of_items)
from Orders
where Sales_Channel in ('A', 'B', 'C')
and ProductTarif in ('X', 'Y', 'Z')
and...
Hello and good day,
to my script I would like to add a MsgBox that informs the user what is currently happening:
for example:
' switch WarnMsgs OFF
DoCmd.SetWarnings False
' copy File1 to File1_old
DoCmd.OpenQuery "Backup_File1", acViewNormal, acEdit
MsgBox "File1 copied to...
good day,
how do I
export the result of a Query to an existing Excel file (containing further information) and place the Data on a specified Tab ?
Thank you for you're valued assistance.
Kind regards
Karlo
meistertools@gmx.net
hello and good day,
how do I ...
export the result of an Access query to an existing Excel file and place it on a specified tab ?
Thanks for valued response.
Kind regards
Karlo
meistertools@gmx.net
good day,
is it possible to compact and repair an Access DB using a Macro inside the DB ?
Any useful tips would be highly appreciated.
Kind regards
Karlo
meistertools@gmx.net
good Day,
I wish you and your relatives a happy and prosperous 2005.
In my script I create 3 different SAS datasets
DATA=WORKUNIX.MonthlySum
DATA=WORKUNIX.SalesChannelMonth
DATA=WORKUNIX.SalesRegionsMonth
which I export separately to excel using the following PROC EXPORT:
PROC EXPORT DATA=...
Hi all,
this is the solution that works for me:
PROC IMPORT OUT=orig_data-set
DATAFILE= "C:\path\filename.xls"
SHEET="worksheet"
DBMS=EXCEL2000 REPLACE;
GETNAMES=YES;
RUN;
/*===Renaming a Variable at Time of Input===*/
DATA orig_data-set_mod;
SET orig_data-set(RENAME=...
Thank you Klaz for your valued reply.
1. I have rights to create a SAS table and have done so using
PROC IMPORT from an excel table.
2. I have NO rights to create an ORA table - it has already been
and contains data which needs to be REPLACED with the data from
the SAS table.
Leaning on...
Hi all,
I have created a SAStable(origtable) from an excel table using
PROC IMPORT.
Now I would like to replace the data in an ORAtable(desttable)
with the data from the SAStable.
I can't use DBLOAD, because the varnames are longer than 8 chars.
Any help is much appreciated.
Kind regards...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.