i just starting to play along with SSIS and SSAS
and i came up with this trick to show wether my data has been populate into staging or data warehouse table
so here is the script
and i came up with this trick to show wether my data has been populate into staging or data warehouse table
so here is the script
until thenEXEC sp_MSForEachTable "
DECLARE @count AS INT SET @count=0
SELECT @count = ISNULL(SUM(1), 0) FROM ?
PRINT ""?: "" + CONVERT(VARCHAR, @Count)
, @whereand = "ORDER BY 1" "
Comments