Unable to Access Log tables

Hi , i connected to Mariadb of my erpnext website using: bench --site sitename mariadb from the frappe-bench directory.

I am able to connect to the Mariadb console, but i am unable to access certain tables like : tabAccess Log, tabActivity Log etc.

Could someone help me on this?
Can you tell me how to access the tables…

Hi, would you make your self more clear and tell us what message you got

@Divyush_Raj_A
try
#To see all tables run command as
show tables;
#To access tabe data
select * from tabAccess Log;

table name should be enclosed in ``

1 Like

Hey, thanks much. That helped.