2012-01-24 4 views
0

Я использую SSIS 2008 и пытаюсь обновить один столбец в моей таблице во время вставки. Этот один столбец является полем uniqueidentifier, и я также написал триггер для обновления этого поля. Этот код ниже:Как активировать автоматическое обновление при вставке данных?

CREATE TABLE dbo.rd_information3_cleaned (
c1 uniqueidentifier NULL, 
    c2 nvarchar(50), 
    c3 nvarchar(50), 
c4 nvarchar(50) 
) 

create trigger dbo.trg_client_information_id 
on client_information 
after insert 
as 
begin 
    update client_information 
    set client_information_id = newid() 
     from Inserted 
end 

Я знаю, что этот код работает, потому что я испытал его в SSMS, и это делает обновление в этой колонке. Кроме того, моя таблица выглядит следующим образом:

c1        c2 c3 c4 
xxxx-xxxx-xxxx-xxxx A BB C5 
xxxx-xxxx-xxxx-xxxx A2 BB C 
xxxx-xxxx-xxxx-xxxx A3 BB C7 
xxxx-xxxx-xxxx-xxxx A4 BB C 

Но когда я пытаюсь запустить этот пакет SSIS, я пишу только на с2 - с4, так как триггер обновления столбца «c1». Но вместо этого, я получаю сообщение об ошибке:

Information: 0x40043007 at Write to Client_Information, SSIS.Pipeline: Pre-Execute phase is beginning. 
Information: 0x4004300C at Write to Client_Information, SSIS.Pipeline: Execute phase is beginning. 
Error: 0xC0202009 at Write to Client_Information, Client_Information [27]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. 
An OLE DB record is available. Source: "Microsoft SQL Server Native Client 10.0" Hresult: 0x80004005 Description: "The statement has been terminated.". 
An OLE DB record is available. Source: "Microsoft SQL Server Native Client 10.0" Hresult: 0x80004005 Description: "Cannot insert duplicate key row in object 'dbo.Client_Information' with unique index 'IX_Client_Demographics_Unique'.". 
Error: 0xC0209029 at Write to Client_Information, Client_Information [27]: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "input "OLE DB Destination Input" (40)" failed because error code 0xC020907B occurred, and the error row disposition on "input "OLE DB Destination Input" (40)" specifies failure on error. An error occurred on the specified object of the specified component. There may be error messages posted before this with more information about the failure. 
Error: 0xC0047022 at Write to Client_Information, SSIS.Pipeline: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "Client_Information" (27) failed with error code 0xC0209029 while processing input "OLE DB Destination Input" (40). The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running. There may be error messages posted before this with more information about the failure. 
Information: 0x40043008 at Write to Client_Information, SSIS.Pipeline: Post Execute phase is beginning. 
Information: 0x402090DF at Write to Client_Information, Client_Information [27]: The final commit for the data insertion in "component "Client_Information" (27)" has started. 
Information: 0x402090E0 at Write to Client_Information, Client_Information [27]: The final commit for the data insertion in "component "Client_Information" (27)" has ended. 
Information: 0x4004300B at Write to Client_Information, SSIS.Pipeline: "component "Client_Information" (27)" wrote 2 rows. 
Information: 0x40043009 at Write to Client_Information, SSIS.Pipeline: Cleanup phase is beginning. 
Task failed: Write to Client_Information 
SSIS package "Echo Information Migration2.dtsx" finished: Success. 
The program '[2564] Echo Information Migration2.dtsx: DTS' has exited with code 0 (0x0). 

Я почти уверен, что причина этой ошибки в том, что client_information_id поле. потому что я могу написать более одной строки в SSMS, если я просто создаю этот уникальный идентификатор поля; иначе я не могу написать более одной строки этой таблицы. Поэтому мне интересно. Возможно ли, что мне нужно установить свойство TIME в SSIS, чтобы дать триггеру достаточно времени для работы? Почему еще я мог получить эту ошибку?

Кроме того, я отредактировал назначение OLE DB, и я установил Maximum commit commit size = 1, но я все еще получил ту же ошибку.

ответ

1

Короче говоря, не используйте спусковой крючок, просто используйте ПО УМОЛЧАНИЮ, как показано на рисунке documentation. Таблица DDL и запуск код вы вывесили, кажется, не имеет ничего общего друг с другом, но я предполагаю, что вы действительно хотите что-то вроде этого:

create table dbo.Clients (
    ClientID uniqueidentifier not null primary key default newid(), 
    ClientAttributeA nvarchar(50) not null, 
    -- etc. 
) 

Я подозреваю, что, когда вы испытывали в SSMS вы испытанные вставки одной строки но ваш пакет SSIS вставляет несколько строк. Функция NEWID() вызывается только один раз в триггере, поэтому, если вы вставляете одну строку, она будет работать, но если вы вставляете несколько строк, вы получите одно и то же значение NEWID() для каждого из них, что приведет к дублированию ключевого слова.

Смежные вопросы