Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
JustinDallas
Specialist III
Specialist III

Do Field Tags Get Stored in A QVD

Hello Folks,

Do Field Tags, https://help.qlik.com/en-US/sense/August2021/Subsystems/Hub/Content/Sense_Hub/Scripting/field-tags.h... get saved when a table is saved to a QVD?

 

Sincerely,

  Justin Dallas

Labels (1)
1 Solution

Accepted Solutions
JustinDallas
Specialist III
Specialist III
Author

The tags are in fact saved down with the QVD

Example Script:

TestTable:
LOAD 
Date#('YYYY-MM-DD', [Release Date String]) AS 'Release Date',
Studio,
[Production Name]
;
LOAD * Inline [
	'Studio', 'Production Name', 'Release Date String'
    'Netflix' , 'The Witcher', '2019-12-20'
    'HBO', 'The Sopranos', '1999-01-10'
]
;
Tag Field [Release Date] with 'Release Date Tag'
;
Tag Field Studio with 'Studio Tag'
;
Tag Field [Production Name] with 'Production Name Tag'
;

STORE TestTable into [lib://Qlik Data (dts_qlikservice)/07.Scratch/TestTable.qvd] (qvd);
DROP Table TestTable
;

TestTableReloaded:
LOAD * 
FROM [lib://Qlik Data (dts_qlikservice)/07.Scratch/TestTable.qvd] (qvd)
;

EXIT Script
;

 

Proof:

2021-12-22 01_51_40-Workbench _ Data model viewer - Qlik Sense.png

View solution in original post

1 Reply
JustinDallas
Specialist III
Specialist III
Author

The tags are in fact saved down with the QVD

Example Script:

TestTable:
LOAD 
Date#('YYYY-MM-DD', [Release Date String]) AS 'Release Date',
Studio,
[Production Name]
;
LOAD * Inline [
	'Studio', 'Production Name', 'Release Date String'
    'Netflix' , 'The Witcher', '2019-12-20'
    'HBO', 'The Sopranos', '1999-01-10'
]
;
Tag Field [Release Date] with 'Release Date Tag'
;
Tag Field Studio with 'Studio Tag'
;
Tag Field [Production Name] with 'Production Name Tag'
;

STORE TestTable into [lib://Qlik Data (dts_qlikservice)/07.Scratch/TestTable.qvd] (qvd);
DROP Table TestTable
;

TestTableReloaded:
LOAD * 
FROM [lib://Qlik Data (dts_qlikservice)/07.Scratch/TestTable.qvd] (qvd)
;

EXIT Script
;

 

Proof:

2021-12-22 01_51_40-Workbench _ Data model viewer - Qlik Sense.png