Passing array as parameter to stored procedure in Oracle
Hi,
I need to pass array parameter to stored procedure. Can anyone tell me how can I do that.
Eg: User will provide list of Identifiers seperated with comma as one of the parameter to my procedure say( 0719,8323,5769,.......,5700)
I have to enddate/delete the list of identifiers from DB.
eg: Update ft_t_isid set end_tms = sysdate where iss_id ='0719'
Update ft_t_isid set end_tms = sysdate where iss_id ='8323'
Update ft_t_isid set end_tms = sysdate where iss_id ='5769'
Update ft_t_isid set end_tms = sysdate where iss_id ='5700'
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Bookmarks