Hi,
I have a .NET application to run SaS scripts, i´m trying to create a Data Set, using a the data in a file.
I have others imports running the same script and it´s ok, but when i try to import that one, the result message doens´t show any errors or warning, but the DataSet is created empty. When i run the script in the Guide, its work perfectly.
DATA WORK.DataTest;
FORMAT
PROTOCOLO BEST12.
ASSUNTO $CHAR174.
ENVIADOPOR $CHAR54.
DATAEMAIL DATETIME18.;
INFILE '/home/users/data.txt'
LRECL=257
ENCODING="LATIN1"
TERMSTR=LF
DLM='&'
MISSOVER
DSD ;
INPUT
PROTOCOLO : BEST32.
ASSUNTO : $CHAR174.
ENVIADOPOR : $CHAR54.
DATAEMAIL : ?? ANYDTDTM19.;
RUN;
I have to send a option? Im confused because its was working for at least 13 files. That´s the only one with the problem of empty DataSet.
You didn't share details about the .NET script you're using. If it happens again, share info about how that was built and what it's doing. Differences between EG and other environments usually come down to SAS system options that have been set differently, or user account differences. Comparing PROC OPTIONS output between the two (while tedious) can help you to figure it out.
Sorry about that.
The proc options output you are talking about, is the result log?
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.