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.
What file format should you use to register Tableau Server from the command line?
Registering Tableau Server from the command line involves providing configuration details (e.g., identity store, license) via the tsm register command. Let's explore this fully:
Registration Process:
Run during initial setup or to update settings (e.g., after changing AD/LDAP config).
Uses a configuration file to pass parameters to TSM.
Command: tsm register --file
File Format:
Tableau Server uses JSON for configuration files in TSM commands like tsm register.
Example:
json
CollapseWrapCopy
{
'identityStore': {
'type': 'local',
'domain': 'example.com'
}
}
JSON is structured, machine-readable, and aligns with Tableau's modern CLI design.
Option C (JSON): Correct.
Official format for tsm register, per documentation and practical use.
Option A (YML): Incorrect.
While tabsvc.yml exists internally, it's not for registration---tsm register uses JSON.
Option B (XML): Incorrect.
Older Tableau configs used XML (e.g., workgroup.yml pre-TSM), but TSM standardized on JSON.
Option D (HTTP): Incorrect.
HTTP is a protocol, not a file format---irrelevant here.
Why This Matters: Correct file format ensures seamless registration, avoiding CLI errors in setup or migrations.
Which two commands are valid and complete commands? (Choose two.)
TSM commands manage Tableau Server maintenance---let's validate their syntax:
Command Requirements:
Some need arguments (e.g., file paths); others are standalone.
Valid and Complete: Must work as-is without errors.
Option C (tsm maintenance cleanup): Correct.
Details: Removes temporary files and old logs---no arguments required (optional flags like -l exist).
Use: tsm maintenance cleanup---runs fully.
Option D (tsm maintenance ziplogs): Correct.
Details: Creates a zip of logs (e.g., tsm-logs.zip)---no arguments needed (optional -d for date range).
Use: tsm maintenance ziplogs---complete and valid.
Option A (tsm maintenance backup): Incorrect.
Why: Requires -f <filename>.tsbak (e.g., tsm maintenance backup -f backup.tsbak)---incomplete without it.
Option B (tsm maintenance restore): Incorrect.
Why: Needs -f <filename>.tsbak (e.g., tsm maintenance restore -f backup.tsbak)---not standalone.
Why This Matters: Correct syntax ensures maintenance tasks execute without errors---critical for server health.
What event is most likely to cause problems for a Tableau Server?
Tableau Server's performance and stability depend on dedicated resources and proper configuration. Running additional software on the same server is the most likely to cause problems because:
Resource contention: Tableau Server requires significant CPU, RAM, and disk I/O. Other software (e.g., databases, web servers) can compete for these resources, leading to slowdowns, crashes, or failed tasks.
Port conflicts: Tableau uses specific ports (e.g., 80, 443, 8850), and other applications might interfere.
Security risks: Additional software increases the attack surface, potentially compromising Tableau Server.
Tableau recommends running the server on dedicated hardware without unrelated applications.
Option A (Running additional software on the server): Correct. This is a common cause of performance issues and is explicitly discouraged in Tableau's best practices.
Option B (Separating the Backgrounder and VizQL processes to different machines): Incorrect. This is a supported multi-node configuration that can improve performance, not cause problems, if properly set up via TSM.
Option C (Configuring the server to use a static IP address): Incorrect. A static IP is recommended for Tableau Server to ensure consistent network access, so it's unlikely to cause issues.
Option D (Using a non-default installation path): Incorrect. While not default, a custom path is supported (via TSM or installer options) and unlikely to cause problems if permissions and disk space are adequate.
What should you do to ensure that server tasks associated with a particular schedule run one-at-a-time?
In Tableau Server, schedules manage tasks such as extract refreshes and subscriptions. The execution mode of a schedule determines how tasks within that schedule are processed by the Backgrounder process:
Parallel: Tasks run simultaneously (up to the Backgrounder's capacity), which is the default setting.
Serial: Tasks run one-at-a-time in sequence, ensuring that one task completes before the next begins.
To ensure tasks associated with a particular schedule run one-at-a-time, you must configure the schedule's execution mode to Serial. This is done in the Tableau Server web interface:
Go to Schedules.
Select the schedule, click Actions > Edit Schedule.
Under Execution, choose Serial instead of Parallel.
Option A (Set Execution to Serial): Correct. This directly addresses the requirement by forcing tasks to execute sequentially.
Option B (Set Default priority to 0): Incorrect. Priority (1--100) determines the order of task execution across all schedules, not whether tasks run one-at-a-time within a single schedule. Also, 0 is not a valid priority value (minimum is 1).
Option C (Set Frequency to Hourly): Incorrect. Frequency (e.g., hourly, daily) controls when the schedule runs, not how tasks within it are executed.
Option D (Set Execution to Parallel): Incorrect. Parallel execution allows tasks to run simultaneously, which contradicts the requirement.
What statement correctly describes locking permissions to a project?
In Tableau Server, projects organize content (workbooks, data sources) and use permissions to control access. 'Locking permissions' restricts how permissions are managed within a project---let's explore this exhaustively:
Permission Management Modes:
Managed by Owner: Default mode. Content owners (e.g., workbook publishers) can set permissions on their items, inheriting project defaults as a starting point.
Locked to the Project: Project-level permissions are enforced, and content owners cannot modify them. This ensures consistency across all items in the project.
How to Lock:
In the Tableau Server web UI:
Go to Content > Projects.
Select a project, click Actions > Permissions.
In the Permissions dialog, change Permissions Management from 'Customizable' (Managed by Owner) to 'Locked.'
Set the desired permissions (e.g., Viewer, Editor) for users/groups, which then apply uniformly to all content.
Via REST API: Use the updateProject endpoint with 'permissionsLocked': true.
Option B (You can lock permissions to a project by changing Customizable to Locked): Correct.
Details: This is the precise action in the UI---switching from 'Customizable' to 'Locked' locks permissions at the project level.
Impact: Owners lose the ability to override permissions on individual workbooks/data sources, enforcing governance.
Example: Set 'All Users' to Viewer (Locked)---all content in the project is view-only, regardless of owner intent.
Option A (Locking permissions must be enabled on the Server Settings page): Incorrect.
Why: Locking is a per-project setting, not a server-wide toggle. The Server Settings page (via TSM) controls global configs (e.g., authentication), not project permissions.
Option C (Content permissions are locked by default): Incorrect.
Default: New projects are 'Managed by Owner' (Customizable), allowing flexibility unless explicitly locked by an admin.
Option D (By setting the appropriate Project permission role): Incorrect.
Confusion: 'Project permission role' isn't a term---permissions are set via rules (e.g., Viewer, Editor), but locking is a separate action (Customizable Locked).
Why This Matters: Locking permissions ensures uniform access control, critical for regulated environments or large teams where consistency trumps flexibility.
Full Exam Access, Actual Exam Questions, Validated Answers, Anytime Anywhere, No Download Limits, No Practice Limits
Get All 55 Questions & Answers