JDBC Driver for Tableau CRM Analytics

Build 23.0.8839

データセットの選択

The following sections show how to execute SELECT statements to your Tableau CRM datasets or lenses. See データモデル for information on how the 本製品 models datasets as tables and lenses as views.

Selecting Datasets

Reference the table name of a dataset by adding "Dataset_" as a prefix to the dataset name, as in the following query:

SELECT Id, Name, Item, Quantity, Amount FROM DataSet_Test WHERE Amount = 50
The following query assumes that the dataset has the column names Id, Name, Quantity, and Amount. The dataset may have more columns than what were selected and they can be in any order.

Selecting Lenses

*Note: The Lenses that generate a Compact-Form query, are not supported at this time due to some API restrictions and will not be included in table listing. In order to make them work, currently we have this workaround as solution.

  1. From your dashboard choose LENSES
  2. Open the LENS which is not working and go to "SAQL Mode"
  3. Make a minor update (i.e: a white space in the end of the query)
  4. Save the LENS and wait some seconds for the changes to by applied
  5. After that you should be able to query that LENS

Reference the table name of a lens by adding "Lens_" as a prefix to the lens name, as in the following query.

SELECT Id, Name, Item, Quantity, Amount FROM Lens_Test WHERE Amount = 50
The query above assumes that the lens has the column names Id, Name, Quantity, and Amount. The lens may have more columns than what were selected and they can be in any order.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839