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];
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];
Thanks Jugal Shah, you script will be helpfull.