mauzer
03/30/2022, 9:25 AMthisOldDave
03/30/2022, 10:01 AMselect n.nspname as schema,
p.proname as procedure
from pg_proc p
join pg_namespace n on p.pronamespace = n.oid
where n.nspname not in ('pg_catalog', 'information_schema')
mauzer
03/30/2022, 10:09 AMthisOldDave
03/30/2022, 10:12 AMmauzer
03/30/2022, 10:14 AMmauzer
03/30/2022, 10:15 AMmauzer
03/30/2022, 10:15 AMmauzer
03/30/2022, 10:15 AMmauzer
03/30/2022, 10:16 AMmauzer
03/30/2022, 10:16 AMthisOldDave
03/30/2022, 10:17 AMmauzer
03/30/2022, 10:18 AMmauzer
03/30/2022, 10:19 AMthisOldDave
03/30/2022, 10:19 AMupper()
mauzer
03/30/2022, 10:20 AMmauzer
03/30/2022, 10:21 AMmauzer
03/30/2022, 10:21 AMthisOldDave
03/30/2022, 10:25 AMABC
thisOldDave
03/30/2022, 10:26 AMmauzer
03/30/2022, 10:28 AMmauzer
03/30/2022, 10:28 AMmauzer
03/30/2022, 10:28 AMmauzer
03/30/2022, 10:28 AMthisOldDave
03/30/2022, 10:30 AMmauzer
03/30/2022, 10:31 AMmauzer
03/30/2022, 10:31 AMmauzer
03/30/2022, 10:31 AMthisOldDave
03/30/2022, 10:31 AM<cfprocresult name="qResults">
mauzer
03/30/2022, 10:32 AMmauzer
03/30/2022, 10:33 AMmauzer
03/30/2022, 10:35 AMthisOldDave
03/30/2022, 10:35 AMmauzer
03/30/2022, 10:36 AMhttps://files.slack.com/files-pri/T06T9JEE9-F038VK5U2TZ/image.pngâ–ľ
mauzer
03/30/2022, 10:36 AMmauzer
03/30/2022, 10:36 AMmauzer
03/30/2022, 10:37 AMmauzer
03/30/2022, 10:38 AMthisOldDave
03/30/2022, 10:43 AMmauzer
03/30/2022, 10:51 AMthisOldDave
03/30/2022, 10:52 AMmauzer
03/30/2022, 10:52 AMmauzer
03/30/2022, 10:53 AMmauzer
03/30/2022, 10:53 AMthisOldDave
03/30/2022, 10:54 AMmauzer
03/30/2022, 10:56 AMmauzer
03/30/2022, 10:56 AMmauzer
03/30/2022, 10:56 AMthisOldDave
03/30/2022, 10:58 AMmauzer
03/30/2022, 10:58 AMthisOldDave
03/30/2022, 12:25 PMmjclemente
03/30/2022, 12:29 PMmjclemente
03/30/2022, 12:32 PMmjclemente
03/30/2022, 12:33 PMletskillowen
03/30/2022, 12:54 PMmauzer
03/30/2022, 1:02 PMmauzer
03/30/2022, 1:03 PMmauzer
03/30/2022, 1:04 PMmauzer
03/30/2022, 1:05 PMletskillowen
03/30/2022, 1:06 PMthisOldDave
03/30/2022, 1:06 PMSELECT spgetaoid('foo');
mauzer
03/30/2022, 1:10 PMmauzer
03/30/2022, 1:11 PMmauzer
03/30/2022, 1:20 PMletskillowen
03/30/2022, 2:56 PMcreate or replace procedure
did you also remove the function or do you now have both a function and a procedure of the same name? having both, probably not good.
you also said you could execute the procedure (it was a function for clarity) directly from some app to postgres and it was fine. have you also tried just throwing that same syntax into a queryExecute()
in cf and seen if it ran fine?letskillowen
03/30/2022, 2:57 PMSELECT spgetaoid('foo');
is not how you would call a stored proc but how one would call a function within a select statementmauzer
03/30/2022, 3:17 PM