Permission.Read Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the Read attribute for the parent object.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[DefaultValueAttribute(ReadAccess.None)]
public ReadAccess Read { get; set; }
public:
[DefaultValueAttribute(ReadAccess::None)]
property ReadAccess Read {
    ReadAccess get();
    void set(ReadAccess value);
}
[<DefaultValueAttribute(ReadAccess.None)>]
member Read : ReadAccess with get, set
<DefaultValueAttribute(ReadAccess.None)>
Public Property Read As ReadAccess

Property Value

Type: Microsoft.AnalysisServices.ReadAccess

An enumeration value with the Read attributes. Values can be None or Allowed; default value is None.

Remarks

Read attribute provides the ability to access schema rowsets and data content.

Read access on a database provides the ability to discover database. This permission is a prerequisite to read or write to any object in the database.

Read access on a cube permits access in schema rowsets and access to cube content (possibly constrained by CellPermissions and CubeDimension Permissions).

A Read permission on a dimension grants that permission on all attributes in the dimension (possibly constrained by CubeDimension).

Read on a MiningModelPermission grants permissions to see object in schema rowsets and to perform predict joins.

See Also

Permission Class
Microsoft.AnalysisServices Namespace

Return to top