Peter van Eck
SSC Enthusiast
Points: 188
More actions
July 2, 2004 at 1:56 am
#85840
Stupid question :
is there a way to get the output of dbcc inputbuffer into a table ?
tnx !
Steve Jones - SSC Editor
SSC Guru
Points: 736212
July 2, 2004 at 7:39 am
#513156
dbcc inputbuffer ( 13) with tableresults
July 2, 2004 at 7:48 am
#513161
Cannot find the with options you gave, but I found this :
DROP TABLE #dbc
go
create table #dbc(c1 varchar(15), c2 int, c3 varchar(255))
insert #dbc EXEC('dbcc inputbuffer(7)')
wich works fine too
tnx anyway !
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply