Select all the TSM processes that will continue to run, even when Tableau Server is stopped:
Correct Answer: B,C,D,E,F
Explanation Link to Tableau Server documentation: https://help.tableau.com/current/server-linux/en-us/tsm_overview.htm
Question 67
Which of the following statements below accurately describe the effect of Anti-Virus software on Tableau Server?
Correct Answer: A
Explanation Link to Tableau Server documentation: https://help.tableau.com/current/server/en-us/requ.htm
Question 68
What should you use to set a preferred active repository?
Correct Answer: A
Tableau Server uses a PostgreSQL database as its repository to store metadata, user information, and permissions. In a high-availability (HA) setup with multiple nodes, there are typically two repository instances: one active and one passive. The "preferred active repository" refers to designating which repository instance should take priority as the active one. This is managed through Tableau Services Manager (TSM). The correct method to set the preferred active repository is by using the tsm configuration set command. Specifically, you would use a command like: tsm configuration set -k pgsql.preferred_host -v <hostname> This command allows an administrator to specify the preferred host for the active repository, ensuring control over which node takes precedence in an HA environment. Option B (tabcmd set command) is incorrect because tabcmd is a command-line utility primarily used for administrative tasks like managing users, groups, and content (e.g., publishing workbooks), not for configuring server topology or repository settings. Option C (TSM browser client's Maintenance page) is incorrect because the Maintenance page in the TSM web interface is used for tasks like backups, restores, and cleanup, but it does not provide an option to set the preferred active repository. Option D (TSM browser client's Configuration Topology page) is partially relevant since the Topology page displays the current configuration of services across nodes, including the repository. However, it does not allow direct modification of the preferred active repository; this must be done via the tsm command line.
Question 69
Several cloud-hosted data sources always require extracts. Select all the listed data sources below that have this requirement:
Correct Answer: A,B,C
Explanation Link to Tableau Server documentation: https://help.tableau.com/current/pro/desktop/en-us/publish_datasources_about.htm
Question 70
You attempt to delete a user who owns content on a Tableau Server. What is the result of the delete action?
Correct Answer: D
Deleting a user in Tableau Server involves handling their owned content (workbooks, data sources)-let's analyze the process: * Deletion Rules: * Ownership Check: Tableau prevents deletion if the user owns content to avoid orphaning it. * Action: Instead of deleting, the user's site role is set toUnlicensed, retaining their account and content ownership. * Resolution: An admin must reassign ownership (e.g., viaUsers > Actions > Change Owner) before deletion. * Option D (User switched to Unlicensed and NOT deleted): Correct. * Details: Attempting deletion (e.g.,Users > Select User > Actions > Delete) triggers a check. If content exists, the user becomes Unlicensed-still in the system but unable to log in. * Why: Protects data integrity-content remains accessible for reassignment. * Option A (Deleted, content to server admin): Incorrect. * Why: No automatic reassignment to the server admin-manual action is required first. * Option B (Deleted, content to project leader): Incorrect. * Why: Project leaders don't automatically inherit content-no such mechanism exists. * Option C (User and content deleted): Incorrect. * Why: Tableau avoids deleting content with the user-too destructive without explicit intent. Why This Matters: This safeguard prevents accidental data loss, ensuring admins manage ownership transitions deliberately.