I have installed SQL Server 2008 using Windows Authentication in my laptop for my own use. I want to add Sysadmin account/role using SQL Server Login type. I checked this post, but it's not showing what I need. How can I add the sysadmin account? By right shouldn't it be the default role/login?
|
When installing SQL Server a login Or you can create your own login:
This all assumes Mixed-Mode authentication is set up to allow SQL logins. Change Server Authentication Mode. After comment: So from the link above to change to Mixed-mode in Management Studio you would:
It should look something like this:
|
|||||||||||
|
|
'sysadmin' is a role, 'sa' is the 'system administrator' sql-login. If you installed just using Windows Authentication (default mode), the 'sa' account is already there, but will be disabled by default. Look under YourServerName -> Security -> Logins in Management Studio, and you should see 'sa' with a down-arrow in the icon (symbolises a disabled user) You have to log in using an account with sufficient privileges (if your installation account has sysadmin privileges that will work), then enable 'sa' and set a password. |
|||
|


