May 17, 2013 #1 lameid Programmer Jan 31, 2001 4,208 US This may simply not be possible but I am hoping there is an answer. Is there a way to see the created and modified dates for objects, specifically views in SQL 2008?
This may simply not be possible but I am hoping there is an answer. Is there a way to see the created and modified dates for objects, specifically views in SQL 2008?
May 17, 2013 1 #2 billo102 Technical User Mar 2, 2009 31 GB use <DBNAME> GO SELECT [name] ,create_date ,modify_date FROM sys.views Upvote 0 Downvote
May 17, 2013 Thread starter #3 lameid Programmer Jan 31, 2001 4,208 US The news is the view didn't change. Not sure if that is good or bad news yet... Thank you very much. This saves me some hassle in my digging. Upvote 0 Downvote
The news is the view didn't change. Not sure if that is good or bad news yet... Thank you very much. This saves me some hassle in my digging.