Advertisement
deeejay

tabcmd - Refresh data extract

Jun 17th, 2015
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.15 KB | None | 0 0
  1. tabcmd login -s http://tableauserver.domain.org -t tableau_site -u domain\username -p some_password
  2. tabcmd runschedule "Schedule Name"
  3. tabcmd logout
  4.  
  5. or tabadmin direct on server
  6.  
  7. tabadmin refreshextract --workbook "salazar test"
  8.  
  9. or other tabcmd options
  10.  
  11. tabcmd refreshextracts --datasource sales_ds
  12.  
  13. tabcmd refreshextracts --project "Sales External" --datasource sales_ds
  14.  
  15. tabcmd refreshextracts --workbook "My Workbook"
  16.  
  17. tabcmd refreshextracts --url SalesAnalysis
  18.  
  19. Options
  20. --incremental
  21.  
  22. Runs the incremental refresh operation.
  23.  
  24. --synchronous
  25.  
  26. Adds the full refresh operation to the queue used by the Backgrounder process, to be run as soon as a Backgrounder process is available. If a Backgrounder process is available, the operation is run immediately. The refresh operation appears on the Background Tasks report.
  27.  
  28. During a synchronous refresh, tabcmd maintains a live connection to the server while the refresh operation is underway, polling every second until the background job is done.
  29.  
  30. --workbook
  31.  
  32. The name of the workbook containing extracts to refresh. If the workbook has spaces in its name, enclose it in quotes.
  33.  
  34. --datasource
  35.  
  36. The name of the data source containing extracts to refresh.
  37.  
  38. --project
  39.  
  40. Use with --workbook or --datasource to identify a workbook or data source in a project other than Default. If not specified, the Default project is assumed.
  41.  
  42. Using tabcmd, you can specify only a top-level project in a project hierarchy. To automate tasks you want to perform on a project within a parent project, use the equivalent Tableau REST API call.
  43.  
  44. --url
  45.  
  46. The name of the workbook as it appears in the URL. A workbook published as “Sales Analysis” has a URL name of “SalesAnalysis”.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement