Hello all,
I have a stored procedure that I need to run against my DB to close open tickets. The way the stored procedure works is it closes open tickets by the i_ticket_id. There are currently 350 tickets open and it would be a pain to close all manually. So I was hoping there is a way that if I have all the ticket id's in a CSV that I would be able to run the stored procedure and that it would close each ticket.
Here is how I cal the procedure to close a single ticket
sp_closeticket '-ticketid-'
TIA