• Prasanna,

    SQL Server does not produce any trace events based on table columns. If you need to make sure you do not miss any data with a trace you need to get away from using the Profiler GUI and use a server-side trace that writes to a file. You can then use fn_trace_gettable to read/query the trace file. You can use Profiler to setup the trace definition and export it to a sql file.

    There are some videos on Profiler at www.jumpstarttv.com that can help with this and you should read up on SQL Trace in BOL.