Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Running sql script using phoenix

avatar
Expert Contributor

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
Contributor

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