INSERT INTO [dbo].[Products]
           ([BrandId]
           ,[Name]
           ,[NameLong]
           ,[NameShort]
           ,[CreatedDate]
           ,[UpdatedDate]
           ,[IsActive]
           ,[Position]
           ,[Description]
           ,[ShortDescription]
           ,[MainPage]
           ,[ImageState]
           ,[MainImageId]
           ,[ProductCategoryId]
           ,[Price]
           ,[Discount]
           ,[ProductCode]
           ,[Lang]
           ,[VideoUrl]
           ,[MetaKeywords]
           ,[IsCampaign]
           ,[AddUserId]
           ,[UpdateUserId])
   SELECT  [BrandId]
      ,'[REPLACE_TEXT]'
      ,[NameLong]
      ,[NameShort]
      ,[CreatedDate]
      ,[UpdatedDate]
      ,[IsActive]
      ,[Position]
      ,[Description]
      ,[ShortDescription]
      ,[MainPage]
      ,[ImageState]
      ,null
      ,[ProductCategoryId]
      ,[Price]
      ,[Discount]
      ,'[ProductCodeValue]'
      ,[Lang]
      ,[VideoUrl]
      ,[MetaKeywords]
      ,[IsCampaign]
      ,[AddUserId]
      ,[UpdateUserId]
  
  FROM [eimece].[dbo].[Products]
  where Id=13768
 
