Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Downloading tableau workbook from tableau server with data

Tags:

tableau-api

I am new to using tableau server. I wanted to know if it was possible to download a tableau workbook (which is linked to a live SQL DB) with the data from the tableau server? Basically I would want to have a downloaded packaged tableau file which I can pass around for demos, without having to connect to the database every time.

like image 610
CarbonD1225 Avatar asked Dec 05 '13 23:12

CarbonD1225


2 Answers

You can do this programmatically in python simply. TSC(Tableau Server Client) is the python library for tableau server. You can publish, update, delete and download workbooks freely using TSC Please visit https://github.com/tableau/server-client-python/blob/master/docs/docs/api-ref.md On this page, just search by "workbooks.download", then you will get the instructions how to download a workbook with data extraction.

like image 119
Anton.Y Avatar answered Nov 16 '22 23:11

Anton.Y


In essence, no. Since the workbook is using a live connection, the data is still on the SQL database and not on Tableau Server.

If you want to be able to create a packaged workbook for demo use, then you'll have to create an extract of the data that can be saved with the workbook.

like image 22
Talvalin Avatar answered Nov 16 '22 23:11

Talvalin