I have built a relatively simple data model and I am trying to import data into it for the first time using SSIS. I fallowed this tutorial http://www.sqlchick.com/entries/2013/2/16/importing-data-into-master-data-services-2012-part-1.html but after a load my staging table my publish step fails giving this error
syserr207|invalid column name uda_6_103
[Execute SQL Task] Error: Executing the query "DECLARE @RC int DECLARE @VersionName nvarchar(50)..." failed with the following error: "SYSERR207|Invalid column name 'uda_6_103'.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
My query is
DECLARE @RC int
DECLARE @VersionName nvarchar(50)
DECLARE @LogFlag int
DECLARE @BatchTag nvarchar(50)
SET @VersionName = N'VERSION_1'
SET @LogFlag = 1
SET @BatchTag = ?
EXECUTE @RC =[stg].[udp_MMG_Budget_Update_Leaf]
@VersionName
,@LogFlag
,@BatchTag
GO
I am running MDS on sql server 2012