Forum Discussion

Victornld2's avatar
Victornld2
Frequent Visitor
2 years ago
Solved

Process only a table in an Azure Analysis Service database, in Azure Data Factory

Hi everyone,    I'm trying to process only a table in Azure Analysis Services database, via Azure Data factory.   I can process the whole tabular model in a pipeline with parametrized url etc. Bu...
  • NandanHegde's avatar
    2 years ago

    Hey,

    You can leverage Web activity to process a single table in AAS via ADF :

    URL : 

    @concat('https://',pipeline().parameters.Region,'.asazure.windows.net/servers/',pipeline().parameters.Server,'/models/',pipeline().parameters.DatabaseName,'/refreshes')
     
    Body : 
    {"Type":"Full","CommitMode":"transactional","MaxParallelism":10,"RetryCount":2,"Objects":@{pipeline().parameters.Objects}}
     
    where objects are table names within AAS
     
    To answer to your other query, you can use Power automate visual and via power automtae trigger the ADF pipeline