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

Hi Team,

 

I am getting the below warning when I execute the below mentioned SAS code. can you please tell me is there any standard way to overcome this issue.

 

WARNING: A table has been extended with null columns to perform the UNION set operation.

 

SAS Code: 

 

data a ;
a = 1 ;
b = 2 ;
run ;

 

data b ;
a = 3 ;
b = 4 ;
c = 1 ;
run ;

 

proc sql ;
select a.* from a
union
select b.* from b ;
quit ;

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Hello @bhanuprakash 

 

Try Outer union corr

 


proc sql ;
select a.* from a
outer union corr
select b.* from b ;
quit ;

View solution in original post

9 REPLIES 9
Kurt_Bremser
Super User

You always get the warning when the parts of a union do not have all columns in common.

Extend your code:

proc sql ;
select a.*, . as c from a
union
select b.* from b ;
quit ;

so you have matching columns.

bhanuprakash
Obsidian | Level 7
Dear KurtBremser,

I am sorry to say this but I am not expecting technique as I already programmed the same way. However when we have 100 variables then this technique will be difficult.

can you please suggest any standard way.
novinosrin
Tourmaline | Level 20

Hello @bhanuprakash 

 

Try Outer union corr

 


proc sql ;
select a.* from a
outer union corr
select b.* from b ;
quit ;
Kurt_Bremser
Super User

@bhanuprakash wrote:
Dear KurtBremser,

I am sorry to say this but I am not expecting technique as I already programmed the same way. However when we have 100 variables then this technique will be difficult.

can you please suggest any standard way.

If you simply want to stack datasets, the data step is the tool of choice:

data c;
set a b;
run;

As you can see, it provides the shortest code possible.

novinosrin
Tourmaline | Level 20

A safe bet is datastep regardless bcoz your PDV at compile time is a sweetheart

 

 

data want;

set a b;

run;

 

bhanuprakash
Obsidian | Level 7

Is there chance to loose the quality in the ouput when I set/append the data by using the “outer union corr” procedure, apart from performance issue(processing time).

novinosrin
Tourmaline | Level 20

Quality is never compromised. However, there is something called "Best practices". So basically it's healthy to follow best practices so that our processes offer reading ease, easy to update, maintain etc.

 

Of course there are probably more than one way to accomplish things in SAS and yes we shall eventually get the result we want by doing in one way or another. However, that's when people like @hashman  @PGStats , @FreelanceReinh  , @data_null__  etc(sorry can't list all) make the striking distinction. The notes that they offer along with the code and the details. Holy Jesus! I don't like them at all (lol). I am just extremely jealous.

 

PS

 

I mentioned those names specifically ( coz they detail so much that i really wonder why they want to share so much) for you to follow them , read their posts, understand. Sooner or later you will start contributing. All the best!

Tom
Super User Tom
Super User

Adding the OUTER keyword will let you keep the extra column, but it also will potentially keep duplicate observations that normal set operations would exclude.

 

Play around and see what you actually want.

data test;
 set sashelp.class (obs=3);
 if _n_=1 then sex=' ';
run;


proc sql;
select name,age from test
union  
select name,age,sex from test
;
select name,age from test
union corr 
select name,age,sex from test
;
select name,age from test
outer union  
select name,age,sex from test
;
select name,age from test
outer union corr 
select name,age,sex from test
;
quit;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 9 replies
  • 5731 views
  • 3 likes
  • 4 in conversation