tableau-api

How do I change the default NLS parameters for date format through Toad?

江枫思渺然 提交于 2021-02-11 15:27:36
问题 I have a NLS date format as DD-MON-RR. This gives me the underlying date format as YY while I want to change it to YYYY. I tried using the following query and it ran successfully DECLARE v_date DATE := sysdate; BEGIN DBMS_OUTPUT.put_line(TO_CHAR(v_date, 'MM/DD/YYYY')); END; But that didn't change the default format. for some context, I am trying to import data from Oracle to Tableau. Unfortunately when I try to export a crosstab from Tableau server it looks at the underlying data rather than

export tableau view to pdf after applying filter in TSC

泪湿孤枕 提交于 2021-02-10 20:35:40
问题 I am trying to export a tableau view using python tableau server client. Following is the part of code which is used for creating pdf. server.views.populate_pdf(view, options) with file("dashboard.pdf", 'wb') as f: f.write(view.pdf) This code is working fine and it is exporting a view to pdf file. My tableau dashboard has few filters(e.g. product_type, vendor). How can I add a view filter while exporting so that I will only get data for specific product_type and vendor? 回答1: I think I found

Auto Sign in to Tableau Server through Iframe

女生的网名这么多〃 提交于 2021-02-10 03:18:33
问题 I am attempting embed a guest user's login to my Tableau Server's application. The embed code looks like the following. I know that I need some sort of jQuery that will pass a username and a password to the div , I am just not quite sure how to do that. <script type='text/javascript' src='https://tableau.quantgov.org/javascripts/api/viz_v1.js'></script> <div class='tableauPlaceholder' style='width: 1000px; height: 827px;'> <object class='tableauViz' width='1000' height='827' style='display

Auto Sign in to Tableau Server through Iframe

谁都会走 提交于 2021-02-10 03:18:10
问题 I am attempting embed a guest user's login to my Tableau Server's application. The embed code looks like the following. I know that I need some sort of jQuery that will pass a username and a password to the div , I am just not quite sure how to do that. <script type='text/javascript' src='https://tableau.quantgov.org/javascripts/api/viz_v1.js'></script> <div class='tableauPlaceholder' style='width: 1000px; height: 827px;'> <object class='tableauViz' width='1000' height='827' style='display

Auto Sign in to Tableau Server through Iframe

天大地大妈咪最大 提交于 2021-02-10 03:16:33
问题 I am attempting embed a guest user's login to my Tableau Server's application. The embed code looks like the following. I know that I need some sort of jQuery that will pass a username and a password to the div , I am just not quite sure how to do that. <script type='text/javascript' src='https://tableau.quantgov.org/javascripts/api/viz_v1.js'></script> <div class='tableauPlaceholder' style='width: 1000px; height: 827px;'> <object class='tableauViz' width='1000' height='827' style='display

Auto Sign in to Tableau Server through Iframe

江枫思渺然 提交于 2021-02-10 03:16:20
问题 I am attempting embed a guest user's login to my Tableau Server's application. The embed code looks like the following. I know that I need some sort of jQuery that will pass a username and a password to the div , I am just not quite sure how to do that. <script type='text/javascript' src='https://tableau.quantgov.org/javascripts/api/viz_v1.js'></script> <div class='tableauPlaceholder' style='width: 1000px; height: 827px;'> <object class='tableauViz' width='1000' height='827' style='display

Auto Sign in to Tableau Server through Iframe

一笑奈何 提交于 2021-02-10 03:15:44
问题 I am attempting embed a guest user's login to my Tableau Server's application. The embed code looks like the following. I know that I need some sort of jQuery that will pass a username and a password to the div , I am just not quite sure how to do that. <script type='text/javascript' src='https://tableau.quantgov.org/javascripts/api/viz_v1.js'></script> <div class='tableauPlaceholder' style='width: 1000px; height: 827px;'> <object class='tableauViz' width='1000' height='827' style='display

Scraping Data from a Tableau Map

廉价感情. 提交于 2021-02-09 08:46:27
问题 I am trying to pull locations and names of Naloxone distribution centers in Illinois for a research project on the opioid crisis. This tableau generated dashboard is accessible from here from the department of public health https://idph.illinois.gov/OpioidDataDashboard/ I've tried everything I could find. First changing the url to "download" the data using Tableau's interface. That only let me download a pdf map not the actual dataset behind it. Second, I modified the python script I've seen

Showing Tableau Data in MVC view

て烟熏妆下的殇ゞ 提交于 2021-02-08 02:29:38
问题 I am new to Tableau and need some direction to resources that could help me understand and then ultimately implement the requests. I need to connect to the Tableau server, which has already been setup at our end. The reports are specific to a customer. I need to display the data inside the MVC views. Logged in user belongs to a specific customer so Customer ID will tie the logged in user to the report for the data. What is the best way to query Tableau to get the data? Should i use jquery

Showing Tableau Data in MVC view

你。 提交于 2021-02-08 02:25:50
问题 I am new to Tableau and need some direction to resources that could help me understand and then ultimately implement the requests. I need to connect to the Tableau server, which has already been setup at our end. The reports are specific to a customer. I need to display the data inside the MVC views. Logged in user belongs to a specific customer so Customer ID will tie the logged in user to the report for the data. What is the best way to query Tableau to get the data? Should i use jquery