<_.fcp.VConnDownstreamExtractsWithWarnings.true...VConnDownstreamExtractsWithWarnings />
The timezone to display dates in.
Note that functionally, this is simply an integer value representing the number of hours to offset from UTC, which dates in the Tableau Server Repository are stored in. This means that it will not necessarily be accurate for timezones with Daylight Savings in place.The name of the Tableau Server instance the datasource is published to. Used to calculate hyperlinks to content.>:-|
ON s.id = s2.id
LEFT JOIN tasks t
ON s.id = t.obj_id
AND t.type = 'SingleSubscriptionTask'
LEFT JOIN views s_v
ON s.view_url = REPLACE(s_v.repository_url, 'sheets/','')
AND s.site_id = s_v.site_id
LEFT JOIN workbooks sv_w
ON s_v.workbook_id = sv_w.id
LEFT JOIN projects_contents sv_w_pc
ON sv_w.id = sv_w_pc.content_id
AND sv_w.site_id = sv_w_pc.site_id
AND sv_w_pc.content_type = 'workbook'
LEFT JOIN workbooks s_w
ON s.workbook_url = s_w.repository_url
AND s.site_id = s_w.site_id
LEFT JOIN projects_contents s_w_pc
ON s_w.id = s_w_pc.content_id
AND s_w.site_id = s_w_pc.site_id
AND s_w_pc.content_type = 'workbook'
) AS sub
ON bj.correlation_id = COALESCE(sub.task_id, sub.id) -- Sorry, I know this is crappy. It allows for an annoying data change change between 10.3 and subsequent versions.
AND bj.job_name = 'Subscription Notifications'
-- flows
LEFT JOIN flow_run_specs frs
ON (t.obj_id = frs.id AND t.obj_type = 'FlowRunSpec')
LEFT JOIN flows f
ON frs.flow_id = f.id
LEFT JOIN projects_contents f_pc
ON f.id = f_pc.content_id
AND f.site_id = f_pc.site_id
AND f_pc.content_type = 'flow'
LEFT JOIN flows m_f --missing flows
ON t.id IS NULL
AND bj.subtitle = 'Flow'
AND bj.title = m_f.name
AND bj.site_id = m_f.site_id
LEFT JOIN projects_contents m_f_pc
ON m_f.id = m_f_pc.content_id
AND m_f.site_id = m_f_pc.site_id
AND m_f_pc.content_type = 'flow'
-- datasources
LEFT JOIN datasources d
ON (t.obj_id = d.id AND t.obj_type = 'Datasource')
LEFT JOIN projects_contents d_pc
ON d.id = d_pc.content_id
AND d.site_id = d_pc.site_id
AND d_pc.content_type = 'datasource'
LEFT JOIN datasources m_d --missing datasources
ON t.id IS NULL
AND bj.subtitle = 'Datasource'
AND m_d.id = CAST(NULLIF(SUBSTRING(bj.args from '---\n-\s[a-zA-Z]*\n-\s([0-9]*)'), '') AS INT)
--AND bj.title = m_d.name
AND bj.site_id = m_d.site_id
AND m_d.connectable = true
LEFT JOIN projects_contents m_d_pc
ON m_d.id = m_d_pc.content_id
AND m_d.site_id = m_d_pc.site_id
AND m_d_pc.content_type = 'datasource'
LEFT JOIN
(
-- used just to get the proper ID value for published datasource hyperlinks
SELECT MIN(dc.id) AS "id", dc.datasource_id
FROM data_connections AS dc
INNER JOIN datasources AS dc_d
ON dc.datasource_id = dc_d.id
AND dc_d.connectable = true
GROUP BY dc.datasource_id
) AS data_connections
ON d.id = data_connections.datasource_id
-- data alerts
LEFT JOIN data_alerts da
ON (bj.job_name = 'Check If Data Alert Condition Is True'
AND da.id = CAST(NULLIF(SUBSTRING(bj.args from '---\n-\s[a-zA-Z]*\n-\s([0-9]*)'), '') AS INT) ) -- this is the only place the ID is stored >>:-|
LEFT JOIN _customized_views da_cv
ON da.customized_view_id = da_cv.id
LEFT JOIN views da_v
ON da.view_id = da_v.id
LEFT JOIN workbooks da_w
ON da.workbook_id = da_w.id
LEFT JOIN projects_contents da_w_pc
ON da_w.id = da_w_pc.content_id
AND da_w.site_id = da_w_pc.site_id
AND da_w_pc.content_type = 'workbook'
-- workbooks
LEFT JOIN workbooks w
ON (t.obj_id = w.id AND t.obj_type = 'Workbook')
OR w.id = sub.workbook_subscription_id
LEFT JOIN projects_contents w_pc
ON w.id = w_pc.content_id
AND w.site_id = w_pc.site_id
AND w_pc.content_type = 'workbook'
LEFT JOIN workbooks m_w --missing workbooks
ON t.id IS NULL
AND bj.subtitle = 'Workbook'
AND m_w.id = CAST(NULLIF(SUBSTRING(bj.args from '---\n-\s[a-zA-Z]*\n-\s([0-9]*)'), '') AS INT)
--AND bj.title = m_w.name
AND bj.site_id = m_w.site_id
LEFT JOIN projects_contents m_w_pc
ON m_w.id = m_w_pc.content_id
AND m_w.site_id = m_w_pc.site_id
AND m_w_pc.content_type = 'workbook'
-- OPTIONAL: If the data source is too slow, add an integer parameter, then edit the name below and remove the "--" from the line. This will filter the data to just that many days ago.
--WHERE age(bj.created_at) <<= INTERVAL '<<[Parameters.Your Parameter Name]>> days' -- this parameter filter exists only for efficiency]]>SELECT
MIN(dc.id) AS "data_connection_id",
CAST('Data Source' AS TEXT) AS "item_type",
dc.datasource_id
FROM data_connections AS dc
INNER JOIN datasources AS dc_d
ON dc.datasource_id = dc_d.id
AND dc_d.connectable = true
GROUP BY dc.datasource_id--This subquery obtains the users granted Project Leader permissions for each project and returns all of their usernames in the "project_leaders_string" field
-- This is used for row-level security
SELECT
project_permissions.project_id AS project_id ,
';' || string_agg(DISTINCT su.name || ';', '')
AS project_leaders_string
FROM public.system_users su
INNER JOIN public.users u
ON su.id = u.system_user_id
INNER JOIN
(
-- users granted project leader rights via individual assignment
SELECT
ngp.grantee_id AS user_id ,
ngp.authorizable_id AS project_id
FROM public.users u
INNER JOIN public.next_gen_permissions ngp
ON u.id = ngp.grantee_id
AND ngp.capability_id = 19 -- Project Leader permissions
AND ngp.grantee_type = 'User'
AND ngp.permission = 3 -- Granted to user
AND ngp.authorizable_type = 'Project'
UNION
-- users granted project leader rights via group membership
SELECT
gu.user_id AS user_id ,
ngp.authorizable_id AS project_id
FROM public.group_users gu
INNER JOIN public.groups g
ON gu.group_id = g.id
INNER JOIN public.next_gen_permissions ngp
ON gu.group_id = ngp.grantee_id
AND ngp.capability_id = 19 -- Project Leader permissions
AND ngp.grantee_type = 'Group'
AND ngp.permission = 1 -- Granted to group
AND ngp.authorizable_type = 'Project'
) AS project_permissions
ON u.id = project_permissions.user_id
INNER JOIN public.projects p
ON project_permissions.project_id = p.id
GROUP BY
project_permissions.project_id
ORDER BY project_permissions.project_id--This subquery obtains the users granted Server Admin privileges the entire Tableau Server instance and returns all of their usernames in the "server_admins_string" field
--This is used for row-level security
SELECT
1 AS dummy_join_field ,
';' || string_agg(DISTINCT su.name || ';', '') AS server_admins_string
FROM users u
INNER JOIN system_users su
ON u.system_user_id = su.id
WHERE su.admin_level = 10--This subquery obtains the users granted Site Admin privileges the entire Tableau Server Site and returns all of their usernames in the "site_admins_string" field
--This is used for row-level security
SELECT
u.site_id ,
';' || string_agg(DISTINCT su.name || ';', '') AS site_admins_string
FROM users u
INNER JOIN system_users su
ON u.system_user_id = su.id
INNER JOIN site_roles sr
ON u.site_role_id = sr.id
WHERE sr.name LIKE '%SiteAdmin%'
GROUP BY u.site_idJob Id3[Job Id][TS Background Tasks Query]Job Id1integerSum10true[Migrated Data]Job LUID72[Job LUID][TS Background Tasks Query]Job LUID2stringCount2147483647true[Migrated Data]Job Name129[Job Name][TS Background Tasks Query]Job Name3stringCount255true"true"[Migrated Data]Progress3[Progress][TS Background Tasks Query]Progress4integerSum10true[Migrated Data]Finish Code3[Finish Code][TS Background Tasks Query]Finish Code5integerSum10true[Migrated Data]Priority3[Priority][TS Background Tasks Query]Priority6integerSum10true[Migrated Data]Notes129[Notes][TS Background Tasks Query]Notes7stringCount2147483647truetrue"true"[Migrated Data]Created At135[Created At][TS Background Tasks Query]Created At8datetimeYeartrue[Migrated Data]Started At135[Started At][TS Background Tasks Query]Started At9datetimeYeartrue[Migrated Data]Completed At135[Completed At][TS Background Tasks Query]Completed At10datetimeYeartrue[Migrated Data]Increment Date135[Increment Date][TS Background Tasks Query]Increment Date11datetimeYeartrue[Migrated Data]Current Datetime135[Current Datetime][TS Background Tasks Query]Current Datetime12datetimeYeartrue[Migrated Data]Site Id3[Site Id][TS Background Tasks Query]Site Id13integerSum10true[Migrated Data]Backgrounder Id129[Backgrounder Id][TS Background Tasks Query]Backgrounder Id14stringCount255true"true"[Migrated Data]Created On Worker129[Created On Worker][TS Background Tasks Query]Created On Worker15stringCount255true"true"[Migrated Data]Processed On Worker129[Processed On Worker][TS Background Tasks Query]Processed On Worker16stringCount255true"true"[Migrated Data]Correlation Id3[Correlation Id][TS Background Tasks Query]Correlation Id17integerSum10true[Migrated Data]Creator Id3[Creator Id][TS Background Tasks Query]Creator Id18integerSum10true[Migrated Data]Run Now11[Run Now][TS Background Tasks Query]Run Now19booleanCounttrue[Migrated Data]Task Id3[Task Id][TS Background Tasks Query]Task Id20integerSum10true[Migrated Data]Consecutive Failure Count3[Consecutive Failure Count][TS Background Tasks Query]Consecutive Failure Count21integerSum10true[Migrated Data]Task State (orig)3[Task State (orig)][TS Background Tasks Query]Task State (orig)22integerSum10true[Migrated Data]Subscription Id3[Subscription Id][TS Background Tasks Query]Subscription Id23integerSum10true[Migrated Data]Item Repository Url129[Item Repository Url][TS Background Tasks Query]Item Repository Url24stringCount2147483647truetrue"true"[Migrated Data]Item Project Id3[Item Project Id][TS Background Tasks Query]Item Project Id25integerSum10true[Migrated Data]Item Owner Id3[Item Owner Id][TS Background Tasks Query]Item Owner Id26integerSum10true[Migrated Data]Item Id3[Item Id][TS Background Tasks Query]Item Id27integerSum10true[Migrated Data]Item LUID72[Item LUID][TS Background Tasks Query]Item LUID28stringCount2147483647true[Migrated Data]Item Name129[Item Name][TS Background Tasks Query]Item Name29stringCount2147483647true"true"[Migrated Data]Item Type129[Item Type][TS Background Tasks Query]Item Type30stringCount2147483647truetrue"true"[Migrated Data]Item Is Certified11[Item Is Certified][TS Background Tasks Query]Item Is Certified31booleanCounttrue[Migrated Data]Data Connection Id3[Data Connection Id][TS Background Tasks Query]Data Connection Id32integerSum10true[Migrated Data]Subscriber Id3[Subscriber Id][TS Background Tasks Query]Subscriber Id33integerSum10true[Migrated Data]Subscriber Sysname129[Subscriber Sysname][TS Background Tasks Query]Subscriber Sysname34stringCount255true"true"[Migrated Data]Subscription Subject129[Subscription Subject][TS Background Tasks Query]Subscription Subject35stringCount256true"true"[Migrated Data]Subscription Workbook Id3[Subscription Workbook Id][TS Background Tasks Query]Subscription Workbook Id36integerSum10true[Migrated Data]Subscription Workbook Name129[Subscription Workbook Name][TS Background Tasks Query]Subscription Workbook Name37stringCount255true"true"[Migrated Data]Subscription Schedule Id3[Subscription Schedule Id][TS Background Tasks Query]Subscription Schedule Id38integerSum10true[Migrated Data]Subscribed to Custom View11[Subscribed to Custom View][TS Background Tasks Query]Subscribed to Custom View39booleanCounttrue[Migrated Data]Data Alert Notification Interval (minutes)3[Data Alert Notification Interval (minutes)][TS Background Tasks Query]Data Alert Notification Interval (minutes)40integerSum10true[Migrated Data]Data Alert Last Checked At135[Data Alert Last Checked At][TS Background Tasks Query]Data Alert Last Checked At41datetimeYeartrue[Migrated Data]id3[id (sites)][sites]id43integerSum10true[Migrated Data]name129[name (sites)][sites]name44stringCount255true"true"[Migrated Data]url_namespace129[url_namespace][sites]url_namespace45stringCount255true"true"[Migrated Data]status129[status][sites]status46stringCount255true"true"[Migrated Data]created_at135[created_at][sites]created_at47datetimeYeartrue[Migrated Data]updated_at135[updated_at][sites]updated_at48datetimeYeartrue[Migrated Data]user_quota3[user_quota][sites]user_quota49integerSum10true[Migrated Data]content_admin_mode3[content_admin_mode][sites]content_admin_mode50integerSum10true[Migrated Data]storage_quota20[storage_quota][sites]storage_quota51integerSum19true[Migrated Data]metrics_level2[metrics_level][sites]metrics_level52integerSum5true[Migrated Data]status_reason129[status_reason][sites]status_reason53stringCount255true"true"[Migrated Data]subscriptions_enabled11[subscriptions_enabled][sites]subscriptions_enabled54booleanCounttrue[Migrated Data]custom_subscription_footer129[custom_subscription_footer][sites]custom_subscription_footer55stringCount2147483647truetrue"true"[Migrated Data]custom_subscription_email129[custom_subscription_email][sites]custom_subscription_email56stringCount2147483647truetrue"true"[Migrated Data]luid72[luid][sites]luid57stringCount2147483647true[Migrated Data]query_limit3[query_limit][sites]query_limit58integerSum10true[Migrated Data]authoring_disabled11[authoring_disabled][sites]authoring_disabled59booleanCounttrue[Migrated Data]sheet_image_enabled11[sheet_image_enabled][sites]sheet_image_enabled60booleanCounttrue[Migrated Data]refresh_token_setting3[refresh_token_setting][sites]refresh_token_setting61integerSum10true[Migrated Data]version_history_enabled11[version_history_enabled][sites]version_history_enabled62booleanCounttrue[Migrated Data]notification_enabled11[notification_enabled][sites]notification_enabled63booleanCounttrue[Migrated Data]content_version_limit3[content_version_limit][sites]content_version_limit64integerSum10true[Migrated Data]subscribe_others_enabled11[subscribe_others_enabled][sites]subscribe_others_enabled65booleanCounttrue[Migrated Data]lock_version3[lock_version][sites]lock_version66integerSum10true[Migrated Data]guest_access_enabled11[guest_access_enabled][sites]guest_access_enabled67booleanCounttrue[Migrated Data]support_access_enabled11[support_access_enabled][sites]support_access_enabled68booleanCounttrue[Migrated Data]cache_warmup_enabled11[cache_warmup_enabled][sites]cache_warmup_enabled69booleanCounttrue[Migrated Data]cache_warmup_threshold2[cache_warmup_threshold][sites]cache_warmup_threshold70integerSum5true[Migrated Data]data_alerts_enabled11[data_alerts_enabled][sites]data_alerts_enabled71booleanCounttrue[Migrated Data]allow_live_query_sync11[allow_live_query_sync][sites]allow_live_query_sync72booleanCounttrue[Migrated Data]commenting_enabled11[commenting_enabled][sites]commenting_enabled73booleanCounttrue[Migrated Data]self_service_schedules_enabled11[self_service_schedules_enabled][sites]self_service_schedules_enabled74booleanCounttrue[Migrated Data]tier_interactor_capacity3[tier_interactor_capacity][sites]tier_interactor_capacity75integerSum10true[Migrated Data]tier_basic_user_capacity3[tier_basic_user_capacity][sites]tier_basic_user_capacity76integerSum10true[Migrated Data]tier_author_capacity3[tier_author_capacity][sites]tier_author_capacity77integerSum10true[Migrated Data]viz_in_tooltip_enabled11[viz_in_tooltip_enabled][sites]viz_in_tooltip_enabled78booleanCounttrue[Migrated Data]protocol_cache_lifetime3[protocol_cache_lifetime][sites]protocol_cache_lifetime79integerSum10true[Migrated Data]protocol_group_size_limit3[protocol_group_size_limit][sites]protocol_group_size_limit80integerSum10true[Migrated Data]commenting_mentions_enabled11[commenting_mentions_enabled][sites]commenting_mentions_enabled81booleanCounttrue[Migrated Data]mixed_content_enabled11[mixed_content_enabled][sites]mixed_content_enabled82booleanCounttrue[Migrated Data]site_invite_notification_enabled11[site_invite_notification_enabled][sites]site_invite_notification_enabled83booleanCounttrue[Migrated Data]extract_encryption_mode2[extract_encryption_mode][sites]extract_encryption_mode84integerSum5true[Migrated Data]flows_enabled11[flows_enabled][sites]flows_enabled85booleanCounttrue[Migrated Data]materialized_views_enabled11[materialized_views_enabled][sites]materialized_views_enabled86booleanCounttrue[Migrated Data]allow_subscriptions_attach_pdf11[allow_subscriptions_attach_pdf][sites]allow_subscriptions_attach_pdf87booleanCounttrue[Migrated Data]materialized_views_mode2[materialized_views_mode][sites]materialized_views_mode88integerSum5true[Migrated Data]start_page_uri129[start_page_uri][sites]start_page_uri89stringCount2147483647truetrue"true"[Migrated Data]afe_enabled11[afe_enabled][sites]afe_enabled90booleanCounttrue[Migrated Data]sandbox_enabled11[sandbox_enabled][sites]sandbox_enabled91booleanCounttrue[Migrated Data]viz_recs_enabled11[viz_recs_enabled][sites]viz_recs_enabled92booleanCounttrue[Migrated Data]biometrics_mobile_enabled11[biometrics_mobile_enabled][sites]biometrics_mobile_enabled93booleanCounttrue[Migrated Data]iba_enabled11[iba_enabled][sites]iba_enabled94booleanCounttrue[Migrated Data]named_sharing_enabled11[named_sharing_enabled][sites]named_sharing_enabled95booleanCounttrue[Migrated Data]sandbox_storage_quota20[sandbox_storage_quota][sites]sandbox_storage_quota96integerSum19true[Migrated Data]sandbox_datasources_enabled11[sandbox_datasources_enabled][sites]sandbox_datasources_enabled97booleanCounttrue[Migrated Data]sandbox_flows_enabled11[sandbox_flows_enabled][sites]sandbox_flows_enabled98booleanCounttrue[Migrated Data]cataloging_enabled11[cataloging_enabled][sites]cataloging_enabled99booleanCounttrue[Migrated Data]derived_permissions_enabled11[derived_permissions_enabled][sites]derived_permissions_enabled100booleanCounttrue[Migrated Data]viz_recs_username_enabled11[viz_recs_username_enabled][sites]viz_recs_username_enabled101booleanCounttrue[Migrated Data]user_visibility3[user_visibility][sites]user_visibility102integerSum10true[Migrated Data]request_access3[request_access][sites]request_access103integerSum10true[Migrated Data]ask_data_mode129[ask_data_mode][sites]ask_data_mode104stringCount2147483647truetrue"true"[Migrated Data]run_now_enabled11[run_now_enabled][sites]run_now_enabled105booleanCounttrue[Migrated Data]web_extraction_enabled2[web_extraction_enabled][sites]web_extraction_enabled106integerSum5true[Migrated Data]metrics_enabled11[metrics_enabled][sites]metrics_enabled107booleanCounttrue[Migrated Data]web_editing_enabled11[web_editing_enabled][sites]web_editing_enabled108booleanCounttrue[Migrated Data]notify_site_admins_on_throttle11[notify_site_admins_on_throttle][sites]notify_site_admins_on_throttle109booleanCounttrue[Migrated Data]obfuscation_enabled11[obfuscation_enabled][sites]obfuscation_enabled110booleanCounttrue[Migrated Data]flow_auto_save_enabled11[flow_auto_save_enabled][sites]flow_auto_save_enabled111booleanCounttrue[Migrated Data]time_zone129[time_zone][sites]time_zone112stringCount2147483647truetrue"true"[Migrated Data]public_collections_enabled11[public_collections_enabled][sites]public_collections_enabled113booleanCounttrue[Migrated Data]self_service_schedule_for_refresh_enabled11[self_service_schedule_for_refresh_enabled][sites]self_service_schedule_for_refresh_enabled114booleanCounttrue[Migrated Data]self_service_schedule_for_flow_enabled11[self_service_schedule_for_flow_enabled][sites]self_service_schedule_for_flow_enabled115booleanCounttrue[Migrated Data]auto_suspend_refresh_enabled11[auto_suspend_refresh_enabled][sites]auto_suspend_refresh_enabled116booleanCounttrue[Migrated Data]auto_suspend_refresh_inactivity_window3[auto_suspend_refresh_inactivity_window][sites]auto_suspend_refresh_inactivity_window117integerSum10true[Migrated Data]web_zone_content_enabled11[web_zone_content_enabled][sites]web_zone_content_enabled118booleanCounttrue[Migrated Data]personal_space_enabled11[personal_space_enabled][sites]personal_space_enabled119booleanCounttrue[Migrated Data]personal_space_storage_quota20[personal_space_storage_quota][sites]personal_space_storage_quota120integerSum19true[Migrated Data]tag_limit3[tag_limit][sites]tag_limit121integerSum10true[Migrated Data]einstein_in_flow_enabled11[einstein_in_flow_enabled][sites]einstein_in_flow_enabled122booleanCounttrue[Migrated Data]explain_data_enabled11[explain_data_enabled][sites]explain_data_enabled123booleanCounttrue[Migrated Data]linked_tasks_enabled11[linked_tasks_enabled][sites]linked_tasks_enabled124booleanCounttrue[Migrated Data]linked_tasks_run_now_enabled11[linked_tasks_run_now_enabled][sites]linked_tasks_run_now_enabled125booleanCounttrue[Migrated Data]dqw_subscriptions_enabled11[dqw_subscriptions_enabled][sites]dqw_subscriptions_enabled126booleanCounttrue[Migrated Data]flow_output_subscriptions_enabled11[flow_output_subscriptions_enabled][sites]flow_output_subscriptions_enabled127booleanCounttrue[Migrated Data]flow_output_subscriptions_data_in_email_body_enabled11[flow_output_subscriptions_data_in_email_body_enabled][sites]flow_output_subscriptions_data_in_email_body_enabled128booleanCounttrue[Migrated Data]flow_output_subscriptions_data_as_email_attachment_enabled11[flow_output_subscriptions_data_as_email_attachment_enabled][sites]flow_output_subscriptions_data_as_email_attachment_enabled129booleanCounttrue[Migrated Data]flow_parameters_enabled11[flow_parameters_enabled][sites]flow_parameters_enabled130booleanCounttrue[Migrated Data]flow_parameters_any_type_enabled11[flow_parameters_any_type_enabled][sites]flow_parameters_any_type_enabled131booleanCounttrue[Migrated Data]admin_insights_publish_frequency3[admin_insights_publish_frequency][sites]admin_insights_publish_frequency132integerSum10true[Migrated Data]backgrounder_governance_default_limit_enabled11[backgrounder_governance_default_limit_enabled][sites]backgrounder_governance_default_limit_enabled133booleanCounttrue[Migrated Data]id3[id (projects)][projects]id135integerSum10true[Migrated Data]name129[name (projects)][projects]name136stringCount255true"true"[Migrated Data]owner_id3[owner_id][projects]owner_id137integerSum10true[Migrated Data]created_at135[created_at (projects)][projects]created_at138datetimeYeartrue[Migrated Data]updated_at135[updated_at (projects)][projects]updated_at139datetimeYeartrue[Migrated Data]state129[state][projects]state140stringCount32true"true"[Migrated Data]description129[description][projects]description141stringCount2147483647truetrue"true"[Migrated Data]site_id3[site_id (projects)][projects]site_id142integerSum10true[Migrated Data]special3[special][projects]special143integerSum10true[Migrated Data]luid72[luid (projects)][projects]luid144stringCount2147483647true[Migrated Data]controlled_permissions_enabled11[controlled_permissions_enabled][projects]controlled_permissions_enabled145booleanCounttrue[Migrated Data]parent_project_id3[parent_project_id][projects]parent_project_id146integerSum10true[Migrated Data]admin_insights_enabled11[admin_insights_enabled][projects]admin_insights_enabled147booleanCounttrue[Migrated Data]nested_projects_permissions_included11[nested_projects_permissions_included][projects]nested_projects_permissions_included148booleanCounttrue[Migrated Data]controlling_permissions_project_id3[controlling_permissions_project_id][projects]controlling_permissions_project_id149integerSum10true[Migrated Data]lower_name129[lower_name][projects]lower_name150stringCount255true"true"[Migrated Data]data_connection_id3[data_connection_id][Data Connection Ids]data_connection_id152integerSum10true[Migrated Data]item_type129[item_type][Data Connection Ids]item_type153stringCount2147483647truetrue"true"[Migrated Data]datasource_id3[datasource_id][Data Connection Ids]datasource_id154integerSum10true[Migrated Data]id3[id (tasks)][tasks]id156integerSum10true[Migrated Data]schedule_id3[schedule_id][tasks]schedule_id157integerSum10true[Migrated Data]type129[type][tasks]type158stringCount255true"true"[Migrated Data]priority3[priority][tasks]priority159integerSum10true[Migrated Data]obj_id3[obj_id][tasks]obj_id160integerSum10true[Migrated Data]created_at135[created_at (tasks)][tasks]created_at161datetimeYeartrue[Migrated Data]updated_at135[updated_at (tasks)][tasks]updated_at162datetimeYeartrue[Migrated Data]site_id3[site_id (tasks)][tasks]site_id163integerSum10true[Migrated Data]obj_type129[obj_type][tasks]obj_type164stringCount255true"true"[Migrated Data]luid72[luid (tasks)][tasks]luid165stringCount2147483647true[Migrated Data]consecutive_failure_count3[consecutive_failure_count][tasks]consecutive_failure_count166integerSum10true[Migrated Data]active11[active][tasks]active167booleanCounttrue[Migrated Data]args129[args][tasks]args168stringCount2147483647truetrue"true"[Migrated Data]title129[title][tasks]title169stringCount2147483647truetrue"true"[Migrated Data]subtitle129[subtitle][tasks]subtitle170stringCount2147483647truetrue"true"[Migrated Data]historical_run_time3[historical_run_time][tasks]historical_run_time171integerSum10true[Migrated Data]historical_queue_time3[historical_queue_time][tasks]historical_queue_time172integerSum10true[Migrated Data]run_count3[run_count][tasks]run_count173integerSum10true[Migrated Data]state3[state (tasks)][tasks]state174integerSum10true[Migrated Data]last_success_completed_at135[last_success_completed_at][tasks]last_success_completed_at175datetimeYeartrue[Migrated Data]creator_id3[creator_id][tasks]creator_id176integerSum10true[Migrated Data]id3[id (schedules)][schedules]id178integerSum10true[Migrated Data]name129[name (schedules)][schedules]name179stringCount255true"true"[Migrated Data]active11[active (schedules)][schedules]active180booleanCounttrue[Migrated Data]priority3[priority (schedules)][schedules]priority181integerSum10true[Migrated Data]schedule_type3[schedule_type][schedules]schedule_type182integerSum10true[Migrated Data]day_of_week_mask3[day_of_week_mask][schedules]day_of_week_mask183integerSum10true[Migrated Data]day_of_month_mask3[day_of_month_mask][schedules]day_of_month_mask184integerSum10true[Migrated Data]start_at_minute3[start_at_minute][schedules]start_at_minute185integerSum10true[Migrated Data]minute_interval3[minute_interval][schedules]minute_interval186integerSum10true[Migrated Data]end_at_minute3[end_at_minute][schedules]end_at_minute187integerSum10true[Migrated Data]end_schedule_at135[end_schedule_at][schedules]end_schedule_at188datetimeYeartrue[Migrated Data]run_next_at135[run_next_at][schedules]run_next_at189datetimeYeartrue[Migrated Data]created_at135[created_at (schedules)][schedules]created_at190datetimeYeartrue[Migrated Data]updated_at135[updated_at (schedules)][schedules]updated_at191datetimeYeartrue[Migrated Data]hidden11[hidden][schedules]hidden192booleanCounttrue[Migrated Data]serial_collection_id3[serial_collection_id][schedules]serial_collection_id193integerSum10true[Migrated Data]lock_version3[lock_version (schedules)][schedules]lock_version194integerSum10true[Migrated Data]scheduled_action3[scheduled_action][schedules]scheduled_action195integerSum10true[Migrated Data]luid72[luid (schedules)][schedules]luid196stringCount2147483647true[Migrated Data]defined_by3[defined_by][schedules]defined_by197integerSum10true[Migrated Data]timezoneid129[timezoneid][schedules]timezoneid198stringCount2147483647truetrue"true"[Migrated Data]actionable11[actionable][schedules]actionable199booleanCounttrue[Migrated Data]linked_task_enabled11[linked_task_enabled][schedules]linked_task_enabled200booleanCounttrue[Migrated Data]id3[id (schedules1)][schedules (subscriptions)]id202integerSum10true[Migrated Data]name129[name (schedules1)][schedules (subscriptions)]name203stringCount255true"true"[Migrated Data]active11[active (schedules1)][schedules (subscriptions)]active204booleanCounttrue[Migrated Data]priority3[priority (schedules1)][schedules (subscriptions)]priority205integerSum10true[Migrated Data]schedule_type3[schedule_type (schedules1)][schedules (subscriptions)]schedule_type206integerSum10true[Migrated Data]day_of_week_mask3[day_of_week_mask (schedules1)][schedules (subscriptions)]day_of_week_mask207integerSum10true[Migrated Data]day_of_month_mask3[day_of_month_mask (schedules1)][schedules (subscriptions)]day_of_month_mask208integerSum10true[Migrated Data]start_at_minute3[start_at_minute (schedules1)][schedules (subscriptions)]start_at_minute209integerSum10true[Migrated Data]minute_interval3[minute_interval (schedules1)][schedules (subscriptions)]minute_interval210integerSum10true[Migrated Data]end_at_minute3[end_at_minute (schedules1)][schedules (subscriptions)]end_at_minute211integerSum10true[Migrated Data]end_schedule_at135[end_schedule_at (schedules1)][schedules (subscriptions)]end_schedule_at212datetimeYeartrue[Migrated Data]run_next_at135[run_next_at (schedules1)][schedules (subscriptions)]run_next_at213datetimeYeartrue[Migrated Data]created_at135[created_at (schedules1)][schedules (subscriptions)]created_at214datetimeYeartrue[Migrated Data]updated_at135[updated_at (schedules1)][schedules (subscriptions)]updated_at215datetimeYeartrue[Migrated Data]hidden11[hidden (schedules1)][schedules (subscriptions)]hidden216booleanCounttrue[Migrated Data]serial_collection_id3[serial_collection_id (schedules1)][schedules (subscriptions)]serial_collection_id217integerSum10true[Migrated Data]lock_version3[lock_version (schedules1)][schedules (subscriptions)]lock_version218integerSum10true[Migrated Data]scheduled_action3[scheduled_action (schedules1)][schedules (subscriptions)]scheduled_action219integerSum10true[Migrated Data]luid72[luid (schedules1)][schedules (subscriptions)]luid220stringCount2147483647true[Migrated Data]defined_by3[defined_by (schedules1)][schedules (subscriptions)]defined_by221integerSum10true[Migrated Data]timezoneid129[timezoneid (schedules1)][schedules (subscriptions)]timezoneid222stringCount2147483647truetrue"true"[Migrated Data]actionable11[actionable (schedules (subscriptions))][schedules (subscriptions)]actionable223booleanCounttrue[Migrated Data]linked_task_enabled11[linked_task_enabled (schedules (subscriptions))][schedules (subscriptions)]linked_task_enabled224booleanCounttrue[Migrated Data]id3[id (users)][users]id226integerSum10true[Migrated Data]login_at135[login_at (users)][users]login_at227datetimeYeartrue[Migrated Data]nonce129[nonce][users]nonce228stringCount32true"true"[Migrated Data]row_limit3[row_limit][users]row_limit229integerSum10true[Migrated Data]storage_limit3[storage_limit][users]storage_limit230integerSum10true[Migrated Data]created_at135[created_at (users)][users]created_at231datetimeYeartrue[Migrated Data]extracts_required11[extracts_required][users]extracts_required232booleanCounttrue[Migrated Data]updated_at135[updated_at (users)][users]updated_at233datetimeYeartrue[Migrated Data]raw_data_suppressor_tristate3[raw_data_suppressor_tristate][users]raw_data_suppressor_tristate234integerSum10true[Migrated Data]site_id3[site_id (users)][users]site_id235integerSum10true[Migrated Data]system_user_id3[system_user_id (users)][users]system_user_id236integerSum10true[Migrated Data]system_admin_auto11[system_admin_auto][users]system_admin_auto237booleanCounttrue[Migrated Data]luid72[luid (users)][users]luid238stringCount2147483647true[Migrated Data]lock_version3[lock_version (users)][users]lock_version239integerSum10true[Migrated Data]site_role_id3[site_role_id][users]site_role_id240integerSum10true[Migrated Data]id3[id (system_users)][system_users]id242integerSum10true[Migrated Data]name129[name][system_users]name243stringCount255true"true"[Migrated Data]email129[email][system_users]email244stringCount255true"true"[Migrated Data]hashed_password129[hashed_password][system_users]hashed_password245stringCount255true"true"[Migrated Data]salt129[salt][system_users]salt246stringCount255true"true"[Migrated Data]sys11[sys][system_users]sys247booleanCounttrue[Migrated Data]keychain129[keychain][system_users]keychain248stringCount2147483647truetrue"true"[Migrated Data]domain_id3[domain_id][system_users]domain_id249integerSum10true[Migrated Data]friendly_name129[friendly_name][system_users]friendly_name250stringCount255true"true"[Migrated Data]custom_display_name11[custom_display_name][system_users]custom_display_name251booleanCounttrue[Migrated Data]activation_code129[activation_code][system_users]activation_code252stringCount255true"true"[Migrated Data]activated_at135[activated_at][system_users]activated_at253datetimeYeartrue[Migrated Data]state129[state (system_users)][system_users]state254stringCount255true"true"[Migrated Data]admin_level3[admin_level (system_users)][system_users]admin_level255integerSum10true[Migrated Data]created_at135[created_at (system_users)][system_users]created_at256datetimeYeartrue[Migrated Data]updated_at135[updated_at (system_users)][system_users]updated_at257datetimeYeartrue[Migrated Data]deleted_at135[deleted_at][system_users]deleted_at258datetimeYeartrue[Migrated Data]auth_user_id129[auth_user_id][system_users]auth_user_id259stringCount255true"true"[Migrated Data]asset_key_id3[asset_key_id][system_users]asset_key_id260integerSum10true[Migrated Data]lock_version3[lock_version (system_users)][system_users]lock_version261integerSum10true[Migrated Data]last_password_update135[last_password_update][system_users]last_password_update262datetimeYeartrue[Migrated Data]force_password_update11[force_password_update][system_users]force_password_update263booleanCounttrue[Migrated Data]protected_password129[protected_password][system_users]protected_password264stringCount2147483647true"true"[Migrated Data]last_failed_login135[last_failed_login][system_users]last_failed_login265datetimeYeartrue[Migrated Data]failed_login_attempts3[failed_login_attempts][system_users]failed_login_attempts266integerSum10true[Migrated Data]protected_password_bad_format11[protected_password_bad_format][system_users]protected_password_bad_format267booleanCounttrue[Migrated Data]project_id3[project_id][Project Leader Permissions]project_id269integerSum10true[Migrated Data]project_leaders_string129[project_leaders_string][Project Leader Permissions]project_leaders_string270stringCount2147483647truetrue"true"[Migrated Data]id3[id][Project Owner Users]id272integerSum10true[Migrated Data]login_at135[login_at][Project Owner Users]login_at273datetimeYeartrue[Migrated Data]nonce129[nonce (users1)][Project Owner Users]nonce274stringCount32true"true"[Migrated Data]row_limit3[row_limit (users1)][Project Owner Users]row_limit275integerSum10true[Migrated Data]storage_limit3[storage_limit (users1)][Project Owner Users]storage_limit276integerSum10true[Migrated Data]created_at135[created_at (users1)][Project Owner Users]created_at277datetimeYeartrue[Migrated Data]extracts_required11[extracts_required (users1)][Project Owner Users]extracts_required278booleanCounttrue[Migrated Data]updated_at135[updated_at (users1)][Project Owner Users]updated_at279datetimeYeartrue[Migrated Data]raw_data_suppressor_tristate3[raw_data_suppressor_tristate (users1)][Project Owner Users]raw_data_suppressor_tristate280integerSum10true[Migrated Data]site_id3[site_id][Project Owner Users]site_id281integerSum10true[Migrated Data]system_user_id3[system_user_id][Project Owner Users]system_user_id282integerSum10true[Migrated Data]system_admin_auto11[system_admin_auto (users1)][Project Owner Users]system_admin_auto283booleanCounttrue[Migrated Data]luid72[luid (users1)][Project Owner Users]luid284stringCount2147483647true[Migrated Data]lock_version3[lock_version (users1)][Project Owner Users]lock_version285integerSum10true[Migrated Data]site_role_id3[site_role_id (users1)][Project Owner Users]site_role_id286integerSum10true[Migrated Data]id3[id (system_users1)][Project Owner System Users]id288integerSum10true[Migrated Data]name129[name (system_users1)][Project Owner System Users]name289stringCount255true"true"[Migrated Data]email129[email (system_users1)][Project Owner System Users]email290stringCount255true"true"[Migrated Data]hashed_password129[hashed_password (system_users1)][Project Owner System Users]hashed_password291stringCount255true"true"[Migrated Data]salt129[salt (system_users1)][Project Owner System Users]salt292stringCount255true"true"[Migrated Data]sys11[sys (system_users1)][Project Owner System Users]sys293booleanCounttrue[Migrated Data]keychain129[keychain (system_users1)][Project Owner System Users]keychain294stringCount2147483647truetrue"true"[Migrated Data]domain_id3[domain_id (system_users1)][Project Owner System Users]domain_id295integerSum10true[Migrated Data]friendly_name129[friendly_name (system_users1)][Project Owner System Users]friendly_name296stringCount255true"true"[Migrated Data]custom_display_name11[custom_display_name (system_users1)][Project Owner System Users]custom_display_name297booleanCounttrue[Migrated Data]activation_code129[activation_code (system_users1)][Project Owner System Users]activation_code298stringCount255true"true"[Migrated Data]activated_at135[activated_at (system_users1)][Project Owner System Users]activated_at299datetimeYeartrue[Migrated Data]state129[state (system_users1)][Project Owner System Users]state300stringCount255true"true"[Migrated Data]admin_level3[admin_level][Project Owner System Users]admin_level301integerSum10true[Migrated Data]created_at135[created_at (system_users1)][Project Owner System Users]created_at302datetimeYeartrue[Migrated Data]updated_at135[updated_at (system_users1)][Project Owner System Users]updated_at303datetimeYeartrue[Migrated Data]deleted_at135[deleted_at (system_users1)][Project Owner System Users]deleted_at304datetimeYeartrue[Migrated Data]auth_user_id129[auth_user_id (system_users1)][Project Owner System Users]auth_user_id305stringCount255true"true"[Migrated Data]asset_key_id3[asset_key_id (system_users1)][Project Owner System Users]asset_key_id306integerSum10true[Migrated Data]lock_version3[lock_version (system_users1)][Project Owner System Users]lock_version307integerSum10true[Migrated Data]last_password_update135[last_password_update (system_users1)][Project Owner System Users]last_password_update308datetimeYeartrue[Migrated Data]force_password_update11[force_password_update (system_users1)][Project Owner System Users]force_password_update309booleanCounttrue[Migrated Data]protected_password129[protected_password (Project Owner System Users)][Project Owner System Users]protected_password310stringCount2147483647true"true"[Migrated Data]last_failed_login135[last_failed_login (system_users1)][Project Owner System Users]last_failed_login311datetimeYeartrue[Migrated Data]failed_login_attempts3[failed_login_attempts (system_users1)][Project Owner System Users]failed_login_attempts312integerSum10true[Migrated Data]protected_password_bad_format11[protected_password_bad_format (Project Owner System Users)][Project Owner System Users]protected_password_bad_format313booleanCounttrue[Migrated Data]dummy_join_field3[dummy_join_field][Server Admin Permissions]dummy_join_field315integerSum10true[Migrated Data]server_admins_string129[server_admins_string][Server Admin Permissions]server_admins_string316stringCount2147483647truetrue"true"[Migrated Data]site_id3[site_id (Custom SQL Query)][Site Admin Permissions]site_id318integerSum10true[Migrated Data]site_admins_string129[site_admins_string][Site Admin Permissions]site_admins_string319stringCount2147483647truetrue"true"[Migrated Data]id3[id (_users)][Job Creator Users]id321integerSum10true[Migrated Data]name129[name (_users)][Job Creator Users]name322stringCount255true"true"[Migrated Data]login_at135[login_at (_users)][Job Creator Users]login_at323datetimeYeartrue[Migrated Data]friendly_name129[friendly_name (_users)][Job Creator Users]friendly_name324stringCount255true"true"[Migrated Data]licensing_role_id3[licensing_role_id][Job Creator Users]licensing_role_id325integerSum10true[Migrated Data]licensing_role_name129[licensing_role_name][Job Creator Users]licensing_role_name326stringCount255true"true"[Migrated Data]domain_id3[domain_id (_users)][Job Creator Users]domain_id327integerSum10true[Migrated Data]system_user_id3[system_user_id (_users)][Job Creator Users]system_user_id328integerSum10true[Migrated Data]domain_name129[domain_name][Job Creator Users]domain_name329stringCount255true"true"[Migrated Data]domain_short_name129[domain_short_name][Job Creator Users]domain_short_name330stringCount80true"true"[Migrated Data]site_id3[site_id (_users)][Job Creator Users]site_id331integerSum10true[Migrated Data]id3[id (site_roles)][site_roles]id333integerSum10true[Migrated Data]name129[name (site_roles)][site_roles]name334stringCount255true"true"[Migrated Data]licensing_rank3[licensing_rank][site_roles]licensing_rank335integerSum10true[Migrated Data]display_name129[display_name][site_roles]display_name336stringCount255true"true"[Migrated Data]The host name of the Tableau Server worker that this background task was processed on.The worker number of the Tableau Server worker that this background task was processed on.The process number on the Tableau Server worker that this background task was processed on.The host and Backgrounder process ID this background task was processed on. Useful for troubleshooting failing tasks at a deeper level.The site role for the user who owns the item.This calc isn't used for anything, it's just here to keep the version of the data source, e.g. "02.01" (version set [dot] iteration).The state of the scheduled task responsible for initiating this background job.For extract refresh jobs, this is the LUID of the datasource or workbook being refreshed.
For subscriptions, this is the LUID of the view or workbook subscribed to.
LUIDS are primarily useful for referencing content in the Tableau Server API.Date the background task completed, in UTC offset by the parameter "TS Extract Jobs Timezone Offset (Hours)".Caveats:
-Does not account for daylight savings time
-Relative date filters should not use this field, or they will not work correctlyDenotes the current state of the background task:
In Progress
Succeeded
FailedDate the background task was created, in UTC offset by the parameter "TS Extract Jobs Timezone Offset (Hours)".Caveats:
-Does not account for daylight savings time
-Relative date filters should not use this field, or they will not work correctlyDuration of the background task in secondsFlag used to test whether the current Server user should have access to the current rowThis calc isn't used for anything, it's just here to keep the parameters with the data source when you publish it.
See http://kb.tableau.com/articles/issue/parameters-not-retained-in-Published-Data-SourcesDate the background task started, in UTC offset by the parameter "TS Extract Jobs Timezone Offset (Hours)".Caveats:
-Does not account for daylight savings time
-Relative date filters should not use this field, or they will not work correctlyDescribes whether the Schedule that this background task is associated with is currently disabled.
Note that due to data structure issues in Tableau Server, this information is not always available.The name of the Schedule that this background task is associated with.
Note that due to data structure issues in Tableau Server, this information is not always available.The id of the Schedule that this background task is associated with.
Note that due to data structure issues in Tableau Server, this information is not always available.The priority setting for the Schedule that this background task is associated with.
Note that due to data structure issues in Tableau Server, this information is not always available.This is the base URL for items on Tableau Server, used to construct the full URL for all the other hyperlink fields.Date the background task completed, in UTCThe number of times this task has failed.Used to link background_tasks records to other tables containing information on what items were acted on. Primarily this is a Task Id or Subscription Id.
However, should those tasks or subscriptions be removed, these Ids end up pointing at nothing, as there's no historical preservation of the original items.Date the background task was created, in UTCThe Tableau Server Worker host that this background task was create on (but not necessarily processed on).The last time at which the the alert was checked.The interval in minutes in which to send no more than one alert.This is the Id of the connection for a data source.
Note that this is only used to construct URLs to published data sources (Tableau Server does uses the connection Id rather than the data source Id).Denotes the success or failure of a background task
0 = Success
1 = Failed
Full URL to download the item from Tableau Server.Full URL to view the run history page for the item on Tableau Server.Full URL to the extract refresh or flow run schedules page for the item on Tableau Server.Full URL to view the Details page for the item on Tableau Server.Full URL to view the item on Tableau Server.This is the base URL for items on a version 8 Tableau Server, used to construct the full URL for all the other hyperlink fields.Full URL to the Subscriptions page for the workbook of the item on Tableau Server.For extract refresh jobs, this is the Id of the datasource or workbook being refreshed.
For subscriptions, this is the Id of the view or workbook subscribed to.Denotes whether the item is certified or not.For extract refresh jobs, this is the LUID of the datasource or workbook being refreshed.
For subscriptions, this is the LUID of the view or workbook subscribed to.
LUIDS are primarily useful for referencing content in the Tableau Server API.For extract refreshes, this is the name of the datasource or workbook.
For subscriptions, it is the subject entered by the user when they created their subscription.
For everything else, it's the "subtitle" used in the background_jobs table.User Id of the owner of the datasource or workbook.
Note that for subscriptions, this is still the owner of the item subscribed to--not the subscriber themselves (though they could be the same person)Project ID of the project for the datasource or workbook as assigned by the PostgreSQL databaseURL-compatible name used by Tableau Server to uniquely identify a workbook / datasource.Denotes whether the Item is a datasource or a workbook, or what kind of subscription it is.Duration of the background task in minutesJob ID of the background task. This can be looked up in searches through the Tableau Server backgrounder logs when troubleshooting.The LUID of this background task.
LUIDs are primarily useful for referencing content using the Tableau Server API.The LUID of this background task.
LUIDs are primarily useful for referencing content using the Tableau Server API.Name of the background job (could also be described as the "type" of background job, e.g. "Increment Extracts" or "Vacuum Database")Details operational info or failure information for the background taskUser LUID of the owner of the datasource or workbook.
Note that for subscriptions, this is still the owner of the item subscribed to--not the subscriber themselves (though they could be the same person)
LUIDs are primarily useful in referencing content with the Tableau Server API.Priority level the background task was executed under (derived from the schedule priority)The Tableau Server Worker host that this background task was processed on.Can be used to indicate percent complete for the job, but in most cases simply gets set to 100 when the job is completed.LUID of the Project that the item lives in.
LUIDs are primarily useful for referencing content with the Tableau Server API.Indicates if the job was triggered by run nowThe LUID of the Schedule that this background task is associated with. LUIDs are primarily useful for referencing content using the Tableau Server API.
Note that due to data structure issues in Tableau Server, this information is not always available.The frequency of the Schedule that this background task is associated with.
Possibilities:
-Hourly
-Daily
-Weekly
-Monthly
Note that due to data structure issues in Tableau Server, this information is not always available.The type of Schedule that this background task is associated with, either Extract or Subscription.Æ
Note that due to data structure issues in Tableau Server, this information is not always available.Site ID of the site for the datasource or workbook as assigned by the PostgreSQL databaseLUID of the Site that the item lives in.
LUIDs are primarily useful for referencing content with the Tableau Server API.Date the background task started, in UTCWas the subscription created against a customized view?User Id of the user whose subscription this is.System name of the user whose subscription this is.Id of the subscription run during this background task (if it was processing a subscription)The Subject entered by the subscriber when they subscribed to the workbook or view.Workbook Id that the subscription was against. This is populated for subscriptions to both individual views and entire workbooks, primarily so it can be used in hyperlinks.Workbook name that the subscription was against. This is populated for subscriptions to both individual views and entire workbooks.Duration of the background task in Days (useful for Gantt charts)Email address of the owner of the project the item is in.Email address of the owner of the itemFriendly (or "full") name of the owner of the item.Describes whether the Schedule that this background task is associated with is currently disabled.Id of the Project that the item lives in.LUID of the Project that the item lives in.
LUIDs are primarily useful for referencing content with the Tableau Server API.The LUID of the Schedule that this background task is associated with. LUIDs are primarily useful for referencing content using the Tableau Server API.
Note that due to data structure issues in Tableau Server, this information is not always available.User LUID of the owner of the datasource or workbook.
Note that for subscriptions, this is still the owner of the item subscribed to--not the subscriber themselves (though they could be the same person)
LUIDs are primarily useful in referencing content with the Tableau Server API.LUID of the Site that the item lives in.
LUIDs are primarily useful for referencing content with the Tableau Server API.System name of the user who triggered this jobName of the Project that the item lives in.The name of the Schedule that this background task is associated with.Name of the Site that the item lives in.Username of the owner of the project the item is in.System name of the owner of the item (e.g. "mcoles").The priority setting for the Schedule that this background task is associated with.Semicolon-delimited list of usernames that have been granted Project Leader rights to the project the item exists in. Example: ";mcoles;jdrummey;"
This can be referenced in the User Filter field to allow Project Leaders to access data on background tasks that pertain to the projects they are responsible for.The id of the Schedule that this background task is associated with.The type of the Schedule that this background task is associated with.Semicolon-delimited list of usernames that have been granted Server Admin privileges across the entire server. Example: ";mcoles;jdrummey;"
This can be referenced in the User Filter field to allow all Server Admins to access data on background tasks.Semicolon-delimited list of usernames that have been granted Site Admin privileges across the entire site. Example: ";mcoles;jdrummey;"
This can be referenced in the User Filter field to allow all Site Admins to access data on background tasks within sites that they administrate.The unique URL name of the site the item exists on.args129[args (TS Background Tasks Query)][Extract]args0TS Background Tasks QuerystringCount13529true[Migrated Data]args_in20[args_in][Extract]args_in1TS Background Tasks QueryintegerSum2552true[Migrated Data]Job Id20[Job Id][Extract]Job Id2TS Background Tasks QueryintegerSum1494934true[Migrated Data]Job LUID129[Job LUID][Extract]Job LUID3TS Background Tasks QuerystringCount1494934true[Migrated Data]Job Name129[Job Name][Extract]Job Name4TS Background Tasks QuerystringCount116true[Migrated Data]Progress20[Progress][Extract]Progress5TS Background Tasks QueryintegerSum1true[Migrated Data]Finish Code20[Finish Code][Extract]Finish Code6TS Background Tasks QueryintegerSum2true[Migrated Data]Priority20[Priority][Extract]Priority7TS Background Tasks QueryintegerSum11true[Migrated Data]Notes129[Notes][Extract]Notes8TS Background Tasks QuerystringCount28952true[Migrated Data]Created At135[Created At][Extract]Created At9TS Background Tasks QuerydatetimeYear1494934true[Migrated Data]Started At135[Started At][Extract]Started At10TS Background Tasks QuerydatetimeYear1462606true[Migrated Data]Completed At135[Completed At][Extract]Completed At11TS Background Tasks QuerydatetimeYear1494934true[Migrated Data]Increment Date135[Increment Date][Extract]Increment Date12TS Background Tasks QuerydatetimeYear1494934true[Migrated Data]Current Datetime135[Current Datetime][Extract]Current Datetime13TS Background Tasks QuerydatetimeYear1true[Migrated Data]Site Id20[Site Id][Extract]Site Id14TS Background Tasks QueryintegerSum2true[Migrated Data]Backgrounder Id129[Backgrounder Id][Extract]Backgrounder Id15TS Background Tasks QuerystringCount75true[Migrated Data]Correlation Id20[Correlation Id][Extract]Correlation Id16TS Background Tasks QueryintegerSum5842true[Migrated Data]Creator Id20[Creator Id][Extract]Creator Id17TS Background Tasks QueryintegerSum2056true[Migrated Data]Run Now11[Run Now][Extract]Run Now18TS Background Tasks QuerybooleanCount2true[Migrated Data]Consecutive Failure Count20[Consecutive Failure Count][Extract]Consecutive Failure Count19TS Background Tasks QueryintegerSum7true[Migrated Data]Task State (orig)20[Task State (orig)][Extract]Task State (orig)20TS Background Tasks QueryintegerSum4true[Migrated Data]Subscription Id20[Subscription Id][Extract]Subscription Id21TS Background Tasks QueryintegerSum10379true[Migrated Data]Item Repository Url129[Item Repository Url][Extract]Item Repository Url22TS Background Tasks QuerystringCount4721true[Migrated Data]Item Owner Id20[Item Owner Id][Extract]Item Owner Id23TS Background Tasks QueryintegerSum1156true[Migrated Data]Item Id20[Item Id][Extract]Item Id24TS Background Tasks QueryintegerSum4795true[Migrated Data]Item LUID129[Item LUID][Extract]Item LUID25TS Background Tasks QuerystringCount4960true[Migrated Data]Item Name129[Item Name][Extract]Item Name26TS Background Tasks QuerystringCount5155true[Migrated Data]Item Type129[Item Type][Extract]Item Type27TS Background Tasks QuerystringCount7true[Migrated Data]Item Is Certified11[Item Is Certified][Extract]Item Is Certified28TS Background Tasks QuerybooleanCount3true[Migrated Data]Data Connection Id20[Data Connection Id][Extract]Data Connection Id29TS Background Tasks QueryintegerSum713true[Migrated Data]Subscriber Id20[Subscriber Id][Extract]Subscriber Id30TS Background Tasks QueryintegerSum4446true[Migrated Data]Subscriber Sysname129[Subscriber Sysname][Extract]Subscriber Sysname31TS Background Tasks QuerystringCount4446true[Migrated Data]Subscription Subject129[Subscription Subject][Extract]Subscription Subject32TS Background Tasks QuerystringCount4536true[Migrated Data]Subscription Workbook Id20[Subscription Workbook Id][Extract]Subscription Workbook Id33TS Background Tasks QueryintegerSum1456true[Migrated Data]Subscription Workbook Name129[Subscription Workbook Name][Extract]Subscription Workbook Name34TS Background Tasks QuerystringCount1456true[Migrated Data]Subscription Schedule Id20[Subscription Schedule Id][Extract]Subscription Schedule Id35TS Background Tasks QueryintegerSum103true[Migrated Data]Subscribed to Custom View11[Subscribed to Custom View][Extract]Subscribed to Custom View36TS Background Tasks QuerybooleanCount2true[Migrated Data]Data Alert Notification Interval (minutes)20[Data Alert Notification Interval (minutes)][Extract]Data Alert Notification Interval (minutes)37TS Background Tasks QueryintegerSum6true[Migrated Data]Data Alert Last Checked At135[Data Alert Last Checked At][Extract]Data Alert Last Checked At38TS Background Tasks QuerydatetimeYear598true[Migrated Data]name4129[name (sites)][Extract]name439sitesstringCount2true[Migrated Data]url_namespace129[url_namespace][Extract]url_namespace40sitesstringCount2true[Migrated Data]luid5129[luid][Extract]luid541sitesstringCount2true[Migrated Data]id20[id (projects)][Extract]id42projectsintegerSum555true[Migrated Data]name1129[name (projects)][Extract]name143projectsstringCount525true[Migrated Data]luid129[luid (projects)][Extract]luid44projectsstringCount555true[Migrated Data]schedule_id20[schedule_id][Extract]schedule_id45tasksintegerSum210true[Migrated Data]name2129[name (schedules)][Extract]name246schedulesstringCount210true[Migrated Data]active11[active (schedules)][Extract]active47schedulesbooleanCount3true[Migrated Data]priority120[priority (schedules)][Extract]priority148schedulesintegerSum8true[Migrated Data]schedule_type120[schedule_type][Extract]schedule_type149schedulesintegerSum5true[Migrated Data]scheduled_action120[scheduled_action][Extract]scheduled_action150schedulesintegerSum6true[Migrated Data]luid1129[luid (schedules)][Extract]luid151schedulesstringCount210true[Migrated Data]name3129[name (schedules1)][Extract]name352schedules (subscriptions)stringCount103true[Migrated Data]active111[active (schedules1)][Extract]active153schedules (subscriptions)booleanCount3true[Migrated Data]priority220[priority (schedules1)][Extract]priority254schedules (subscriptions)integerSum6true[Migrated Data]schedule_type20[schedule_type (schedules1)][Extract]schedule_type55schedules (subscriptions)integerSum5true[Migrated Data]scheduled_action20[scheduled_action (schedules1)][Extract]scheduled_action56schedules (subscriptions)integerSum2true[Migrated Data]luid2129[luid (schedules1)][Extract]luid257schedules (subscriptions)stringCount103true[Migrated Data]luid3129[luid (users)][Extract]luid358usersstringCount1156true[Migrated Data]name6129[name][Extract]name659system_usersstringCount1156true[Migrated Data]email1129[email][Extract]email160system_usersstringCount1155true[Migrated Data]friendly_name1129[friendly_name][Extract]friendly_name161system_usersstringCount1156true[Migrated Data]admin_level20[admin_level (system_users)][Extract]admin_level62system_usersintegerSum3true[Migrated Data]project_leaders_string129[project_leaders_string][Extract]project_leaders_string63Project Leader PermissionsstringCount143true[Migrated Data]luid4129[luid (users1)][Extract]luid464Project Owner UsersstringCount239true[Migrated Data]name5129[name (system_users1)][Extract]name565Project Owner System UsersstringCount239true[Migrated Data]email129[email (system_users1)][Extract]email66Project Owner System UsersstringCount239true[Migrated Data]friendly_name129[friendly_name (system_users1)][Extract]friendly_name67Project Owner System UsersstringCount239true[Migrated Data]admin_level120[admin_level][Extract]admin_level168Project Owner System UsersintegerSum3true[Migrated Data]server_admins_string129[server_admins_string][Extract]server_admins_string69Server Admin PermissionsstringCount1true[Migrated Data]site_admins_string129[site_admins_string][Extract]site_admins_string70Site Admin PermissionsstringCount2true[Migrated Data]name129[name (_users)][Extract]name71Job Creator UsersstringCount2059true[Migrated Data]display_name129[display_name][Extract]display_name72site_rolesstringCount4true[Migrated Data]The timezone to display dates in.
Note that functionally, this is simply an integer value representing the number of hours to offset from UTC, which dates in the Tableau Server Repository are stored in. This means that it will not necessarily be accurate for timezones with Daylight Savings in place.The name of the Tableau Server instance the datasource is published to. Used to calculate hyperlinks to content.Full URL to the extract refresh or flow run schedules page for the item on Tableau Server.Full URL to view the item on Tableau Server.
The timezone to display dates in.
Note that functionally, this is simply an integer value representing the number of hours to offset from UTC, which dates in the Tableau Server Repository are stored in. This means that it will not necessarily be accurate for timezones with Daylight Savings in place.Date the background task started, in UTC offset by the parameter "TS Extract Jobs Timezone Offset (Hours)".Caveats:
-Does not account for daylight savings time
-Relative date filters should not use this field, or they will not work correctlyDate the background task completed, in UTCDuration of the background task in minutesName of the background job (could also be described as the "type" of background job, e.g. "Increment Extracts" or "Vacuum Database")Date the background task started, in UTC[TS Background Tasks 2019.1 (1) (lokale Kopie)].[sum:Job Duration (Seconds) (copy):qk][TS Background Tasks 2019.1 (1) (lokale Kopie)].[tdy:Calculation_7300619133441268:qk]
Denotes the current state of the background task:
In Progress
Succeeded
FailedDate the background task completed, in UTCDenotes the success or failure of a background task
0 = Success
1 = Failed
Name of the background job (could also be described as the "type" of background job, e.g. "Increment Extracts" or "Vacuum Database")Details operational info or failure information for the background taskDate the background task started, in UTC[TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Job Name:nk][TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Started At:qk][TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Notes:nk]Job Status: ]]>
Started At (Local): ]]>
Number of Tasks Executed: ]]>[TS Background Tasks 2019.1 (1) (lokale Kopie)].[sum:Number of Records:qk][TS Background Tasks 2019.1 (1) (lokale Kopie)].[thr:Started At:qk]
The timezone to display dates in.
Note that functionally, this is simply an integer value representing the number of hours to offset from UTC, which dates in the Tableau Server Repository are stored in. This means that it will not necessarily be accurate for timezones with Daylight Savings in place.The name of the Tableau Server instance the datasource is published to. Used to calculate hyperlinks to content.For extract refresh jobs, this is the LUID of the datasource or workbook being refreshed.
For subscriptions, this is the LUID of the view or workbook subscribed to.
LUIDS are primarily useful for referencing content in the Tableau Server API.Denotes the current state of the background task:
In Progress
Succeeded
FailedDate the background task started, in UTC offset by the parameter "TS Extract Jobs Timezone Offset (Hours)".Caveats:
-Does not account for daylight savings time
-Relative date filters should not use this field, or they will not work correctlyThis is the base URL for items on Tableau Server, used to construct the full URL for all the other hyperlink fields.Date the background task completed, in UTCThis is the Id of the connection for a data source.
Note that this is only used to construct URLs to published data sources (Tableau Server does uses the connection Id rather than the data source Id).Denotes the success or failure of a background task
0 = Success
1 = Failed
Full URL to view the item on Tableau Server.For extract refresh jobs, this is the Id of the datasource or workbook being refreshed.
For subscriptions, this is the Id of the view or workbook subscribed to.For extract refresh jobs, this is the LUID of the datasource or workbook being refreshed.
For subscriptions, this is the LUID of the view or workbook subscribed to.
LUIDS are primarily useful for referencing content in the Tableau Server API.For extract refreshes, this is the name of the datasource or workbook.
For subscriptions, it is the subject entered by the user when they created their subscription.
For everything else, it's the "subtitle" used in the background_jobs table.URL-compatible name used by Tableau Server to uniquely identify a workbook / datasource.Denotes whether the Item is a datasource or a workbook, or what kind of subscription it is.Duration of the background task in minutesName of the background job (could also be described as the "type" of background job, e.g. "Increment Extracts" or "Vacuum Database")Details operational info or failure information for the background taskDate the background task started, in UTCWorkbook Id that the subscription was against. This is populated for subscriptions to both individual views and entire workbooks, primarily so it can be used in hyperlinks.Duration of the background task in Days (useful for Gantt charts)The unique URL name of the site the item exists on.[TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Job Name:nk][TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Started At:qk][TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Notes:nk]Job Status: ]]>
Started At (Local): ]]>
Item Name: ]]>
Duration: minutes]]>
Failure Notes: ]]>[TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Item Name:nk][TS Background Tasks 2019.1 (1) (lokale Kopie)].[none:Calculation_7300619133441268:qk]