BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ChrisNZ
Tourmaline | Level 20

 

Hi

I run this code to extract Hadoop Metadata

proc sql;
 connect to hadoop ( &hadoop_connection.);
 create table METADATA as
   select * from connection to hadoop ( describe extended &tableout. );
 disconnect from hadoop;
quit;

 

 and I can't get rid of the dreaded Hadoop warning:

WARNING: The following columns could have a length in SAS of 32767. If so, SAS performance is impacted. See SAS/ACCESS documentation for details.

 

Any way to disable this pesky warning and extract the metadata ?

1 ACCEPTED SOLUTION
4 REPLIES 4
art297
Opal | Level 21

Take a look at page 20 of the following document: http://support.sas.com/resources/thirdpartysupport/v94/hadoop/sas-hadoop-performance-strategies.pdf

 

The answer, I think, is to issue alter statements to Hadoop in order to set the desired SAS properties.

 

Art, CEO, AnalystFinder.com

 

Ksharp
Super User
Not sure if this option could work.


options VARLENCHK=nowarn;


ChrisNZ
Tourmaline | Level 20

Thank you for your answers. Sady no luck yet.

@art297 I am not reading a table so I cannot set column properties.
@Ksharp This option is only used by data steps.

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 Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 4 replies
  • 1953 views
  • 0 likes
  • 3 in conversation