BookmarkSubscribeRSS Feed
Costas
Calcite | Level 5

I use Data Integration 3.4 and usualy need import tables from oracle by a specific libname. Sometime DI is not able to correctly import labels that contain strange caracters ('), the job produces strange error without to create the log,  so I wish to elimitate that.

Is there a mode to resolve it?

I tried with options "nolabel" in the tool for SQL Join but without results.

Thanks

Costantino

2 REPLIES 2
Haikuo
Onyx | Level 15

Not sure if this is relevent, in SAS Base, one can use proc datasets to remove labels and formats,  the following code came from SAS help:

proc datasets lib=work memtype=data;

   modify class;

     attrib _all_ label=' ';

     attrib _all_ format=;

run;

Regards,

Haikuo

LinusH
Tourmaline | Level 20

Maybe you could try the DBSASLABEL=NONE libname option.

This will blank out any RDBMS labels, and let SAS use the column names instead.

/Linus

Data never sleeps

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!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 952 views
  • 0 likes
  • 3 in conversation