if not Exists(SELECT * FROM information_schema.tables where Table_name = 'UserTable') begin create table UserTable ( ID int primary key, Title nvarchar(200), Name nvarchar(200), CommandText nvarchar(max), Description nvarchar(max) ) end