ABS
ALL
AND
ANY
AVG
bit
COS
COT
DAY
EXP
GO
IN
LEN
LOG
MAX
MIN
NOT
OR
PI
SET
SIN
STR
SUM
TAN
USE
VAR
Expand Minimize
2 out of 3 rated this helpful - Rate this topic

@@SPID

SQL Server 2000

Returns the server process identifier (ID) of the current user process.

Syntax

@@SPID

Return Types

smallint

Remarks

@@SPID can be used to identify the current user process in the output of sp_who.

Examples

This example returns the process ID, login name, and user name for the current user process.

SELECT @@SPID AS 'ID', SYSTEM_USER AS 'Login Name', USER AS 'User Name'

Here is the result set:

ID     Login Name       User Name  
-----  -------------    -----------
11     sa               dbo        

See Also

Configuration Functions

sp_lock

sp_who

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.