Skip to content

Instantly share code, notes, and snippets.

View Guust-Franssens's full-sized avatar

Guust Franssens Guust-Franssens

View GitHub Profile
@Guust-Franssens
Guust-Franssens / Meridian_Custom_SQL_Databricks.tds
Last active August 19, 2026 12:54
Minimal Snowflake CUSTOM SQL .tds fixture reproducing tableau-fabric-skills#162 on engine 2.208.0 - synthetic data, no credentials
<?xml version='1.0' encoding='UTF-8'?>
<!-- build 20262.26.0804.1806 --><datasource xmlns:user="http://www.tableausoftware.com/xml/user" formatted-name="Meridian Trips (Live Databricks)" inline="true" source-platform="win" version="18.1" xml:base="https://10ax.online.tableau.com">
<document-format-change-manifest>
<DatabricksCatalog/>
</document-format-change-manifest>
<repository-location id="MeridianTripsLiveDatabricks" path="/t/fabric-migration-lab/datasources" revision="5.0" site="fabric-migration-lab"/>
@Guust-Franssens
Guust-Franssens / Shipping Industry Example_10.0.twb
Created August 18, 2026 18:23
Tableau public sample workbook (metadata-only .twb, no data) - source for tableau-fabric-skills issue #142, worksheet 'Profitability Details'
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20261.26.0512.1609 -->
<workbook source-build='2023.1.0 (20231.23.0320.2007)' upgrade-extracts='true' version='10.0' xml:base='https://localhost:8080' xmlns:user='http://www.tableausoftware.com/xml/user'>
<repository-location derived-from='https://public.tableau.com/workbooks/ShippingIndustryExample_10_0?rev=1.1' id='ShippingIndustryExample_10_0' path='/workbooks' revision='1.1' />
<preferences>
<preference name='swatch.dark.eighthcol.fifthrow' value='#3abcc1' />
<preference name='swatch.dark.eighthcol.firstrow' value='#8c6882' />
<preference name='swatch.dark.eighthcol.fourthrow' value='#00a2a5' />
<preference name='swatch.dark.eighthcol.secondrow' value='#b08ba8' />
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Guust-Franssens
Guust-Franssens / tableau_project.sql
Last active October 21, 2022 07:37
Recursive Tableau project query
/*
This query returns all projects, and under which "root" project they lie.
You can adapt the "project link" so that you have an URL that points to the project.
You can combine this query with for example workbooks to find out under which root project the workbook is located.
*/
WITH RECURSIVE recur_folder_structure AS
(
SELECT s.id AS "project site id",
s.name AS "project site name",