Due to some specific reasons, I want to run hook queries only, just like some kind of ad-hoc query
The problem is that dbt keeps generating queries like below
create table “hive_source”.“sapo_bi”.“dimusercdp_update”
as (
– Blank since I only need to run the hook query only, no need to create any table
)
And of course when my SQL engine tries to run the above query, it throws an error.
How to just run the freaking hook query only??