Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

Go Back  dBforums > Database Server Software > Sybase > How do I see the full sql/query text of a spid?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-26-07, 21:07
ftmjr ftmjr is offline
Registered User
 
Join Date: Mar 2007
Posts: 157
How do I see the full sql/query text of a spid?

How do I see the full sql/query text of a spid? I've been using the following dbcc commands to see the sql text.

dbcc traceon(3604)
go

dbcc sqltext(559)
go

dbcc traceoff(3604)
go

The problem is it truncates the end, so I cannot see the entire query/sql text. Is there another way to a query/sql text that is being run?

Thank you
Reply With Quote
  #2 (permalink)  
Old 11-27-07, 01:43
pdreyer pdreyer is offline
Registered User
 
Join Date: May 2005
Location: South Africa
Posts: 830
Use MDA/Monitoring tables
Code:
select SQLText from master..monProcessSQLText where SPID=@parm order by SPID,BatchID,LineNumber,SequenceInLine
Reply With Quote
  #3 (permalink)  
Old 11-27-07, 01:48
pdreyer pdreyer is offline
Registered User
 
Join Date: May 2005
Location: South Africa
Posts: 830
Also check and increase if necessary
sp_configure 'max SQL text monitored'
Reply With Quote
  #4 (permalink)  
Old 11-27-07, 05:48
ftmjr ftmjr is offline
Registered User
 
Join Date: Mar 2007
Posts: 157
Great feedback and idea...

Thank you for your feedback...

I will use these great ideas. Thank you.
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On