Table of Contents

Class CompatibilitySchema.Permission

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.syspermissions (Transact-SQL)

Applies to: √ SQL Server (all supported versions)

Contains information about permissions granted and denied to users, groups, and roles in the database.

important


This SQL Server 2000 system table is included as a view for backward compatibility. We recommend that you use the current SQL Server system views instead. To find the equivalent system view or views, see Mapping System Tables to System Views (Transact-SQL). This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.


See sys.syspermissions.

[Table(Schema = "sys", Name = "syspermissions", IsView = true)]
public class CompatibilitySchema.Permission
Inheritance
CompatibilitySchema.Permission
Extension Methods

Properties

Actadd

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("actadd")]
[Nullable]
public short? Actadd { get; set; }

Property Value

short?

Actmod

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("actmod")]
[Nullable]
public short? Actmod { get; set; }

Property Value

short?

Grantee

ID of the user, group, or role affected by the permission.

[Column("grantee")]
[Nullable]
public short? Grantee { get; set; }

Property Value

short?

Grantor

ID of the user, group, or role that granted or denied the permission.

[Column("grantor")]
[Nullable]
public short? Grantor { get; set; }

Property Value

short?

ID

ID of the object for object permissions.

0 = Statement permissions.

[Column("id")]
[NotNull]
public int ID { get; set; }

Property Value

int

Refadd

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("refadd")]
[Nullable]
public byte[]? Refadd { get; set; }

Property Value

byte[]

Refmod

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("refmod")]
[Nullable]
public byte[]? Refmod { get; set; }

Property Value

byte[]

Seladd

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("seladd")]
[Nullable]
public byte[]? Seladd { get; set; }

Property Value

byte[]

Selmod

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("selmod")]
[Nullable]
public byte[]? Selmod { get; set; }

Property Value

byte[]

Updadd

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("updadd")]
[Nullable]
public byte[]? Updadd { get; set; }

Property Value

byte[]

Updmod

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("updmod")]
[Nullable]
public byte[]? Updmod { get; set; }

Property Value

byte[]