Free Salesforce-Tableau-Architect Practice Test Questions (2026)

Total 200 Questions


Last Updated On : 17-Jul-2026


undraw-questions

Think You're Ready? Prove It Under Real Exam Conditions

Take Exam

In configuring LDAP (Lightweight Directory Access Protocol) for authentication in Tableau Server, what is an essential step to ensure successful user authentication?



A. Configuring Tableau Server to periodically synchronize with the LDAP server, regardless of user login attempts


B. Specifying the correct base distinguished name (DN) and search filters in the LDAP configuration on Tableau Server


C. Allocating additional CPU resources to Tableau Server to handle the encryption and decryption of LDAP traffic


D. Setting up a secondary LDAP server as a fallback for the primary LDAP server





B.
  Specifying the correct base distinguished name (DN) and search filters in the LDAP configuration on Tableau Server

Explanation:

Why Option B is Correct:

Base DN and search filters are mandatory for LDAP authentication in Tableau Server. They:

Locate users/groups in the LDAP directory (e.g., OU=Users,DC=example,DC=com).

Filter valid users (e.g., (objectClass=user)).

Without these, Tableau cannot authenticate users.

Reference: Tableau LDAP Setup Guide.

Why Other Options Are Irrelevant:

A) Periodic sync: Tableau syncs LDAP only at login (no background sync).

C) CPU allocation: Encryption is handled by LDAP/network, not Tableau.

D) Secondary LDAP: Optional for redundancy, not authentication.

Steps to Configure LDAP (No Code):

Navigate to Tableau Server Admin > Authentication > LDAP.

Enter:

Base DN: LDAP path (e.g., OU=Employees,DC=company,DC=com).

Search Filter: Criteria to find users (e.g., (objectClass=person)).

Test with Verify LDAP

What strategy should be recommended for collecting and analyzing operating system and hardware-related metrics in a Tableau Server environment to enhance performance?



A. Relying solely on Tableau Server's internal monitoring tools for hardware and operating system metrics


B. Utilizing a comprehensive system monitoring tool that tracks metrics like CPU usage, memory, disk space, and network activity


C. Focusing exclusively on tracking network activity, as it is the most critical aspect affecting Tableau Server's performance


D. Manually recording system metrics at the end of each week for trend analysis





B.
  Utilizing a comprehensive system monitoring tool that tracks metrics like CPU usage, memory, disk space, and network activity

Explanation:

Why This is the Best Strategy:

Tableau Server performance depends on underlying hardware and OS health. To optimize it, you need real-time, granular data on:

CPU usage (e.g., high utilization during peak loads).

Memory (e.g., RAM exhaustion causing slow queries).

Disk I/O (e.g., slow reads/writes during extracts).

Network activity (e.g., latency between Tableau and databases).

Built-in Tableau monitoring (Admin Views) only covers application-level metrics, not OS/hardware.

Why Other Options Fail:

A) Relying only on Tableau’s tools: Misses critical OS/hardware issues.

C) Focusing only on network: Ignores CPU/memory/disk bottlenecks.

D) Manual weekly checks: Too slow to catch real-time problems.

Recommended Tools:

General Monitoring: Prometheus, Datadog, Nagios.

Cloud-Specific: AWS CloudWatch, Azure Monitor.

On-Premises: Windows Performance Monitor, Linux sar/top.

Key Benefits of Comprehensive Monitoring:

Proactive troubleshooting (e.g., alert before disk fills up).

Capacity planning (e.g., adding RAM before usage peaks)

Compliance (audit trails for healthcare/finance).

In the context of interpreting Tableau Server installation logs, what is a key aspect to look for when diagnosing an installation failure?



A. User access levels and permissions at the time of installation


B. Network bandwidth and latency during the installation process


C. Error codes or messages that indicate the specific nature of the installation failure


D. The number of users accessing the server during the installation





C.
  Error codes or messages that indicate the specific nature of the installation failure

Explanation:

Why Option C is Correct:

Installation logs (e.g., tabinstall.log, tsm.log) contain error codes and descriptive messages that pinpoint:

Missing dependencies (e.g., Java, PostgreSQL).

Permission issues (e.g., unable to write to /opt/tableau).

Configuration conflicts (e.g., port 80 already in use).

Example: A ERROR: Failed to initialize PostgreSQL log entry directs you to fix the database setup.

Reference: Tableau Server Log Files Documentation.

Why Other Options Are Incorrect:

A) User access levels:

Installation is typically done by admins—user permissions are irrelevant.

B) Network bandwidth/latency:

Rarely causes installation failures (unless downloading files, but logs won’t show this).

D) Users accessing server:

Tableau Server is not live during installation—this metric is meaningless.

How to Diagnose from Logs:

Locate logs:

Linux:/var/opt/tableau/tableau_server/logs.

Windows: C:\ProgramData\Tableau\Tableau Server\logs.

Search for keywords: ERROR, FAILED, WARNING.

Use tsm logs CLI:

In a multi-node Tableau Server environment, you are experiencing intermittent database connectivi-ty issues. What should be the first step in troubleshooting this problem?



A. Increasing the number of worker nodes in the Tableau Server environment to enhance overall connectivity


B. Checking the network configuration and firewalls between the Tableau Server nodes and the database server for any connectivity barriers


C. Upgrading the database server's hardware to improve its ability to handle connections


D. Changing the database server to a different platform that is known for more stable connectivity





B.
   Checking the network configuration and firewalls between the Tableau Server nodes and the database server for any connectivity barriers

Explanation:

Why This is the First Step:

Intermittent connectivity issues in a multi-node Tableau Server environment are most commonly caused by network-related problems, such as:

Firewall rules blocking the required database ports (e.g., port 5432 for PostgreSQL).

Network instability (e.g., packet loss, latency spikes between nodes).

DNS or routing misconfigurations preventing consistent communication.

Before making any infrastructure changes (like adding nodes or upgrading hardware), it’s critical to rule out network issues.

Why Other Options Are Not the First Step:

A) Increasing worker nodes:

This might help with performance but won’t fix intermittent network/database connectivity.

C) Upgrading database hardware:

Hardware issues (e.g., CPU/RAM bottlenecks) typically cause consistent slowdowns, not intermittent failures.

D) Changing the database platform:

A drastic step that should only follow confirmed incompatibilities—not the first troubleshooting action.

How to Proceed:

Check firewall settings:Ensure the database port (e.g., 5432) is open between all Tableau Server nodes and the database.

Test network connectivity: Use tools like ping or traceroute to identify latency or packet loss.

Review Tableau Server logs: Look for errors like "Connection refused" or "Timeout" in the logs (e.g., tabadmincontroller.log).

Key Takeaway:
Always start with the simplest and most likely cause (network/firewalls) before escalating to complex solutions.

When configuring trusted authentication for Tableau Server, which step is essential to ensure that the server securely accepts requests from a trusted third-party application?



A. Setting up a VPN tunnel between Tableau Server and the third-party application


B. Adding the third-party application's server IP address to the list of trusted hosts in Tableau Server


C. Configuring all users in Tableau Server to have default administrative privileges


D. Enabling cross-origin resource sharing (CORS) on Tableau Server for all domains





B.
  Adding the third-party application's server IP address to the list of trusted hosts in Tableau Server

Explanation:

Why Option B is Correct:

Trusted authentication in Tableau Server requires explicitly whitelisting the IP address(es) of the third-party

application. This ensures:

Only authorized systems can impersonate users (preventing spoofing).

Requests from trusted hosts bypass Tableau’s normal login prompts.

Reference: Tableau Trusted Authentication Guide.

Why Other Options Are Incorrect:

A) VPN tunnel:

Overkill—trusted auth uses IP whitelisting, not VPNs.

C) Admin privileges for all users:

Major security risk; unrelated to trusted auth.

D) Enabling CORS:

CORS controls browser-based API access, not server-to-server trusted auth.

Steps to Configure Trusted Authentication:

In Tableau Server Admin > Settings > Security, add the third-party app’s IP(s) to "Trusted Hosts".

Ensure the app sends a valid username parameter in requests.

For automating routine maintenance tasks on a Tableau Server installed on a Windows system, which method would be most suitable for deploying scripts?



A. Utilizing Tableau Desktop to run maintenance scripts at scheduled times


B. Employing Windows Task Scheduler to automate and manage the execution of maintenance scripts


C. Implementing a continuous integration tool like Jenkins for script execution


D. Manually running scripts through the command line interface each time





B.
  Employing Windows Task Scheduler to automate and manage the execution of maintenance scripts

Explanation:

Why B is Correct?

Windows Task Scheduler is a native Windows tool designed for automating script execution at predefined times or intervals.

It is lightweight, reliable, and tightly integrated with Windows, making it ideal for routine Tableau Server maintenance tasks (e.g., log cleanup, backup scripts, extract refreshes).

Supports custom triggers, conditions, and logging, ensuring scripts run without manual intervention.

Why Other Options Are Incorrect?

A) Tableau Desktop is for visual analytics, not server maintenance automation.

C) Jenkins is overkill for simple maintenance tasks—it’s better suited for CI/CD pipelines.

D) Manual execution defeats the purpose of automation, increasing human error risk.

Key Takeaway:
For Windows-based Tableau Servers, Task Scheduler is the simplest, most effective way to automate maintenance scripts.

Based on observability data showing consistent high load on Tableau Server’s primary node, which architectural revision should be considered to improve performance?



A. Switching to a different operating system for the Tableau Server


B. Adding worker nodes to distribute the load more evenly across the server architecture


C. Increasing the bandwidth of the network on which Tableau Server is hosted


D. Consolidating all server processes on the primary node to simplify management





B.
   Adding worker nodes to distribute the load more evenly across the server architecture

Explanation:

Why Option B is Correct:

High load on the primary node indicates that the current setup cannot handle the workload efficiently.

Adding worker nodes allows Tableau Server to

Distribute processes (e.g., VizQL, Backgrounder) across multiple machines.

Improve scalability and fault tolerance.

Reduce bottlenecks on the primary node.

Reference: Tableau Server Scalability Guide.

Why Other Options Are Incorrect:

A) Switching OS:

Unlikely to resolve performance issues caused by hardware/resource limits.

C) Increasing bandwidth:

Helps with network congestion but not CPU/memory bottlenecks on the primary node.

D) Consolidating processes:

Worsens the problem by overloading the primary node further.

Steps to Scale with Worker Nodes:

Assess load: Use Tableau Server Admin Views to identify which processes (VizQL, Backgrounder) are overloaded.

Add nodes: Use tsm topology commands to deploy additional worker nodes.

Reassign processes: Balance VizQL/Backgrounder across nodes.

Upon interpreting observability data from Tableau Server, you notice a pattern of high CPU usage coinciding with specific times of the day. What is the best course of action based on this observation?



A. Immediately upgrade the server hardware to increase CPU capacity


B. Investigate scheduled activities, such as extract refreshes or subscriptions, occurring during those times


C. Limit user access to the server during periods of high CPU usage


D. Ignore the pattern as occasional spikes in CPU usage are normal





B.
  Investigate scheduled activities, such as extract refreshes or subscriptions, occurring during those times

Explanation:

Why Option B is Correct:

High CPU usage at specific times often correlates with scheduled tasks like:

Extract refreshes (heavy on CPU/memory).

Subscriptions (generating/viewing reports).

Automated workflows (e.g., data pipeline integrations).

First step: Check Backgrounder jobs and schedules in Tableau Server Admin to identify the cause.

Reference: Tableau Server Monitoring Guide.

Why Other Options Are Premature/Ineffective:

A) Upgrade hardware:

Costly overreaction without confirming the root cause (e.g., poorly optimized extracts).

C) Limit user access:

Disruptive—users may need access during peak times

D) Ignore spikes:

Risky if spikes indicate inefficiencies (e.g., runaway queries).

Steps to Investigate:

Check Admin > Schedules: Identify overlapping jobs.

Optimize extracts: Reduce complexity or stagger refresh times.

In developing a custom view to monitor the performance of published data sources in Tableau Server, which part of the Tableau repository schema should be primarily analyzed?



A. The 'users' table to identify active users interacting with the data sources


B. The 'data_connections' table to gain insights into connections and performance of published data sources


C. The 'background_tasks' table to monitor the performance of scheduled tasks related to data sources


D. The 'server_usage' table to understand the overall server load and its impact on data source performance





B.
  The 'data_connections' table to gain insights into connections and performance of published data sources

Explanation:

Why Option B is Correct:

The data_connections table in the Tableau PostgreSQL repository stores metadata about:

Published data sources (e.g., connection strings, query details).

Performance metrics (e.g., query execution times, refresh status).

Usage statistics (e.g., frequency of access).

Analyzing this table helps identify:

Slow-performing data sources.

Connection bottlenecks (e.g., high latency to databases).

Reference: Tableau Repository Schema Documentation.

Why Other Options Are Less Relevant:

A) users table: Tracks user accounts, not data source performance.

C) background_tasks table: Focuses on scheduled jobs (e.g., extracts), not live data source queries.

D) server_usage table: Provides aggregate server metrics, not granular data source insights.

Key Columns in data_connections for Analysis:

query_text: Identifies slow-running queries.

last_accessed_at: Shows usage patterns.

connection_failure_count: Highlights unstable connections.

While troubleshooting an issue where Tableau Server is crashing intermittently on a Windows sys-tem, which logs would be most beneficial to review first?



A. The Windows Event Viewer System Logs to check for any operating system-level errors


B. The Tableau Server log files located in the "logs" directory of the Tableau Server installation path


C. The IIS logs if Tableau Server is configured to use IIS as a web server


D. The network logs to check for any connectivity issues with client machines





B.
  The Tableau Server log files located in the "logs" directory of the Tableau Server installation path

Explanation:

Why B is Correct?

Tableau Server generates detailed application logs that capture errors, warnings, and crashes specific to Tableau processes.

These logs (e.g., tabadmin.log, vizqlserver.log, backgrounder.log) help identify Tableau-specific issues (e.g., service failures, memory leaks, or configuration errors).

Since the issue is intermittent crashes, Tableau logs are the first place to check for root-cause analysis.

Why Other Options Are Less Relevant?

A. Windows Event Viewer System Logs are useful for OS-level issues (e.g., hardware failures, driver crashes) but are secondary if Tableau itself is crashing.

C. IIS Logs are only applicable if Tableau is configured with IIS (default is embedded Apache/Nginx). Even then, IIS logs track web requests, not application crashes.

D. Network Logs would help with connectivity issues but are unrelated to a server crash.

Reference:

Tableau’s official documentation on Server Log Files recommends checking logs in the C:\ProgramData\Tableau\Tableau Server\data\tabsvc\logs directory for troubleshooting crashes.

Next Steps:

Check tabadmin.log for high-level server errors.

Review vizqlserver.log for rendering-related crashes.

Look for OutOfMemory errors in backgrounder.log if background tasks are failing.

Page 7 out of 20 Pages
PreviousNext
456789
Salesforce-Tableau-Architect Practice Test Home

Experience the Real Exam Before You Take It

Our new timed 2026 Salesforce-Tableau-Architect practice test mirrors the exact format, number of questions, and time limit of the official exam.

The #1 challenge isn't just knowing the material; it's managing the clock. Our new simulation builds your speed and stamina.



Enroll Now

Ready for the Real Thing? Introducing Our Real-Exam Simulation!


You've studied the concepts. You've learned the material. But are you truly prepared for the pressure of the real Salesforce Certified Tableau Architect exam?

We've launched a brand-new, timed Salesforce-Tableau-Architect practice exam that perfectly mirrors the official exam:

✅ Same Number of Questions
✅ Same Time Limit
✅ Same Exam Feel
✅ Unique Exam Every Time

This isn't just another Salesforce-Tableau-Architect practice questions bank. It's your ultimate preparation engine.

Enroll now and gain the unbeatable advantage of:

  • Building Exam Stamina: Practice maintaining focus and accuracy for the entire duration.
  • Mastering Time Management: Learn to pace yourself so you never have to rush.
  • Boosting Confidence: Walk into your Salesforce-Tableau-Architect exam knowing exactly what to expect, eliminating surprise and anxiety.
  • A New Test Every Time: Our Salesforce Certified Tableau Architect exam questions pool ensures you get a different, randomized set of questions on every attempt.
  • Unlimited Attempts: Take the test as many times as you need. Take it until you're 100% confident, not just once.

Don't just take a Salesforce-Tableau-Architect test once. Practice until you're perfect.

Don't just prepare. Simulate. Succeed.

Take Salesforce-Tableau-Architect Practice Exam