Tagged Questions
The spid tag has no wiki summary.
2
votes
3answers
753 views
SQL Server - Hanging Process - SPID Query
How do I find what is the associated query that is being executed if I have the SPID. Trying to figure out what query is being associated since the process seems to be hung.
2
votes
1answer
71 views
What is the relationship between open SqlConnections in the client app and processes in SQL Server?
I just tried to make a simple schema change to a table in a SQL Server database (by using the Design tool in SMSS). Whenever I tried to save the change, it kept timing out. I wondered whether this was ...
2
votes
1answer
280 views
What is the relationship between a SPID and a Connection in SQL server?
Can a SPID be used by two connections, while both connections are open?
If a connection is returned to a connection pool, will it hold on to the SPID?
1
vote
1answer
326 views
Getting the spid of a Powerbuilder database Connection?
I've been trying to find some manual information on this, but my search is fruitless.
I'm trying to see if there is a way to find the unique spid (from sp_who) of a connection into a database from ...
1
vote
2answers
3k views
How do I kill an unruly spid in Sybase?
I've got a couple of rogue spid's in my database that I can see are sleeping when I log in as sa and use sp_who, but attempts to use kill <spid> to eliminate them have failed and I don't ...
0
votes
1answer
78 views
Transport-level error: SQL Server lost connection (forcibly closed by remote host) after windows sleep mode
I built a VB .NET app which has a connection to SQL Server. While the app is running, the Windows OS changes to sleep mode. After I turn the machine on again, I found this error:
A transport-level ...
0
votes
1answer
388 views
Can I share a single database connection between ODBC and ADO?
Is it possible to have an ODBC connection and an ADO connection share the same underlying SQL Server connection, so that both are using the same SPID?
Currently I am using SQLDriverConnect and ...
0
votes
3answers
443 views
Is KPID globally unique within Sybase?
Can a KPID (as select kpid from master..sysprocesses) be assumed to be globally and always unique?
(I've found that for my small sample set KPID(n+1) ~= KPID(n) + 65536 (2^16) but I want to know if I ...
0
votes
5answers
911 views
Identifying underlying sql connection of SqlConnection object
I can use GetHashCode() to identify an object but is there any way to identify the actual sql connection obtained by a SqlConnection object?
I'm (still) trying to debug a problem involving pooled ...