I have the following command, am looking to make the replace = Training: RunDate (where run date equals the value of when the command was ran)
update dbo.tblOrgInfo
set sOrgName = replace(sOrgName, 'Live', 'Training: 09-09-2014') where sOrgName = 'Live'
Date Value needs to be converted to 09-09-2014, the field will not allow for 09/09/2014, cant get it to work.