• "You can't modify or delete the sa login". That is not exact as you cannot delete it, but you can rename it. I usually do it and I consider it a good practice for security.

    If you want to rename sa login to "samyadmin"

    USE [master]

    GO

    ALTER LOGIN sa WITH NAME = [samyadmin];

    GO