BookmarkSubscribeRSS Feed
LS
Calcite | Level 5 LS
Calcite | Level 5


Hi All,

  Is there a way to extract a column from Oracle that contains the number 2005101000000000716 into a character resulting column?

  I will be using the Query Builder Task in EG 4.3 (M3) with SAS/ACCESS to Oracle on a Windows 7 Platform.

  Something like a "to_char" Oracle function used in a SQL Passthrough .....

Thanks

2 REPLIES 2
SandorSzalma
Fluorite | Level 6

Hi,

with EG 5.1 it is possible to format a numeric column to a string:

proc sql;

create table work.xxx as

select t1.id format=$CHAR25.

from db.tb1 t1;

quit;

Regards,

Sándor

ChrisHemedinger
Community Manager

You might want to look at the DBSASTYPE option, which allows you to specify a SAS data type to use for input processing.  This allows you to preserve/"print" the value of a large data type from the database in your SAS session by bringing it in as a character type, for example.

See:

SAS/ACCESS(R) 9.3 for Relational Databases: Reference, Second Edition

Chris

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

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

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
  • 2 replies
  • 1308 views
  • 3 likes
  • 3 in conversation