Complete the code to specify the connection type for a Tableau data source.
connection_type = "[1]"
In Tableau, a live connection means the data is queried directly from the source in real time.
Complete the code to set the extract refresh schedule in Tableau.
extract_refresh = "[1]"
Extracts in Tableau can be refreshed on a daily schedule to keep data up to date.
Fix the error in the code that sets the connection type for Tableau data source.
connection_type = '[1]'
The connection type must be either 'live' or 'extract'. 'extract' is the correct option here.
Fill both blanks to complete the Tableau extract creation code.
extract = tableau.[1](source) extract.[2]()
First, you create_extract from the source, then you refresh it to update data.
Fill all three blanks to configure a Tableau data source connection with extract and schedule refresh.
data_source = tableau.connect('[1]') extract = data_source.[2]() schedule = extract.[3]('weekly')
You connect using an extract, then create_extract to build it, and finally set_refresh_schedule to automate updates.