I am trying to get a field to display the combination of a a field with data type int and another as nvarchar under Computed Column Specification, but am getting the following error:
Conversion failed when converting the nvarchar value 'y' to data type int.
Computed Column Specification Forumula: [myNvarCharField] + ' ' + [myIntField]
Is it not possible to concatenate fields from different datatypes under the Computed Column Specification in SQL Server 2008?