내 커뮤니티 업적 표시줄을 확대합니다.

해결됨

set drop_system_columns not working

Avatar

Level 6

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.

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 6

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

원본 게시물의 솔루션 보기

4 답변 개

Avatar

Level 4

@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 6

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

정확한 답변 작성자:
Level 6

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