Forum Discussion

Clampazzo's avatar
Clampazzo
Icon for Resolver I rankResolver I
2 years ago
Solved

Can I add a role for RLS Using XMLA Endpiont and C#?

I have managed to create a new semantic model using XMLA Endpoint and C# but now I need to be able to create Roles for RLS using the same method.  Is this allowed?  And if so How can I go about doing it? 

Below is my simple code in creating the semantic model.

 

If I can call a REST API tha twould work too... I just didn't see any that would work.

 

 

   string newDatabaseName = server.Databases.GetNewName(DatabaseName);

   var database = new Microsoft.AnalysisServices.Database()
   {
       Name = newDatabaseName,
       ID = newDatabaseName,
       CompatibilityLevel = 1520,
       StorageEngineUsed = Microsoft.AnalysisServices.StorageEngineUsed.TabularMetadata,
       Model = new Model()
       {
           Name = DatabaseName + "-Model",
           Description = "A Demo Tabular data model with 1520 compatibility level."
       }
   };

   server.Databases.Add(database);
   database.Update(Microsoft.AnalysisServices.UpdateOptions.ExpandFull);

 

  • GilbertQ's avatar
    GilbertQ
    2 years ago

    Hi Clampazzo 

     

    You could use SSMS to log into the XMLA end point and then script out the database?

6 Replies

  • Hi Clampazzo 

     

    What I would do is to connect to the XMLA endpoint using tablet editor and create the roles using tabler editor. It would be a lot quicker and efficiently create your role and give them as working as expected.

    • Clampazzo's avatar
      Clampazzo
      Icon for Resolver I rankResolver I

      Thanks for the reply GilbertQ , while that would be easy to do I need to dynamically create these datasets.  They will all be DirectQuery but I am creating a new dataset (sometimes multiple) per client workspace.  So going in manually later would be difficult to do.  

      If there's a way to copy a template dataset and then modify it using xmla (while keeping roles) that would be acceptable too.

      • GilbertQ's avatar
        GilbertQ
        Icon for Super User rankSuper User

        Hi Clampazzo 

         

        One option might be to script after the database after you have created the roles. You can then use this script to reapply to other app workspaces with the roles as part of the script.