what is the differences between sql server authentication and windows authentication..?

前端 未结 10 702
深忆病人
深忆病人 2020-12-08 09:52

what is the difference between sql server authentication and windows authentication...Is there any specific situation of using each authentication?

10条回答
  •  清歌不尽
    2020-12-08 10:14

    I don't know SQLServer as well as other DBMS' but I imagine the benefit is the same as with DB2 and Oracle. If you use Windows authentication, you only have to maintain one set of users and/or passwords, that of Windows, which is already done for you.

    DBMS authentication means having a separate set of users and/or passwords which must be maintained.

    In addition, Windows passwords allow them to be configured centrally for the enterprise (Active Directory) whereas SQLServer has to maintain one set for each DBMS instance.

提交回复
热议问题