Authentication Mode
If you
want to use Mixed Mode Authentication, (so you can logon with a SQL
username and
password i.e. the sa logon) then you may need to reset the
Authentication mode. By default, whilst installing Windows Authentication
mode is set.
For
this you need the SQL
Server Management Studio Express installed. It may already
be on
your menu...
To get
the Studio Express from Microsoft, the MS download link is...
(about
43 Megs)
(This
requires MSXML 6.0 which may already be on Windows machine if you have
recent updates.
Once
Studio Express is installed, only then can we switch on the MixedMode
connections to
the database...
Start
StudioExpress, right-click the Server in the left hand pane, and select
properties to get
this screen..
Set the
Server Authentication as shown above.
That
should be all that is needed, apart from a Stop and restart of the
service.
If
whilst installing, Windows Authentication mode only was set, you now
need to enable the
sa user. This user was created during the install, but was set to
disabled.
Open a
New Query window (button just above the Object Explorer left
side) and enter the below
sql commands.. but of course replace the <password> shown here with a strong password of your own. Make
sure it can be found/remembered when needed.
ALTER
LOGIN sa ENABLE ;
GO
ALTER
LOGIN sa WITH PASSWORD = '<password>' ;
GO
============================================
That
should get you up and running.