Depending on the definition of the column, you may try to convert the date to the desired type:
INSERT INTO [Table_1] ([textColumn]) VALUES ('Date: ' + CAST(GETDATE() as nvarchar(max))) GO
To format the date, use Convert, for example
INSERT INTO [Table_1] ([textColumn]) VALUES ('Date: ' + convert(nvarchar(max), GETDATE(), 101)) GO
The last parameter defines the format - see msdn for details.
source share