Re: How to disable a SQLX file during a non-increm…


I would like to run certain SQLX files during incremental executions, but skip them during full refresh executions. What would be a clean way to accomplish this?

I was thinking of using the disabled property in the config block, similar to below, but wasn’t able to find a property that signifies whether the current execution is incremental or not.

 

config {
  type: "operation",
  disabled: !isIncremental
}

 



Source link

Leave a Comment