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.
Create Table #Code(Query VarChar(8000))
exec sp_msforeachdb '
Insert Into #Code(Query)
Select ''Alter Table ['' + Table_Catalog + ''].['' + Table_Schema + ''].['' + Table_Name + ''] Alter Column ['' + Column_Name + ''] Char(9) NULL''
From [?].Information_Schema.Columns
Where Column_Name = ''SSN''
And Data_Type <> ''char''
And Character_Maximum_Length <> 9
'
Select Query From #Code
Drop Table #Code