Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select 'Alter Table [' + T.Table_Name + '] Alter Column [' + C.Column_Name + '] DateTime'
From Information_Schema.Tables T
Inner Join Information_Schema.Columns C
On T.Table_Name = C.Table_Name
Where T.Table_Type = 'Base Table'
And C.Data_Type = 'SmallDateTime'
Select *
From Information_Schema.Routines
Where Routine_Definition Like '%smalldatetime%'