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

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 720 views
  • 3 likes
  • 3 in conversation