Hi,I am working on a server that has NTH number of databases. Each of these databases have the same table. I would like to run this statement below on all databases. IF col_length('redemptionItem','pinVariableName') is null BEGIN ALTER TABLE [dbo].[redemptionItem] ADD pinVariableName nvarchar(100) NULL END GOHow can I do this? I know you can run this to get all DB Names:SELECT name FROM master.dbo.sysdatabases WHERE name NOT IN ('master','model','msdb','tempdb') Thanks in advance.