Forum Discussion

monikapatil2612's avatar
monikapatil2612
Regular Visitor
8 months ago
Solved

Incremental refresh

Hi friends, I am using python script in power bi to connect Odoo server to get data.I used XML RPC.It hits it's API limit and failed to get refreshed.it has large size of data.How to set incremental ...
  • anilelmastasi's avatar
    anilelmastasi
    8 months ago

    Hello my_patil ,

     

    If you company use Microsoft products, you can use Azure SQL Database. 

    And for python script you can use Azure Functions. It runs on a schedule and it is serverless (no virtual machine to manage).

     

    After writing to Azure SQL Database, you can apply incremental refresh policies.

    In Azure SQL DB, create table and add updated_at and write_date columns.

    In python script, you can use xmlrpc.client library.

     

    Hope it gives you an idea.