Hi All,
I have a small question.
Say I need to find the count of distinct values for each of the following in a dataset that has
more than a million records for my analysis:
complaint_id
indicator
dataentry_date
assignment_reassignment_date
complainant_type
contract_id
complaint_cat_id
category_description
complaint_subcat_id
subcategory_description
proc sql;
select count(distinct compliant_id) from table1;
quit;
I will have to run this multiple times and it will take time.I'm wondering if there is any way i can accomplish this in one step?