SQL 2005: Renamed "sa" account

SQL 2005: Renamed "sa" account

am 07.04.2008 15:38:05 von billmiami2

We have renamed the 'sa' account on a SQL Server 2005 machine. When
we run

SELECT * FROM syslogins

it appears that 'sa' no longer exists as a valid SQL login. However,
when we look at running processes through sp_who, we see that 'sa' is
still being used in various background operations, even when we shut
down and restart the SQL Server. Can someone explain this?

Bill E.
Hollywood, FL

Re: SQL 2005: Renamed "sa" account

am 09.04.2008 14:43:29 von Dan Guzman

My guess is that the reported login name for these internal system processes
is hard-coded as 'sa'. I think this is a bug and will report it on via
Connect feedback (http://connect.microsoft.com/SQLServer) if not already
filed.

--
Hope this helps.

Dan Guzman
SQL Server MVP
http://weblogs.sqlteam.com/dang/

"Bill E." wrote in message
news:c57e421f-d696-4625-baea-94011012cfda@e39g2000hsf.google groups.com...
> We have renamed the 'sa' account on a SQL Server 2005 machine. When
> we run
>
> SELECT * FROM syslogins
>
> it appears that 'sa' no longer exists as a valid SQL login. However,
> when we look at running processes through sp_who, we see that 'sa' is
> still being used in various background operations, even when we shut
> down and restart the SQL Server. Can someone explain this?
>
> Bill E.
> Hollywood, FL

Re: SQL 2005: Renamed "sa" account

am 10.04.2008 02:30:59 von billmiami2

Thanks, Dan.

Bill E.