Which of the following statements correctly describes the difference between a live connection and an extract connection in Tableau when connecting to SQL Server or PostgreSQL databases?
Think about how Tableau handles data updates and performance when connected to a database.
Live connections send queries directly to the database each time you interact with the dashboard, ensuring up-to-date data. Extract connections create a snapshot of the data stored locally, improving performance but requiring refreshes to update.
You want to connect Tableau to a PostgreSQL database hosted on a remote server. Which authentication method should you choose to ensure secure access without storing your password in Tableau?
Consider security best practices for enterprise environments.
Windows Authentication (Kerberos) allows Tableau to use your existing Windows credentials securely without storing passwords, which is safer than saving passwords in Tableau.
Given a Tableau data source connected live to SQL Server with sales data, you want to calculate total sales per region regardless of filters on product categories. Which Tableau LOD expression achieves this?
{ FIXED [Region] : SUM([Sales]) }Think about which LOD expression ignores filters on other dimensions.
The FIXED LOD expression calculates the sum of sales fixed at the Region level, ignoring filters on other dimensions like Category.
You try to connect Tableau to a PostgreSQL database but receive the error: 'SSL connection is required. Please specify SSL options.' Which option correctly fixes this issue?
SSL errors usually mean the connection requires encryption settings.
Enabling SSL and providing certificates as required by the PostgreSQL server ensures a secure connection and resolves the SSL error.
You want to create a Tableau dashboard that shows the average query response time for SQL Server and PostgreSQL connections over the last 30 days. Which visualization best communicates this information clearly and accessibly?
Think about how to show trends over time for two categories.
A line chart with separate lines for each database clearly shows trends in average response time over days, making it easy to compare performance.