1

I want to find that what procedure I have defined before, so how can I list all procedures in voltdb?

which cmd should I use?

roger
  • 9,063
  • 20
  • 72
  • 119

2 Answers2

1

You can browse the procedures in the VoltDB Management Console web interface, or in sqlcmd you can use the command "list procedures".

BenjaminBallard
  • 1,482
  • 12
  • 11
0
show procedures;

Bottom you will see > User Procedures

Later you can delete drop procedure <Name>

Kernelv5
  • 1,732
  • 1
  • 10
  • 17