SQL Profiler vs Server side Trace

Just drag and drop them in sql profiler. Use fn_trace_gettable with below query. SELECT DB_NAME (DatabaseID) ,* FROM . fn_trace_gettable( convert (varchar(1000), ‘location of file\tracefile.trc’) , default) order by starttime. Load the data into a trace table and then run queries against the trace file. Using below commands . ................
................