Support Questions

Find answers, ask questions, and share your expertise
Announcements
Welcome to the upgraded Community! Read this blog to see What’s New!

Running sql script using phoenix

avatar
Rising Star

I want to drop few phoenix table in using a sqlline.py.

Can I write a drop_table.hql and exeucte in phoenix shell ?

2 REPLIES 2

avatar
Cloudera Employee

You should be able to drop table using phoenix sqlline. https://phoenix.apache.org/language/#drop_table

sqlline.py hostname.com /location/of/file/drop_table.sql

avatar
Super Collaborator

As @ssattiraju mentioned you may use a file with commands providing it as a command line parameter. One quick note - if one of the commands fail, the script will stop executing. To avoid it you may use just simple redirect like:

phoenix-sqlline localhost < file.sql
Labels