Is anyone familiar with a way to LOAD more than 1 flat/trace file into a table?
I've been using the following SQL to load a single trace file at a time
SELECT * INTO TraceMon FROM ::fn_trace_gettable('T:\TRACE\HISTORY\flat_trace_file_01.trc', default)
(I've been playing tricks to load the 2nd, 3rd, 4th.... flat files into temp tables then INSERTing the Temp table data into the actual base table but would prefer to be able to concatenate the actual flat files together)
BT