Created
August 17, 2012 17:47
-
-
Save yngwie74/3380963 to your computer and use it in GitHub Desktop.
Determinar la fecha de última modificación a la estructura de una tabla en SQL Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT name | |
,create_date | |
,modify_date | |
FROM sys.tables | |
WHERE name = 'TABLE_NAME' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment