How to rename A1-A30 datasets into B1-B30 using macros?
Answer Posted / rajasekhar m
%macro rename;
%do i=1 %to 30;
proc datatsets;
change a&i. = b&i.;
quit;
%end;
%mend;
%rename;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
iam confused among testing ,.net and java. can anybody help me.
5. Which of the following can you do with DB2 Express- C? Query databases with SQL Query databases with XML using XQuery and XPath Use SQL in Xquery and Xquery in SQL All of the above
Hi All, Can any one please send me the difference between informatica 7i and 8i versions, Thanks in advance. vinod
How does the type system works when there is interoperability between a COM and .Net, i mean what exactly happens there
Difference between views and index in sas programming
If i have a dataset queried from Sql and I would like to insert the dataset into a specific node in an xml document how do I do this
can u send some model papers how computer awareness questions are asked in goverment jobs(oriental insurance)to my mail id me.priyankapadma@rediff.com
Hi Guys, This is Rama, right now I am working as a Software Test Engineer in Gurgoan and I have over all 3 years of testing expoeriance. Right now I am looking for a change. Can any body help me out to find a job in south india. Thanks in Advance
Given an array of size n. It contains numbers in the range 1 to n. Each number is present at least once except for 2 numbers. Find the missing numbers.
In project we have Documentation phase also,in that what is micro and macro designing?
Explain three modes in which files can be accessed from python program
Tag for turning an image into a hyperlink is
what are the 3 forms of a prolog term
What is BASIS
As per interoperatbility programs written in one language can be used by other language. How can we restrict the features of one language (say C#) in the programmer written in another language (say VB)..for example we have some features like operator overloading which is possible C#.NET (not in VB.NET), how can we restrict that when we are using this code in VB.NET.