Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
schinni
Yak Posting Veteran
66 Posts |
Posted - 2004-05-10 : 18:47:10
|
| Hello,I am trying to do thisHas anybody tried to do this..if so can you psl help me out declare @varb varchar(1000)set @varb = 'Y:\actvity\machine_1.trc'select * from ::fn_trace_gettable('@varb', default) |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2004-05-10 : 18:51:25
|
| declare @varb varchar(1000)set @varb = 'Y:\actvity\machine_1.trc'select * from ::fn_trace_gettable(@varb, default)Tara |
 |
|
|
schinni
Yak Posting Veteran
66 Posts |
Posted - 2004-05-10 : 19:08:27
|
| Thanks Very Much Tara.. |
 |
|
|
|
|
|