Normal
When you installed MSSQL Server on your computer, it would have asked you to set a password for it. If not, maybe null.You can use command prompt to change sql password.[code]Osql -S yourservername -E1> EXEC sp_password NULL, 'yourpassword', 'sa'2> GO[/code]Here is an article describes 4 methods to change sql server password, that could help you.
When you installed MSSQL Server on your computer, it would have asked you to set a password for it. If not, maybe null.
You can use command prompt to change sql password.
[code]Osql -S yourservername -E
1> EXEC sp_password NULL, 'yourpassword', 'sa'
2> GO[/code]
Here is an article describes 4 methods to change sql server password, that could help you.