How To Assign A Strong Sa Password For Sql Server 2000?

An administrator installing SQL Server desktop enginenull, blank, simple, or well-known password, when an
must assign a strong password to SQL Server frominstance of MSDE 2000 is switched to Mixed Mode,
security point of view. SQL databases are repositorythe MSDE instance can then be easily accessed by
of various critical data of an organization. You can'tunauthorized users. The SA account cannot be
just make it fall prey to any kind of unauthorized ordropped, and it must always be protected with a
illegitimate use, with weak or easily guessablestrong password to help restrict unauthorized access.
passwords. This article throws light on how toAny user who gains access to an instance of MSDE
specify a strong SA (System Administrator)2000 indirectly get full control on that instance of
password when you install SQL Server DesktopMSDE, and have the ability to access any resources
Engine. MSDE 2000 is the other name for SQL Serverthat the MSDE service account has.
Desktop Engine.To avoid such circumstances, you can use custom
.MDF files are also secured with passwords to avoidapplication code to install MSDE or SQL Server
any un-authorized use. Sometimes complexity in SQLDesktop Engine. For that observe the given points.
password results in administrator or user forgetting itIf the user is going to set up MSDE in Mixed Mode,
or he just lost that password. In such times,SQLand is going to use the SA account, request a strong
Server Password Recovery software proves to bepassword for the SA account from the user. Use
elixir.that password in the MSDE setup.
Even if the SQL instance is using WindowsIf the SA account is not used, generate a random
authentication, you must provide a strong password.string, and then pass that string as the SA password
We know that while using Windows authentication,to the MSDE setup.
the SA account is not used by any user. But theIf somehow you forget the SQL server database
current instance can later be switched to Mixedpassword or you have lost the SQL server database
Mode, and then the SA account becomes an active.MDF password, you need to recover the SQL Server
login. Therefore, it is suggested that you should notpassword immediately. What should be your course
assign the password blank or NULL. It should haveof action to deal with such awkward situation where
strong encryption.you don't want to compromise with the security of
If the SA (SQL authentication login) account has aSQL database?