BookmarkSubscribeRSS Feed
gneccao
Obsidian | Level 7

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.

3 REPLIES 3
gneccao
Obsidian | Level 7
Well, i don´t know how to explain that, but when i restart the computer..... it´s now working... i really don´t know why...
ChrisHemedinger
Community Manager

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.

SAS Innovate 2026: Register now! April 27-30 in Grapevine TX -- it's the premier conference for SAS users!
gneccao
Obsidian | Level 7

Sorry about that.

 

The proc options output you are talking about, is the result log? 

Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

Explore Now →
Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2028 views
  • 1 like
  • 2 in conversation