CATCHV Blog

SQL Profiler 결과 데이터베이스로 읽어오기 본문

Database/MS SQL

SQL Profiler 결과 데이터베이스로 읽어오기

catchv 2012. 2. 4. 10:07
반응형

 

SELECT    IDENTITY(int, 1,1) AS Num, *

INTO    #temp_trc

FROM    ::fn_trace_gettable('d:\a.trc', DEFAULT)

 

SELECT * FROM #temp_trc

반응형
Comments