Viewing 13 posts - 1 through 13 (of 13 total)
toddasd (2/14/2013)
February 15, 2013 at 7:22 am
toddasd (2/14/2013)
So the trigger itself runs correctly from both sources. And there are no triggers on the tables BACK or BACK_RLFL. The only part left is the guts of the...
February 14, 2013 at 1:39 pm
Both SSMS and SSIS reported 1 record which is the correct result.
What's next?
toddasd (2/14/2013)
Mark-545947 (2/14/2013)
It has to be some setting issue in SSIS otherwise, why would work...
February 14, 2013 at 1:22 pm
GilaMonster (2/14/2013)
p.s. Is hardcoding an OrderID in the trigger going...
February 14, 2013 at 1:16 pm
No triggers anywhere else.
It has to be some setting issue in SSIS otherwise, why would it work from SSMS?
This is driving me crazy.
February 14, 2013 at 1:01 pm
I understand your point of trigger firing on batches and not on rows. Then why doesn't my trigger work when I insert into it ONE record (FROM SSIS).
Here is my...
February 14, 2013 at 12:31 pm
Sure it does for the situation of archiving what is not already there, but now you've introduced a new table, BACK_ARCHIVE. So I see four tables: BACK, RLFL, RLFL_BACK, and...
February 14, 2013 at 10:52 am
I don't understand.
I only have one row that I'm processing in SSIS. Just like I'd be processing one row with an INSERT statement from SSMS (which works flawlessly).
How do I...
February 14, 2013 at 10:50 am
Basically, use the mod(%) function to split your recs into three like so:
INSERT INTO TABLE_A
SELECT Tableid,sales
FROM (select ROW_NUMBER() OVER ( order by sales) as Tableid,name FROM myTable) tmp
WHERE TableId%3 =...
February 14, 2013 at 10:41 am
That does not work.
Here are my table layouts:
BACK Table:
OrderID ItemNo
--------- ---------
9813 ...
February 14, 2013 at 10:14 am
The exec sp.. worked like a charm!
I removed the quotes around the tables, so I guess bare invokation was OK after all.
Thanks a lot.:-)
January 31, 2012 at 12:13 pm
No change. The same error.
I get the same error executing it in SSMS.
January 31, 2012 at 11:23 am
Viewing 13 posts - 1 through 13 (of 13 total)