Results 1 to 7 of 7

Thread: Update Trigger (Very IMP and Urgent)

  1. #1
    chritine Guest

    Update Trigger (Very IMP and Urgent)

    There are two table table A and table B , if something is updtaed in
    table A , the same should reflect in table B, i wrote a trigger upwhen i modify any thing table A it does not reflect in table B could any one guide me through this....

    Here is the Update trigger i wrote :

    CREATE TRIGGER [updbacklog] ON [testbacklog]
    FOR UPDATE
    AS
    Update test1backlog
    Set test1backlog.WorkOrderNumber = inserted.WorkOrderNumber
    , test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    , test1backlog.CustPONumber = inserted.CustPONumber
    , test1backlog.Status = inserted.Status
    , test1backlog.Comments = inserted.Comments
    , test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    , test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    , test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    , test1backlog.WorkOrderType = inserted.WorkOrderType
    , test1backlog.CustomerName = inserted.CustomerName
    , test1backlog.Attn = inserted.Attn
    , test1backlog.CustAddr1 = inserted.CustAddr1
    , test1backlog.CustAddr2 = inserted.CustAddr2
    , test1backlog.CustAddr3 = inserted.CustAddr3
    , test1backlog.City = inserted.City
    , test1backlog.State = inserted.State
    , test1backlog.Postal = inserted.Postal
    , test1backlog.Customer = inserted.Customer
    , test1backlog.Address = inserted.Address
    , test1backlog.ShipDate = inserted.ShipDate
    , test1backlog.Carrier = inserted.Carrier
    , test1backlog.Waybill = inserted.Waybill
    , test1backlog.CanBeShipped = inserted.CanBeShipped
    , test1backlog.PlannerCode = inserted.PlannerCode
    , test1backlog.rowguid = inserted.rowguid
    from inserted join test1backlog on inserted.WorkOrderNumber = test1backlog.WorkOrderNumber
    and test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    and test1backlog.CustPONumber = inserted.CustPONumber
    and test1backlog.Status = inserted.Status
    and test1backlog.Comments = inserted.Comments
    and test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    and test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    and test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    and test1backlog.WorkOrderType = inserted.WorkOrderType
    and test1backlog.CustomerName = inserted.CustomerName
    and test1backlog.Attn = inserted.Attn
    and test1backlog.CustAddr1 = inserted.CustAddr1
    and test1backlog.CustAddr2 = inserted.CustAddr2
    and test1backlog.CustAddr3 = inserted.CustAddr3
    and test1backlog.City = inserted.City
    and test1backlog.State = inserted.State
    and test1backlog.Postal = inserted.Postal
    and test1backlog.Customer = inserted.Customer
    and test1backlog.Address = inserted.Address
    and test1backlog.ShipDate = inserted.ShipDate
    and test1backlog.Carrier = inserted.Carrier
    and test1backlog.Waybill = inserted.Waybill
    and test1backlog.CanBeShipped = inserted.CanBeShipped
    and test1backlog.PlannerCode = inserted.PlannerCode
    and test1backlog.rowguid = inserted.rowguid


    Thanks a lot in advance.

  2. #2
    raghav Guest

    Update Trigger (Very IMP and Urgent) (reply)

    Dear Chritine,

    Did you check in the SQL trace whether this trigger is getting fired.
    a) If it is getting fired then did you check whether the join condition actually retrieves some rows.
    b) if the trigger is not getting fired can u check whether the trigger is enabled??

    Hope this helps u!!!




    ------------
    chritine at 1/10/01 6:07:38 PM

    There are two table table A and table B , if something is updtaed in
    table A , the same should reflect in table B, i wrote a trigger upwhen i modify any thing table A it does not reflect in table B could any one guide me through this....

    Here is the Update trigger i wrote :

    CREATE TRIGGER [updbacklog] ON [testbacklog]
    FOR UPDATE
    AS
    Update test1backlog
    Set test1backlog.WorkOrderNumber = inserted.WorkOrderNumber
    , test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    , test1backlog.CustPONumber = inserted.CustPONumber
    , test1backlog.Status = inserted.Status
    , test1backlog.Comments = inserted.Comments
    , test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    , test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    , test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    , test1backlog.WorkOrderType = inserted.WorkOrderType
    , test1backlog.CustomerName = inserted.CustomerName
    , test1backlog.Attn = inserted.Attn
    , test1backlog.CustAddr1 = inserted.CustAddr1
    , test1backlog.CustAddr2 = inserted.CustAddr2
    , test1backlog.CustAddr3 = inserted.CustAddr3
    , test1backlog.City = inserted.City
    , test1backlog.State = inserted.State
    , test1backlog.Postal = inserted.Postal
    , test1backlog.Customer = inserted.Customer
    , test1backlog.Address = inserted.Address
    , test1backlog.ShipDate = inserted.ShipDate
    , test1backlog.Carrier = inserted.Carrier
    , test1backlog.Waybill = inserted.Waybill
    , test1backlog.CanBeShipped = inserted.CanBeShipped
    , test1backlog.PlannerCode = inserted.PlannerCode
    , test1backlog.rowguid = inserted.rowguid
    from inserted join test1backlog on inserted.WorkOrderNumber = test1backlog.WorkOrderNumber
    and test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    and test1backlog.CustPONumber = inserted.CustPONumber
    and test1backlog.Status = inserted.Status
    and test1backlog.Comments = inserted.Comments
    and test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    and test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    and test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    and test1backlog.WorkOrderType = inserted.WorkOrderType
    and test1backlog.CustomerName = inserted.CustomerName
    and test1backlog.Attn = inserted.Attn
    and test1backlog.CustAddr1 = inserted.CustAddr1
    and test1backlog.CustAddr2 = inserted.CustAddr2
    and test1backlog.CustAddr3 = inserted.CustAddr3
    and test1backlog.City = inserted.City
    and test1backlog.State = inserted.State
    and test1backlog.Postal = inserted.Postal
    and test1backlog.Customer = inserted.Customer
    and test1backlog.Address = inserted.Address
    and test1backlog.ShipDate = inserted.ShipDate
    and test1backlog.Carrier = inserted.Carrier
    and test1backlog.Waybill = inserted.Waybill
    and test1backlog.CanBeShipped = inserted.CanBeShipped
    and test1backlog.PlannerCode = inserted.PlannerCode
    and test1backlog.rowguid = inserted.rowguid


    Thanks a lot in advance.

  3. #3
    Mauricio Ikegami Guest

    Update Trigger (Very IMP and Urgent) (reply)

    Why do you need to update if your code only works if the updated rows on table A have the same NEW values on table B?
    Just use your primary keys to determine which rows to update on the join clause.

    Mauricio
    ------------
    chritine at 1/10/01 6:07:38 PM

    There are two table table A and table B , if something is updtaed in
    table A , the same should reflect in table B, i wrote a trigger upwhen i modify any thing table A it does not reflect in table B could any one guide me through this....

    Here is the Update trigger i wrote :

    CREATE TRIGGER [updbacklog] ON [testbacklog]
    FOR UPDATE
    AS
    Update test1backlog
    Set test1backlog.WorkOrderNumber = inserted.WorkOrderNumber
    , test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    , test1backlog.CustPONumber = inserted.CustPONumber
    , test1backlog.Status = inserted.Status
    , test1backlog.Comments = inserted.Comments
    , test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    , test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    , test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    , test1backlog.WorkOrderType = inserted.WorkOrderType
    , test1backlog.CustomerName = inserted.CustomerName
    , test1backlog.Attn = inserted.Attn
    , test1backlog.CustAddr1 = inserted.CustAddr1
    , test1backlog.CustAddr2 = inserted.CustAddr2
    , test1backlog.CustAddr3 = inserted.CustAddr3
    , test1backlog.City = inserted.City
    , test1backlog.State = inserted.State
    , test1backlog.Postal = inserted.Postal
    , test1backlog.Customer = inserted.Customer
    , test1backlog.Address = inserted.Address
    , test1backlog.ShipDate = inserted.ShipDate
    , test1backlog.Carrier = inserted.Carrier
    , test1backlog.Waybill = inserted.Waybill
    , test1backlog.CanBeShipped = inserted.CanBeShipped
    , test1backlog.PlannerCode = inserted.PlannerCode
    , test1backlog.rowguid = inserted.rowguid
    from inserted join test1backlog on inserted.WorkOrderNumber = test1backlog.WorkOrderNumber
    and test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    and test1backlog.CustPONumber = inserted.CustPONumber
    and test1backlog.Status = inserted.Status
    and test1backlog.Comments = inserted.Comments
    and test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    and test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    and test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    and test1backlog.WorkOrderType = inserted.WorkOrderType
    and test1backlog.CustomerName = inserted.CustomerName
    and test1backlog.Attn = inserted.Attn
    and test1backlog.CustAddr1 = inserted.CustAddr1
    and test1backlog.CustAddr2 = inserted.CustAddr2
    and test1backlog.CustAddr3 = inserted.CustAddr3
    and test1backlog.City = inserted.City
    and test1backlog.State = inserted.State
    and test1backlog.Postal = inserted.Postal
    and test1backlog.Customer = inserted.Customer
    and test1backlog.Address = inserted.Address
    and test1backlog.ShipDate = inserted.ShipDate
    and test1backlog.Carrier = inserted.Carrier
    and test1backlog.Waybill = inserted.Waybill
    and test1backlog.CanBeShipped = inserted.CanBeShipped
    and test1backlog.PlannerCode = inserted.PlannerCode
    and test1backlog.rowguid = inserted.rowguid


    Thanks a lot in advance.

  4. #4
    christine Guest

    Update Trigger (Very IMP and Urgent) (reply)

    i don't really know how to do this could u guide me to and i think there r no primary key's on the tables and we cannot have them.

    thanks mauricio

    ------------
    Mauricio Ikegami at 1/10/01 7:06:58 PM

    Why do you need to update if your code only works if the updated rows on table A have the same NEW values on table B?
    Just use your primary keys to determine which rows to update on the join clause.

    Mauricio
    ------------
    chritine at 1/10/01 6:07:38 PM

    There are two table table A and table B , if something is updtaed in
    table A , the same should reflect in table B, i wrote a trigger upwhen i modify any thing table A it does not reflect in table B could any one guide me through this....

    Here is the Update trigger i wrote :

    CREATE TRIGGER [updbacklog] ON [testbacklog]
    FOR UPDATE
    AS
    Update test1backlog
    Set test1backlog.WorkOrderNumber = inserted.WorkOrderNumber
    , test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    , test1backlog.CustPONumber = inserted.CustPONumber
    , test1backlog.Status = inserted.Status
    , test1backlog.Comments = inserted.Comments
    , test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    , test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    , test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    , test1backlog.WorkOrderType = inserted.WorkOrderType
    , test1backlog.CustomerName = inserted.CustomerName
    , test1backlog.Attn = inserted.Attn
    , test1backlog.CustAddr1 = inserted.CustAddr1
    , test1backlog.CustAddr2 = inserted.CustAddr2
    , test1backlog.CustAddr3 = inserted.CustAddr3
    , test1backlog.City = inserted.City
    , test1backlog.State = inserted.State
    , test1backlog.Postal = inserted.Postal
    , test1backlog.Customer = inserted.Customer
    , test1backlog.Address = inserted.Address
    , test1backlog.ShipDate = inserted.ShipDate
    , test1backlog.Carrier = inserted.Carrier
    , test1backlog.Waybill = inserted.Waybill
    , test1backlog.CanBeShipped = inserted.CanBeShipped
    , test1backlog.PlannerCode = inserted.PlannerCode
    , test1backlog.rowguid = inserted.rowguid
    from inserted join test1backlog on inserted.WorkOrderNumber = test1backlog.WorkOrderNumber
    and test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    and test1backlog.CustPONumber = inserted.CustPONumber
    and test1backlog.Status = inserted.Status
    and test1backlog.Comments = inserted.Comments
    and test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    and test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    and test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    and test1backlog.WorkOrderType = inserted.WorkOrderType
    and test1backlog.CustomerName = inserted.CustomerName
    and test1backlog.Attn = inserted.Attn
    and test1backlog.CustAddr1 = inserted.CustAddr1
    and test1backlog.CustAddr2 = inserted.CustAddr2
    and test1backlog.CustAddr3 = inserted.CustAddr3
    and test1backlog.City = inserted.City
    and test1backlog.State = inserted.State
    and test1backlog.Postal = inserted.Postal
    and test1backlog.Customer = inserted.Customer
    and test1backlog.Address = inserted.Address
    and test1backlog.ShipDate = inserted.ShipDate
    and test1backlog.Carrier = inserted.Carrier
    and test1backlog.Waybill = inserted.Waybill
    and test1backlog.CanBeShipped = inserted.CanBeShipped
    and test1backlog.PlannerCode = inserted.PlannerCode
    and test1backlog.rowguid = inserted.rowguid


    Thanks a lot in advance.

  5. #5
    Guest

    Update Trigger (Very IMP and Urgent) (reply)


    Thanks Raghav, i don't really know what r u talking about could u guide me to perform these operations as far as i know the trigger is enabled...but still how can i check whether its active or not baxically i need everything to be syncronized.

    i appriciate ur help.

    ------------
    raghav at 1/10/01 7:06:29 PM

    Dear Chritine,

    Did you check in the SQL trace whether this trigger is getting fired.
    a) If it is getting fired then did you check whether the join condition actually retrieves some rows.
    b) if the trigger is not getting fired can u check whether the trigger is enabled??

    Hope this helps u!!!




    ------------
    chritine at 1/10/01 6:07:38 PM

    There are two table table A and table B , if something is updtaed in
    table A , the same should reflect in table B, i wrote a trigger upwhen i modify any thing table A it does not reflect in table B could any one guide me through this....

    Here is the Update trigger i wrote :

    CREATE TRIGGER [updbacklog] ON [testbacklog]
    FOR UPDATE
    AS
    Update test1backlog
    Set test1backlog.WorkOrderNumber = inserted.WorkOrderNumber
    , test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    , test1backlog.CustPONumber = inserted.CustPONumber
    , test1backlog.Status = inserted.Status
    , test1backlog.Comments = inserted.Comments
    , test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    , test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    , test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    , test1backlog.WorkOrderType = inserted.WorkOrderType
    , test1backlog.CustomerName = inserted.CustomerName
    , test1backlog.Attn = inserted.Attn
    , test1backlog.CustAddr1 = inserted.CustAddr1
    , test1backlog.CustAddr2 = inserted.CustAddr2
    , test1backlog.CustAddr3 = inserted.CustAddr3
    , test1backlog.City = inserted.City
    , test1backlog.State = inserted.State
    , test1backlog.Postal = inserted.Postal
    , test1backlog.Customer = inserted.Customer
    , test1backlog.Address = inserted.Address
    , test1backlog.ShipDate = inserted.ShipDate
    , test1backlog.Carrier = inserted.Carrier
    , test1backlog.Waybill = inserted.Waybill
    , test1backlog.CanBeShipped = inserted.CanBeShipped
    , test1backlog.PlannerCode = inserted.PlannerCode
    , test1backlog.rowguid = inserted.rowguid
    from inserted join test1backlog on inserted.WorkOrderNumber = test1backlog.WorkOrderNumber
    and test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    and test1backlog.CustPONumber = inserted.CustPONumber
    and test1backlog.Status = inserted.Status
    and test1backlog.Comments = inserted.Comments
    and test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    and test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    and test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    and test1backlog.WorkOrderType = inserted.WorkOrderType
    and test1backlog.CustomerName = inserted.CustomerName
    and test1backlog.Attn = inserted.Attn
    and test1backlog.CustAddr1 = inserted.CustAddr1
    and test1backlog.CustAddr2 = inserted.CustAddr2
    and test1backlog.CustAddr3 = inserted.CustAddr3
    and test1backlog.City = inserted.City
    and test1backlog.State = inserted.State
    and test1backlog.Postal = inserted.Postal
    and test1backlog.Customer = inserted.Customer
    and test1backlog.Address = inserted.Address
    and test1backlog.ShipDate = inserted.ShipDate
    and test1backlog.Carrier = inserted.Carrier
    and test1backlog.Waybill = inserted.Waybill
    and test1backlog.CanBeShipped = inserted.CanBeShipped
    and test1backlog.PlannerCode = inserted.PlannerCode
    and test1backlog.rowguid = inserted.rowguid


    Thanks a lot in advance.

  6. #6
    Rajeev Guest

    Update Trigger (Very IMP and Urgent) (reply)

    hai ,
    I don't think you can workout with this trigger.I hope you just want to reflect the updation changes in A to B, for that you can create A primary key in the table will be much better.


    ------------
    christine at 1/10/01 7:14:29 PM

    i don't really know how to do this could u guide me to and i think there r no primary key's on the tables and we cannot have them.

    thanks mauricio

    ------------
    Mauricio Ikegami at 1/10/01 7:06:58 PM

    Why do you need to update if your code only works if the updated rows on table A have the same NEW values on table B?
    Just use your primary keys to determine which rows to update on the join clause.

    Mauricio
    ------------
    chritine at 1/10/01 6:07:38 PM

    There are two table table A and table B , if something is updtaed in
    table A , the same should reflect in table B, i wrote a trigger upwhen i modify any thing table A it does not reflect in table B could any one guide me through this....

    Here is the Update trigger i wrote :

    CREATE TRIGGER [updbacklog] ON [testbacklog]
    FOR UPDATE
    AS
    Update test1backlog
    Set test1backlog.WorkOrderNumber = inserted.WorkOrderNumber
    , test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    , test1backlog.CustPONumber = inserted.CustPONumber
    , test1backlog.Status = inserted.Status
    , test1backlog.Comments = inserted.Comments
    , test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    , test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    , test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    , test1backlog.WorkOrderType = inserted.WorkOrderType
    , test1backlog.CustomerName = inserted.CustomerName
    , test1backlog.Attn = inserted.Attn
    , test1backlog.CustAddr1 = inserted.CustAddr1
    , test1backlog.CustAddr2 = inserted.CustAddr2
    , test1backlog.CustAddr3 = inserted.CustAddr3
    , test1backlog.City = inserted.City
    , test1backlog.State = inserted.State
    , test1backlog.Postal = inserted.Postal
    , test1backlog.Customer = inserted.Customer
    , test1backlog.Address = inserted.Address
    , test1backlog.ShipDate = inserted.ShipDate
    , test1backlog.Carrier = inserted.Carrier
    , test1backlog.Waybill = inserted.Waybill
    , test1backlog.CanBeShipped = inserted.CanBeShipped
    , test1backlog.PlannerCode = inserted.PlannerCode
    , test1backlog.rowguid = inserted.rowguid
    from inserted join test1backlog on inserted.WorkOrderNumber = test1backlog.WorkOrderNumber
    and test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    and test1backlog.CustPONumber = inserted.CustPONumber
    and test1backlog.Status = inserted.Status
    and test1backlog.Comments = inserted.Comments
    and test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    and test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    and test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    and test1backlog.WorkOrderType = inserted.WorkOrderType
    and test1backlog.CustomerName = inserted.CustomerName
    and test1backlog.Attn = inserted.Attn
    and test1backlog.CustAddr1 = inserted.CustAddr1
    and test1backlog.CustAddr2 = inserted.CustAddr2
    and test1backlog.CustAddr3 = inserted.CustAddr3
    and test1backlog.City = inserted.City
    and test1backlog.State = inserted.State
    and test1backlog.Postal = inserted.Postal
    and test1backlog.Customer = inserted.Customer
    and test1backlog.Address = inserted.Address
    and test1backlog.ShipDate = inserted.ShipDate
    and test1backlog.Carrier = inserted.Carrier
    and test1backlog.Waybill = inserted.Waybill
    and test1backlog.CanBeShipped = inserted.CanBeShipped
    and test1backlog.PlannerCode = inserted.PlannerCode
    and test1backlog.rowguid = inserted.rowguid


    Thanks a lot in advance.

  7. #7
    Mike John Guest

    Update Trigger (Very IMP and Urgent) (reply)


    You say there are no PK,s but you MUST have something that uniquely identifies a row whether it is defined as a Primary Key or not. Looking at the update statement there is a column called rowguid which I would guess is a unique ID in the table therefore you could use that in the where clause something like

    UPDATE test1backlog

    Set WorkOrderNumber = i.WorkOrderNumber -- etc for all req columns
    from
    inserted i
    join deleted d on i.rowguid = d. rowguid
    join test1backlog on t1.rowguid = d.rowguid

    You really want to get rid of that huge where clause, a single unique column is really needed. Also check indexes etc for decent performance.

    As a matter of interest why are you doing this? Just intrigued.

    Mike John

    Knowledgepool ltd.





    ------------
    christine at 1/10/01 7:14:29 PM

    i don't really know how to do this could u guide me to and i think there r no primary key's on the tables and we cannot have them.

    thanks mauricio

    ------------
    Mauricio Ikegami at 1/10/01 7:06:58 PM

    Why do you need to update if your code only works if the updated rows on table A have the same NEW values on table B?
    Just use your primary keys to determine which rows to update on the join clause.

    Mauricio
    ------------
    chritine at 1/10/01 6:07:38 PM

    There are two table table A and table B , if something is updtaed in
    table A , the same should reflect in table B, i wrote a trigger upwhen i modify any thing table A it does not reflect in table B could any one guide me through this....

    Here is the Update trigger i wrote :

    CREATE TRIGGER [updbacklog] ON [testbacklog]
    FOR UPDATE
    AS
    Update test1backlog
    Set test1backlog.WorkOrderNumber = inserted.WorkOrderNumber
    , test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    , test1backlog.CustPONumber = inserted.CustPONumber
    , test1backlog.Status = inserted.Status
    , test1backlog.Comments = inserted.Comments
    , test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    , test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    , test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    , test1backlog.WorkOrderType = inserted.WorkOrderType
    , test1backlog.CustomerName = inserted.CustomerName
    , test1backlog.Attn = inserted.Attn
    , test1backlog.CustAddr1 = inserted.CustAddr1
    , test1backlog.CustAddr2 = inserted.CustAddr2
    , test1backlog.CustAddr3 = inserted.CustAddr3
    , test1backlog.City = inserted.City
    , test1backlog.State = inserted.State
    , test1backlog.Postal = inserted.Postal
    , test1backlog.Customer = inserted.Customer
    , test1backlog.Address = inserted.Address
    , test1backlog.ShipDate = inserted.ShipDate
    , test1backlog.Carrier = inserted.Carrier
    , test1backlog.Waybill = inserted.Waybill
    , test1backlog.CanBeShipped = inserted.CanBeShipped
    , test1backlog.PlannerCode = inserted.PlannerCode
    , test1backlog.rowguid = inserted.rowguid
    from inserted join test1backlog on inserted.WorkOrderNumber = test1backlog.WorkOrderNumber
    and test1backlog.SalesOrderNumber = inserted.SalesOrderNumber
    and test1backlog.CustPONumber = inserted.CustPONumber
    and test1backlog.Status = inserted.Status
    and test1backlog.Comments = inserted.Comments
    and test1backlog.TargetCompletionDate = inserted.TargetCompletionDate
    and test1backlog.ActualCompletionDate = inserted.ActualCompletionDate
    and test1backlog.IsCommercialReportRequired = inserted.IsCommercialReportRequired
    and test1backlog.WorkOrderType = inserted.WorkOrderType
    and test1backlog.CustomerName = inserted.CustomerName
    and test1backlog.Attn = inserted.Attn
    and test1backlog.CustAddr1 = inserted.CustAddr1
    and test1backlog.CustAddr2 = inserted.CustAddr2
    and test1backlog.CustAddr3 = inserted.CustAddr3
    and test1backlog.City = inserted.City
    and test1backlog.State = inserted.State
    and test1backlog.Postal = inserted.Postal
    and test1backlog.Customer = inserted.Customer
    and test1backlog.Address = inserted.Address
    and test1backlog.ShipDate = inserted.ShipDate
    and test1backlog.Carrier = inserted.Carrier
    and test1backlog.Waybill = inserted.Waybill
    and test1backlog.CanBeShipped = inserted.CanBeShipped
    and test1backlog.PlannerCode = inserted.PlannerCode
    and test1backlog.rowguid = inserted.rowguid


    Thanks a lot in advance.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •