Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by suchi1234

  1. suchi1234

    Help with INDEXES ASAP

    Hello, You can try this piece of code. data x(index = (trk = (a b))); input a b c; cards; 1 2 3 1 2 3 3 4 5 5 6 7 5 6 7 ; run; proc sql ; create table test(a num unique,b num unique,c num); describe table test; quit; proc append base=test data=x ; run; It will work. Good Luck. Suchismita.

Part and Inventory Search

Back
Top