Where is users names and passwords stored in SQL Server?

Where are user names and passwords stored in SQL Server?

- They are stored in master db in the sysxlogins table.
- The passwords are not stored in plaintext.
- To disable the ability to store the user name and password, you must to create a table called MsysConf in the SQL database.
What is BCP?
It is utility used to copy huge data from tables and views without copy schema of the server object........
How can we move data along with schema of the server object?
We can copy data along schema using DTS package........
Define sub-query
Sub-query is a query within a Query........
Post your comment