Wednesday, 22 November 2023

Get List of procedures create based on date

 Get List of procedures create based on date.


select name,create_date,modify_date

from sys.procedures

order by modify_date desc

No comments:

Post a Comment

remove duplicates in an sorted array

  using System; public class HelloWorld {          public static void Main(string[] args)     {         int[] ar={2,2,3,3,4,6,6};          C...