Quantcast
Channel: SQL Server Master Data Services forum
Viewing all articles
Browse latest Browse all 1311

staging data through t-sql

$
0
0

hi all,

I am trying to troubleshoot why a t-sql based staging does not work and created a simple entity called "test", with just one attribute.

I loaded the leaf stg table with two members, as per below:

insert into stg.test_leaf(importType, ImportStatus_id,code)
values(1,  0, 'test1')

insert into stg.test_leaf(importType, ImportStatus_id,code)
values(1,  0, 'test2')

then executed EXEC[stg].[udp_test_Leaf] @VersionName = N'VERSION_1', @LogFlag = 1, @BatchTag = N'test_batch20140203' 

The proc did not generate  any errors, nor do I see anything special being further propagated into the published data or anything else changed in the stg tables.  Am I missing some basic steps?  (MDS 2012 SP1).   I do not see any pending batches in the "Integration Management" web interface.  The web broker is enabled (SELECT is_broker_enabled, * FROM sys.databases WHERE name LIKE 'MDS%')

thx a big bunch,
Cos



Viewing all articles
Browse latest Browse all 1311

Trending Articles