The Salesforce Analytics-Admn-201 exam is the certification exam for the Salesforce Certified Tableau Server Administrator credential under Salesforce Certified Administrator. It is designed for professionals who manage Tableau Server environments and want to validate their ability to handle core administrative tasks. This exam matters because it confirms practical knowledge across setup, maintenance, troubleshooting, and migration activities that are essential for a stable Tableau Server deployment.
| # | Exam Topics | Sub-Topics | Approximate Weightage (%) |
|---|---|---|---|
| 1 | Connecting to and Preparing Data |
Data source connections Extract refresh basics Published data source preparation |
22% |
| 2 | Installation and Configuration |
Server installation steps Initial configuration settings Authentication and identity setup |
24% |
| 3 | Administration |
User and site management Permissions and governance Content and resource administration |
26% |
| 4 | Troubleshooting |
Log review and diagnostics Service and performance issues Access and permission problems |
16% |
| 5 | Migration & Upgrade |
Version upgrade planning Content migration approach Post-upgrade validation |
12% |
This exam tests both conceptual understanding and hands-on administrative ability. Candidates are expected to know how Tableau Server works in real environments, how to configure and maintain it, and how to solve common issues efficiently. Strong practical judgment, familiarity with administrative workflows, and the ability to apply knowledge under exam conditions are all important.
QA4Exam.com provides Exam PDF content with actual questions and answers, plus an Online Practice Test designed for the Salesforce Analytics-Admn-201 exam. The materials help you study with up-to-date questions, verified answers, and a format that mirrors real exam conditions. The practice test also helps you build time management skills and get comfortable with the pressure of answering within a limited timeframe. With focused preparation, you can review key areas faster and improve your confidence before the exam day. This combination is built to support candidates aiming to pass on the first attempt.
It is the exam for the Salesforce Certified Tableau Server Administrator certification, focused on Tableau Server administration, configuration, troubleshooting, and upgrades.
It is intended for candidates who work with Tableau Server and want to validate their skills in installation, administration, troubleshooting, and migration tasks.
It can be challenging because it tests practical knowledge, administrative understanding, and the ability to apply concepts in real scenarios rather than simple memorization.
Braindumps alone are not the best approach. They can help with familiarizing yourself with question styles, but you should also understand the topics and practice applying the concepts.
Hands-on experience is very helpful because the exam covers real administrative tasks. Practical exposure makes it easier to understand configuration, troubleshooting, and migration scenarios.
They help you study with actual questions and answers, verify your understanding, and practice in a timed environment so you can improve accuracy and exam pacing.
Yes, the Exam PDF and Online Practice Test are presented as up-to-date preparation resources with verified answers for the Salesforce Analytics-Admn-201 exam.
You need to ensure that Tableau Server requires the setup of a new administrator account the next time you attempt to log in. What should you do?
To force Tableau Server to require the setup of a new administrator account (e.g., resetting the server to an initial setup state), the tsm reset command is the appropriate tool. This command resets Tableau Server's administrative configuration, including the TSM administrator account, while preserving content like workbooks and data sources.
Option B (Run the tsm reset command): Correct. Running tsm reset clears the current TSM administrator credentials and configuration settings. The next time you access TSM (e.g., via the web interface or CLI), it prompts you to set up a new administrator account, mimicking the initial setup process. Command: tsm reset --username <new-username> --password <new-password>.
Option A (Edit tabsvc.yml): Incorrect. The tabsvc.yml file contains service configuration data, but manually editing it is not supported or recommended for resetting the administrator account. It could also corrupt the installation.
Option C (Run the tsm register command): Incorrect. The tsm register command is used to register Tableau Server with a new product key or identity store, not to reset the administrator account.
Option D (Reinstall Tableau Server): Incorrect. Reinstallation wipes the entire server, including content, and is overkill for this task. The tsm reset command achieves the goal without data loss.
What is the minimum required free hard disk space recommended for a Tableau Server installation in production?
Tableau Server has specific hardware requirements for production environments to ensure stability and performance. The minimum recommended free disk space for a production installation is 50 GB. This accounts for:
The installation itself (approximately 1--2 GB).
Space for log files, temporary files, and extracts managed by the File Store and Data Engine.
Room for backups and operational overhead.
The full minimum hardware recommendations for a single-node production deployment are:
8 CPU cores (2.0 GHz or faster).
32 GB RAM.
50 GB free disk space (on the system drive, typically C: on Windows).
Option A (32 GB): Incorrect. While 32 GB is the minimum RAM requirement, it's insufficient for disk space in production.
Option B (50 GB): Correct. This matches Tableau's official recommendation for production environments.
Option C (15 GB): Incorrect. 15 GB is the minimum for a non-production or trial installation, not production.
Option D (64 GB): Incorrect. While 64 GB exceeds the minimum, it's not the specified requirement---50 GB is sufficient.
Which three types of data should you backup to ensure that you can restore a Tableau Server? (Choose three.)
Backing up Tableau Server ensures recovery from failures or migrations. A full backup includes multiple data types---let's dissect this comprehensively:
Backup Components:
Repository Data: PostgreSQL database with metadata (users, permissions, workbooks). Backed up via tsm maintenance backup -f <filename>.tsbak.
Configuration Data: Server settings (e.g., ports, authentication) also in the .tsbak file.
Server Secrets: Encryption keys, internal tokens, Repository passwords---critical for restoring functionality.
Extracts: .hyper files in File Store (optional, separate backup).
Option A (Server secrets and Repository passwords): Correct.
Details: Includes encryption keys (for extracts), internal tokens (process communication), and Repository credentials. Backed up separately or stored securely (e.g., tsm security export-keys).
Why Critical: Without these, restored data may be inaccessible or services may fail.
Option C (Configuration data): Correct.
Details: Ports, authentication settings, process topology---part of the .tsbak file.
Why Critical: Restores server behavior and connectivity post-recovery.
Option D (Repository data): Correct.
Details: Core metadata database---also in .tsbak.
Why Critical: Without it, all content and user data is lost.
Option B (Topology data): Incorrect.
Details: Topology (process distribution) is part of configuration data in the .tsbak, not a separate entity. It's not distinctly backed up as ''topology data.''
Why This Matters: A complete backup (secrets, config, repository) ensures full restoration---missing any piece risks an unusable server.
What is the minimum hardware recommendation for a single-node production installation of Tableau Server?
Tableau Server's minimum hardware recommendations for a production single-node deployment ensure reliable performance for small to medium workloads. As of the latest documentation:
CPU: 8 cores (2.0 GHz or higher) to handle concurrent users, rendering, and background tasks.
RAM: 32 GB to support in-memory processing (e.g., VizQL, Data Engine) and caching.
Disk Space: 50 GB free for installation, logs, extracts, and temporary files.
Let's break it down:
Option C (8-Core CPU, 32 GB RAM, 50 GB free disk space): Correct. This matches Tableau's official minimum for production:
8 cores ensure sufficient parallelism for processes like Backgrounder and VizQL.
32 GB RAM supports multiple users and extract refreshes.
50 GB disk space accommodates growth (initial install is ~1--2 GB, but logs and extracts expand).
Option A (4-Core, 16 GB RAM, 50 GB): Incorrect. Too low for production---4 cores and 16 GB RAM are below the threshold for reliable performance under load.
Option B (2-Core, 8 GB RAM, 15 GB): Incorrect. This is for non-production (e.g., trial) setups, insufficient for production stability.
Option D (4-Core, 64 GB RAM, 50 GB): Incorrect. 4 cores are inadequate, though 64 GB RAM exceeds the minimum (32 GB).
Why This Matters: Under-spec hardware can lead to slow performance, failed refreshes, or crashes in production---adhering to the minimum ensures stability.
Which three items can be contained in a project? (Choose three.)
In Tableau Server, projects are containers for organizing and securing content. They help manage permissions and structure content hierarchically. Let's define what can be contained:
Workbooks: Visualizations and dashboards published to the Server.
Data Sources: Published connections or extracts reusable across workbooks.
Nested Projects: Sub-projects within a parent project, introduced in later versions (e.g., 2018.2) for deeper organization.
Option B (Workbooks): Correct. Workbooks are the primary content type in projects, containing views and dashboards.
Option C (Nested Projects): Correct. Nested projects allow hierarchical structuring (e.g., a 'Sales' project with 'Q1' and 'Q2' sub-projects), with inherited or custom permissions.
Option D (Data Sources): Correct. Published data sources reside in projects, providing reusable data connections.
Option A (Groups): Incorrect. Groups are collections of users managed at the site or server level, not stored within projects. Projects contain content, not user entities.
Why This Matters: Projects are key to content governance---knowing what they hold helps administrators organize and secure assets effectively.
Full Exam Access, Actual Exam Questions, Validated Answers, Anytime Anywhere, No Download Limits, No Practice Limits
Get All 55 Questions & Answers