Video není dostupné.
Omlouváme se.

Server roles , Database roles & Application roles in SQL Server || Ms SQL

Sdílet
Vložit
  • čas přidán 21. 07. 2020
  • Server-Level Roles : Describes fixed server roles and the permissions associated with them in SQL Server.SQL Server provides server-level roles to help you manage the permissions on a server.
    Database-Level Roles : Describes fixed database roles and the permissions associated with them.
    To easily manage the permissions in your databases, SQL Server provides several roles which are security principals that group other principals.
    aka.ms/sql-permissions-poster
    Application roles : docs.microsoft.com/en-us/sql/...
    For more information n server roles: docs.microsoft.com/en-us/sql/...
    Permissions: docs.microsoft.com/en-us/sql/...

Komentáře • 15

  • @SaphireTech
    @SaphireTech Před 8 měsíci

    Read loads of documentation but never really got a sense of what it actually looks like and how it's setup. Actually seeing it really helps, thanks!

  • @ShivajiSaduvelly
    @ShivajiSaduvelly Před rokem

    Simply clear explanation with examples. thank you very much !!!

  • @Harshita_Bhardwaj
    @Harshita_Bhardwaj Před 2 lety +2

    Your channel is very very helpful! Thank you for the great explanation🙏

  • @amitbhardwaj8801
    @amitbhardwaj8801 Před 2 lety

    Thank for sharing the knowledge

  • @moinshakira2558
    @moinshakira2558 Před rokem

    「明確なメッセージ、明確な構造、理解しやすい、ありがとう」、

  • @sureshpal5613
    @sureshpal5613 Před rokem

    great video

  • @xyz-wz3ok
    @xyz-wz3ok Před rokem

    Very helpful..

  • @jingtingong6177
    @jingtingong6177 Před 2 lety

    Hi, why we need schema for the database user?

  • @banalasiva5743
    @banalasiva5743 Před rokem

    through command how to give permissions to server level and database level

  • @waldemarsoto9091
    @waldemarsoto9091 Před 8 měsíci

    Hello, a question, does the user 'sa' have all the permissions and privileges to use the databasemail?

  • @chattoronkaadda4342
    @chattoronkaadda4342 Před 2 lety

    Hi sir, can you tell me sql 2012 server sa default password???

  • @aahaa8049
    @aahaa8049 Před 3 lety +1

    Can u share me link to create login and user sql

    • @righttolearnbk
      @righttolearnbk  Před 3 lety +1

      To create login
      1) Windows Authentication:
      CREATE LOGIN [Domain_name\Login_name] FROM WINDOWS WITH DEFAULT_DATABASE=[master]
      2) SQL authentication:
      CREATE LOGIN [Login_name] WITH PASSWORD=N'p@ssw0rd', DEFAULT_DATABASE=[master], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
      To create user in a database:
      USE [DB_name]
      GO
      CREATE USER [user_name] FOR LOGIN [Login_name]
      GO