Skip to content
View Curts0's full-sized avatar
Block or Report

Block or report Curts0

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. PyTabular PyTabular Public

    Connect to Tabular Models via Python

    Python 66 11

  2. Get connection string for localhost ... Get connection string for localhost pbi file
    1
    import subprocess
    2
    
                  
    3
    
                  
    4
    def get_msmdsrv() -> list:
    5
        msmdsrv = subprocess.check_output(
  3. List Processing Errors with Error De... List Processing Errors with Error Details
    1
    let error_table = 
    2
        AzureDiagnostics
    3
        | where ResourceProvider == 'MICROSOFT.ANALYSISSERVICES'
    4
        | where OperationName == 'Error'
    5
        | where isempty(User_s) == false;
  4. Re Encoding Logs Re Encoding Logs
    1
    AzureDiagnostics
    2
    | where OperationName == "ProgressReportEnd"
    3
    | where EventSubclass_s == 55
    4
    | project-keep Resource, DatabaseName_s, ObjectReference_s, TextData_s, Duration_s, StartTime_t, EndTime_t
    5
    | extend Object_Json = parse_xml(ObjectReference_s)