Viewing 6 posts - 1 through 6 (of 6 total)
Job schedule was created on October 24, i.e. 3 days before it was scheduled to run.
There are no jobs/schedules on the server with identical job/schedule names/IDs.
November 12, 2013 at 1:25 am
Thanks everyone for your help.
Of course I have been using WITH (TABLOCK) on both target and source tables.
As for converting text to something else - I need nvarchar(MAX) to allow...
March 20, 2012 at 11:48 pm
I cannot use SELECT..INTO, because the target table has to be created on specific filegroups, including one for textimage. I create a table beforehand.
March 20, 2012 at 7:15 am
Target table is created before populating. Of course, it's a heap without any indexes at all - they are created only after populating is finished.
March 20, 2012 at 7:03 am
Seems like you are right, Ian. After cleaning the cache, the speed is low again.
However, this is weird. By default, BCP is supposed to be fast even if the source...
March 20, 2012 at 2:47 am
Only I would use GetDate() for LogDate. So, it would seems like the following:
CREATE TRIGGER tr1 ON Transactions
AFTER INSERT,UPDATE AS
INSERT INTO TransactionLog(TransactionID, TransactionStatusCode, LogDate, ErrorCode, Comments )
SELECT TransactionID, TransactionStatusCode, GetDate(),...
October 20, 2006 at 6:37 am
Viewing 6 posts - 1 through 6 (of 6 total)