insert trigger, profile could not trace

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We have merge replication system. In a table, there is a insert trigger.
When a record is inserted from SQL analyzer, the trigger works fine. When a
C# application insert a record, the trigger did not fire. I even can not
trace the insert from the application with profile. Where I missed?

Any help is appreciated.
 
is the actual value being updated in the database?

What code are you writing to insert from C#?

Idealy all updates to the database GET tracked my the profiler.
 
is the actual value being updated in the database?

What code are you writing to insert from C#?

Idealy all updates to the database GET tracked my the profiler.
 
We have merge replication system. In a table, there is a insert trigger.
When a record is inserted from SQL analyzer, the trigger works fine. When a
C# application insert a record, the data is inserted into the database. the
trigger did not fire. I even can not trace the insert from the application
with profile. The data sneaks in the DB, the trigger did not fire. Where I
missed?
 
What is the code in C# that you are using to update the database?

Whats the trigger code?
 
Back
Top