I have a customer table where I take each record at a time and process them using another stored procedure called processCustomers. How can I remove this cursor and still process each item from customer table individually? The problem here is processCustomers
can only process one customer ID at a time. How can I still call that SP without using a cursor? Please advice.
mayooran99