Viewing 4 posts - 1 through 4 (of 4 total)
As a Microsoft partner, SQL would be the best fit, and would have the least code ramifications at this stage. I already have the MERGE part working in a .NET...
August 1, 2011 at 8:19 am
Unfortunately, I had tried an OUTPUT in another scenario. SQL won't accept the OUTPUT because the target is a partitioned view:
The OUTPUT clause cannot be specified because the target view...
August 1, 2011 at 7:09 am
After playing around with the script, I managed to gain some 'success'. I modified the INSERT part of the script as follows:
INSERT dbo.LogData
( LogID
, Value
, Attribute
, TimeStamp )
SELECT
TARGET.LogID
,...
August 1, 2011 at 12:50 am
Bill,
Thanks for the info. Your script is quite close to what I had managed to attain in the meantime. However, I'm falling down on the INSERT part (UPDATE works fine)...
July 31, 2011 at 11:54 pm
Viewing 4 posts - 1 through 4 (of 4 total)