Giter Club home page Giter Club logo

tabulareditordocs's Introduction

Tabular Editor 2.x

Tabular Editor 2.x is a free, open-source, tool that lets you easily manipulate and manage measures, calculated columns, display folders, perspectives and translations in Analysis Services Tabular and Power BI XMLA Models (from Compatibility Level 1200 and onwards). The tool is written entirely in .NET WinForms (C#).

Tabular Editor 2.x, when downloaded from GitHub, is digitally signed. The certificate is kindly funded by twoday kapacity.

Looking for Tabular Editor 3?

Please visit tabulareditor.com.

Documentation

Version History

Full version history

tabulareditordocs's People

Contributors

daandamhuis avatar danmeissner avatar data-goblin avatar dbojsen avatar edhans avatar mlonsk avatar otykier avatar y2kbugger avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

tabulareditordocs's Issues

incremental-refresh-about.md - claim on query folding is not entirely accurate

https://github.com/TabularEditor/TabularEditorDocs/blob/main/te3/tutorials/incremental-refresh-about.md

claims that incremental refresh requires query folding. While desirable, it is not required. You can achieve successful incremental refresh with custom queries as well if they incorporate the RangeStart/RangeEnd parameters. Dataflows can also do successful incremental refresh of file data based partitions (these may not be as efficient though).

Link fejl

Hej

Den er dΓΈd:
image

image

Mvh - Henrik 😊

Can I Propose Additional Content for 'Creating PBIX File from XMLA Endpoint' ?

Probably the most common blocker for this process would be if the XMLA endpoint has already processed the incremental refresh policy and created the numerous partitions. PBID will not allow you to open and rehydrate a file with policy based partitions (or any tables with more than one partition).

So we need to remove the policy based partitions, and create a new M partition with the incremental refresh expression. Here's a script that I am using to do this, and it looks like it's allowing me to proceed with the rehydration.

foreach (var t in Model.Tables)
{
    if(t.EnableRefreshPolicy)
 {
    //We will collect the SourceExpression from the Incremental Refresh Source Expression of the table
    string m_expression = t.SourceExpression.ToString();
     
    //We will generate a new partition name
    string partition_name = t.Name + "-" + Guid.NewGuid();

    //Now we will create a new partition
    t.AddMPartition(partition_name, m_expression);
    
    //Next we will delete all the incremental refresh partitions of the table
    foreach (var p in t.Partitions.Where(p => p.Name != partition_name).ToList())
    {
        p.Delete();
    }

    //Next we will set this M partition to Import mode
    foreach (var p in t.Partitions.Where(p => p.SourceType.ToString() == "M").ToList())
    {
        p.Mode = 0;
    }
     
}
};

Anyway someone better than me can improve that code and get that added into the documentation to help assist?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.