Created 08-29-2017 08:40 AM
I want to drop few phoenix table in using a sqlline.py.
Can I write a drop_table.hql and exeucte in phoenix shell ?
Created 08-29-2017 08:58 AM
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
Created 08-29-2017 06:26 PM
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