I want to get all modified dates (n modified dates) of a stored procedure.
Though I am able to get last modified date of a stored procedure like this:
select name, create_date, modify_date 
from sys.procedures 
where name = 'SPF_OLS_GET_CUSTOMER_SUMMARY' 
order by modify_date desc;
but I want to get all modified dates. Is it possible? If yes, then how to do that?
Thanks in advance
 
     
    
 
    