Select @@Servername returns null after reboot

  • After a reboot of a SQL 2000 box, a Select @@Servername returns null when it used to return the server name. I suspect that one of the SAs has used sp_addserver incorrectly and the effects are just apparent after the stop and start of SQL. Has anyone ever seen this before, or know any other reason why Select @@Servername would return null after a reboot, when if used to return the server name?

  • Did you try re-rebooting? I saw that as a solution to a similar problem, but I can't find the actual thread now.

  • We solve the problem by:

    SP_dropserver 'ABC'

    go

    sp_addServer 'ABC', 'local'

    and then stopping and restarting SQL. But this was after many things failed that relied on the @@Servername. Naturally I would like to prevent this from happening again.

  • Glad to hear that. Maybe you should drop a line to the other DBAs, maybe that'll ring a bell for something they did in the last x months.

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply