How to rename SA account in SQL Server
Posted by Jugal Shah on December 3, 2010
You can use below script to rename SA account. Script will work with SQL Server 2005 and higer versions.
ALTER LOGIN sa Disable;
ALTER LOGIN sa WITH NAME = [Jugal];
18.520469
73.856621
Like this:
Be the first to like this post.
This entry was posted on December 3, 2010 at 4:13 pm and is filed under SQL Server.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.