0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Tableau blueprint重要だな〜と思ったことまとめ

Posted at

Tableau bleuprintで大事だなと思ったことまとめ
URL
https://help.tableau.com/current/offline/ja-jp/tableau_blueprint.pdf

SELECT
s.name AS site_name,
COALESCE(SUM(w.size), 0) AS total_workbook_size,
COALESCE(SUM(d.size), 0) AS total_datasource_size,
COALESCE(SUM(w.size), 0) + COALESCE(SUM(d.size), 0) AS total_storage_size
FROM sites s
LEFT JOIN workbooks w ON s.id = w.site_id
LEFT JOIN datasources d ON s.id = d.site_id
GROUP BY s.name
ORDER BY total_storage_size DESC;

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?