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

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 737 views
  • 3 likes
  • 3 in conversation