
Partner - Contributor III
2019-04-03
10:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Loading a JSON file in QlikSese
Hello,
I 'm trying to load into the script a JSON file that is really large. It has more than 10 million lenght so..
I couldn't find a doable way to set it correctly
If anyone knows how to do it, please, I appreciate it.
Thanks in advance,
Fukumoto.
1,945 Views
3 Replies


Partner - Specialist III
2019-04-09
08:56 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi, I've recenntly found out a way to parse a JSON string into a table. Check the sample code:
Table: load '[ { "date": "2019-04-04", "agency": "aaa", "revenue": 55 }, { "date": "2019-04-04", "agency": "bbb", "revenue": 45 }, { "date": "2019-04-03", "agency": "aaa", "revenue": 52 }, { "date": "2019-04-03", "agency": "bbb", "revenue": 42 } ]' as JSON AutoGenerate (1); load * FROM_FIELD (Table, JSON) (json, utf8, no labels); drop table Table;
Hope this helps.

Partner - Contributor III
2019-04-11
06:54 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Fosuzuki,
Thank you, I'll try it and let you know if it worked!
Thanks,
Fukumoto.
Thank you, I'll try it and let you know if it worked!
Thanks,
Fukumoto.
1,905 Views

Creator
2023-09-26
10:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I get the following error when I use the From_Field function:
This is my code:
Any help is appreciated!
599 Views
