How to rename A1-A30 datasets into B1-B30 using macros?
Answer / 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 |
what is different between kenerl mode and user mode?
Can we write a method in JSP.If so how?
1.how to deploy the Maven application in weblogic server? 2.In Real time projects all classes are singleton or some classes only singleton explain? 3.what are the major uses of the designpatterns? 4.explain restful &Soap based services explain?
What do you mean by text editor?
class A{ void me(){s.o.p("");} class B extends A{ void me() {s.o.p(" ");} class M{ A a=new B(); B b=new A(); a.me(); b.mne();} what is the output of this, how?
2 Answers Cosmos, HyTech Pro, WinSoft,
Can anyone send me NIC question papers alongwith answers on nidhi1485@yahoo.co.in? Urgently needed.. Thanks in advance
what is woransient key word? how it is used in java
what is the diffrence between occur 0 and occur 10 in ABAP.
Suppose server object is not loaded into the memory, and the client request for it , what will happen?
What is meant byStatic Variable ?
diffrence between oracle apps , .NET , SAP
whats the use of following Good Coding Practices?