have u setup the trace?
if u haven't, pls refer this doc http://support.microsoft.com/kb/283790
when your trace started, it will store trace files in a folder.
after that, u need to use this function (::fn_trace_gettable('c:\trace_file.trc', default)) to insert your trace data into a table.
u can copy all trace files to your local hard drive, and then, insert the data into a sql server located on your machine.
like this:
SELECT * into mytable FROM ::fn_trace_gettable('c:\trace_file.trc', default)
after that, u should be able to analyze the data in your table.