Skip to content

Commit

Permalink
Update appservice.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kszicsillag committed Nov 10, 2023
1 parent 9fa919b commit 513f1e7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions AppService/appservice.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,16 +104,14 @@ JOIN sys.database_principals AS dp ON m.member_principal_id = dp.principal_id
JOIN sys.database_principals AS r ON m.role_principal_id = r.principal_id
WHERE dp.name = 'your_msi_principal';

-- List of object-level permissions for the MSI user (optional)
-- List of object-level permissions for the MSI user
SELECT d.name AS object_name, dp.name AS principal_name, dp.type_desc AS principal_type, p.permission_name
FROM sys.database_permissions AS p
JOIN sys.database_principals AS dp ON p.grantee_principal_id = dp.principal_id
LEFT JOIN sys.objects AS d ON p.major_id = d.object_id
WHERE dp.name = 'your_msi_principal';
```



## Csatlakozás fejlesztői gépről AD felhasználóként

- `appsettings.Development.json`-be connection stringet átírni:
Expand Down

0 comments on commit 513f1e7

Please sign in to comment.