Skip to content

Instantly share code, notes, and snippets.

@yngwie74
Created August 17, 2012 17:47
Show Gist options
  • Save yngwie74/3380963 to your computer and use it in GitHub Desktop.
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
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