4

I have created some test tables in WSO2-DataAnalyticsServer-3.0.1 by these steps:
Edit Event>Streams>Next[presistEvent]
then enable Persist Event Stream and Save.
This made a table which is showing on InteractiveAnalytics>Data Explorer. I want to remove this table but I do not how and where I should do this.

Reza Ameri
  • 1,803
  • 3
  • 24
  • 32

1 Answers1

5

You can delete such tables using the analytics data backup / restore tool.

To delete the tables use the below command by replacing the table names that you want to delete under -tables for example I have set it as table1,table2. Run this command after navigating to WSO2_DAS_HOME/bin folder,

./analytics-backup.sh -deleteTables -tables "table1,table2" -tenantId -1234

this will delete the two tables, table1 & table2.

jdk1.7
  • 166
  • 1
  • 9