what is incremental update ? is this possible in SAS OLAP
CUBE STUDIO.
Answer / dvsr
Incremental data means day to day transactions data
Example: we have already 10 days of Bank transactional data
in our database on 11Th day some transactions are happened
in the bank, this 11Th day data called Incremental data .If
we are conducting our operations only on the 11th day data
it is called Incremental update.
Feel free To add more ….:)
| Is This Answer Correct ? | 10 Yes | 2 No |
What is the difference between input and infile statement?
AE datasets names? how many types?
how do i get last 10obs from a dataset when we don't know about the number of obsevations in that dataset?
how the sas basic syntax style described? : Sas-administrator
here is a string like chq.2312244%4452- from that i want only special characters in a column. dont use compress. bcoz i have 1.2 billion of records.i want another process to find the values instant from the data.
Hi... this is chandu, did MSc Microbiology, trying to get job in SAS tool, PLZ Tell me whether IT industries will give consider my education to gain a job....?
What techniques and/or PROCs do you use for tables?
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
In this question, I rename the numeric variable phone to numphone and then try use phone=put(numphone,comma16.) to store the numeric value numphone as a string value in phone. But I get a warning tha numphone already exists and in the data sat phone doesnt exist and numphone is set to missing. Why? data names_and_more; input Name $20. Phone : comma16. Height & $10. Mixed & $8.; Name = tranwrd(Name,' ',' '); rename phone = numphone; phone = put(numphone,comma16.); datalines; Roger Cody 9,087,821,234 5ft. 10in. 50 1/8 Thomas Jefferson 3,158,488,484 6ft. 1in. 23 1/2 Marco Polo 8,001,234,567 5Ft. 6in. 40 Brian Watson 5,183,551,766 5ft. 10in 89 3/4 Michael DeMarco 4,452,322,233 6ft. 76 1/3 ;
what is the difference between DUPKEY and NODUPKEY???
What is the length assigned to the target variable by the scan function?
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming