Expand my Community achievements bar.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.
SOLVED

set drop_system_columns not working

Avatar

Level 4

this from https://experienceleague.adobe.com/en/docs/experience-platform/query/use-cases/data-exploration

it says that set drop_system_columns=false;

would show metadata columns _acp_system_metadata and _ACP_BATCHID

 

when i run below query, it works fine
select * from datasetName

 

but when i run this query,
set drop_system_columns=false;
select * from datasetName

 

it give me following error
Cannot read properties of undefined (reading 'map')

 

datasetName really dont have any field with dataType map.

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 4

Finally i found the wok around syntax, as document is slightly misleading

 

select _acp_system_metadata.*, * from datasetName

give me those hidden column in the output

View solution in original post

4 Replies

Avatar

Level 3

@Pradeep-Jaiswal ,

If you check the logs of Query Services, you will see that this is not an error. The result has been successfully returned to the client.

 

It is unclear whether this is a limitation of AEP Query Services, but the same results can be fetched using a Python script or DB Visualizer.

 

The document which you are referring also has screenshots from DB Visualizer.

Avatar

Level 4

which API to be used to get the adhock query response using python ?

Avatar

Administrator

Hi @mustufam5967803,

Can you please help @Pradeep-Jaiswal further with their follow-up query?

Thanks!



Sukrity Wadhwa

Avatar

Correct answer by
Level 4

Finally i found the wok around syntax, as document is slightly misleading

 

select _acp_system_metadata.*, * from datasetName

give me those hidden column in the output