BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Howdy. I need to export data from an existing SAS dataset into a pipe delimited text file without the formatting ( I need to insert this data into a DB2 table). How can I do this?
TIA
Patrick
2 REPLIES 2
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Use a DATA step, at least to remove any output formats, and either use the same DATA step to generate the delimited file or use PROC EXPORT.

FORMAT _ALL_ ; /* clear all output formats */

The SAS support http://support.sas.com/ website has related SAS DOC and supplemental conference and sample code - see sample link below.

Scott Barry
SBBWorks, Inc.

Sample 24800: How to invoke PROC EXPORT to create a delimited file
http://support.sas.com/kb/24/800.html
deleted_user
Not applicable
Thank you!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 7540 views
  • 1 like
  • 2 in conversation