Hi, Depending of what do you do in the store procedure you could , 1- Write a sql 2- Write a external procedure 3- Write a Udf or Udx. The documentation explains number 2 and 3. Hope this helps, Eugenia
Hi, In Vertica the STORED PROC is a bit different concept than other databases. Vertica creates the STORED PROC ( CREATE PROCEDURE ...) as an object in database but the code behind is a .sh file ( shell script) which is invoked when you run the STORED PROC from database. For details, see the documentation.
In case of a 3-tier programming structure, where the DB layer is usually based on top of Stored Procedures to be run as functions. How is the recommend approach?
Comments