mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 01:01:58 +03:00
Added tag tag1 for changeset 4c285537b335
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Permissions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:Microsoft.VisualStudio.Data.Schema.Permissions" Version="1.0">
|
||||
<!-- The examples below are provided to illustrate how permissions
|
||||
are defined in the project system for Databases, Objects,
|
||||
and Columns.
|
||||
|
||||
GRANT Database Permissions
|
||||
|
||||
<PermissionStatement Action ="GRANT">
|
||||
<Permission>CREATE TABLE</Permission>
|
||||
<Grantee>User1</Grantee>
|
||||
</PermissionStatement>
|
||||
|
||||
GRANT Object Permission
|
||||
|
||||
<PermissionStatement Action ="GRANT">
|
||||
<Permission>SELECT</Permission>
|
||||
<Grantee>User1</Grantee>
|
||||
<Object Name ="Table1" Schema ="User1" Type ="OBJECT"/>
|
||||
</PermissionStatement>
|
||||
|
||||
DENY Object Permission
|
||||
|
||||
<PermissionStatement Action ="DENY">
|
||||
<Permission>DELETE</Permission>
|
||||
<Grantee>User1</Grantee>
|
||||
<Object Name ="Table1" Schema ="User1" Type ="OBJECT"/>
|
||||
</PermissionStatement>
|
||||
|
||||
GRANT Object Column Permission
|
||||
|
||||
<PermissionStatement Action ="GRANT">
|
||||
<Permission>SELECT</Permission>
|
||||
<Grantee>User1</Grantee>
|
||||
<Object Name ="Table1" Schema ="User1" Type ="OBJECT">
|
||||
<Columns Treatment ="INCLUDE">
|
||||
<Column Name="Col1"/>
|
||||
<Column Name="Col2"/>
|
||||
<Column Name="…"/>
|
||||
</Columns>
|
||||
</Object>
|
||||
</PermissionStatement>
|
||||
-->
|
||||
</Permissions>
|
||||
Reference in New Issue
Block a user