Hi I have 2 sql server 2005 clustered server with 2nd one restored from first one and both in the same domain
however, I found suser_sname behavior is different on 2 servers: 1st one returns immediately but 2nd one has 25 second delay as least:
Scripts as below:
select
getdate()
select
suser_sname(0x01050000000000051500000001198F7FAF1F9C7BC964C71A1B620000)
select
getdate()
select
suser_sname(0x01050000000000051500000001198F7FAF1F9C7BC964C71AA66B0000)
select
getdate()
go
result is:
2008-11-06 09:07:34.483
--------------------------------------------------------------------------------------------------------------------------------
NULL
2008-11-06 09:07:59.500
--------------------------------------------------------------------------------------------------------------------------------
NULL
2008-11-06 09:07:59.500
any idea? does it relate to domain authentication?pls help.
thanks
George