Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
04-10-2021 04:42 AM
Dear Community Member,
I want to know what queries hit the Neo4j when front end application is trying to create or update record from UI.
Generally in Oracle i get to know the activities performed on DB using following Query, is there anything similar in Neo4j:
select v.SQL_TEXT,
v.PARSING_SCHEMA_NAME,
v.FIRST_LOAD_TIME,
v.DISK_READS,
v.ROWS_PROCESSED,
v.ELAPSED_TIME,
v.service
from v$sql v
where to_date(v.FIRST_LOAD_TIME,'YYYY-MM-DD hh24:mi:ss')>ADD_MONTHS(trunc(sysdate,'MM'),-1) order by v.FIRST_LOAD_TIME desc;
If we do not have exposure to code logic and try to understand the query run while using the Front End Application above query comes handy.
04-10-2021 07:12 AM
Hi There
Please refer to cypher syntax card below for more details
https://neo4j.com/docs/cypher-refcard/current/
After reading that may be you will find something that matches your needs
Thanking You
Yours Sincerely
Sameer G
04-11-2021 07:53 AM
you might want to consider Query management - Operations Manual though this requires running stored procedures so as to see what is running at the time the stored proc is run.
Further, if his is Neo4j Enterprise see Logging - Operations Manual
All the sessions of the conference are now available online