SAS question: I have 50 fils a1,a2,...,a50. the primary key
is upc. then if i want to merge all 50 files, the code is
as follows,
data test;
merge a1 ... a50;
by upc;
run;
we know that writing all 50 files name is time consuming,
is there any standard format of this code?
No Answer is Posted For this Question
Be the First to Post Answer
what are resources in case of Threads
what is database?how to tell 3years boy or girl by using toys?
hi this is uday i want prepare for nic exam if any one have previous question papers please send me or atlest guide me how to prepare my ID is udaykiran4u@in.com
what is the difference between an application and service??? i mean service which runs as in services.msc.
what is the diff bw sql direct and jdbc update can't we do select and updating operation in sql direct
Java is called as pure objerct oriented programming language, where as c++ is not completely object oriented.can any explain the detailed differenec between these two
How many processes can listen on a single TCP/IP port?
Urgent Openings for Java and .NET ( India, Singapore, Australia, Japan)
ok how would i do the following extract from a file i have ssns = 267907230 which are in column 7 into a separate data set then create a 2nd job step to extract from the data set created the following "fund code" which is in column 31 and is 113 into yet another data set
Write a program which inputs 2 integers representing the sides of a triangle, a and b. Next, write a function which accepts the 2 sides as parameters and returns the hypotenuse of the triangle, c. Use c 2 = a 2 + b 2 To raise a number to an exponent, us e the built - in JavaScript function Math.pow() Let’s say you have a variable x and you want to raise it to the 5 th power, use Math.pow in the following manner... Math.pow( x, 5 ); This will raise x to the 5 th power. To find the square root of a number, use t he built - in JavaScript function Math.sqrt () So to find the square root of x, use Math.pow () in the following manner... Math.sqrt( x ) You must create 2 functions to receive credit for this assignment. Your ‘ main ’ function which is called from the button. And your hypotenuse function. Again, the main function calls upon the hypotenuse f unction when it needs that value. Get the user ’ s input, call the function, output your result. Create your own CSS layout
what is the main usage of an abstract keyword?please follow the program class A { void display() { System.out.println("hai"); } void print() { } } class B extends A { void print() { System.out.println("Hello"); } } In this program i was gives the implementation of print() according to my requirements in subclass.And there is no definition in superclass then why we can use abstract keyword before a method that i want to gives definition in other classes,is any mistakes in the above usage of method?
I want to pass .pdf files as OlE Object to crystal report through VB6. Please any one guid me...