Your SQL Server password can be changed using the following SQL Query
ALTER LOGIN yoursqllogin WITH PASSWORD = 'newpassword' OLD_PASSWORD = 'oldpassword'
You can create an SQL Query by going into File > New > Query with Current Connection.
Technical support for students in the School of Computing and Mathematical Sciences (CMS)
Your SQL Server password can be changed using the following SQL Query
ALTER LOGIN yoursqllogin WITH PASSWORD = 'newpassword' OLD_PASSWORD = 'oldpassword'
You can create an SQL Query by going into File > New > Query with Current Connection.