plpgsql raise notice

Solutions on MaxInterview for plpgsql raise notice by the best coders in the world

showing results for - "plpgsql raise notice"
Marilou
15 Oct 2016
1RAISE INFO 'Hello World !';
2RAISE NOTICE '%', variable_name;
3RAISE NOTICE 'Current value of parameter (%)', my_var;
4RAISE EXCEPTION '% cannot have null salary', EmpName;
5
Christian
12 Apr 2016
1RAISE NOTICE 'Calling cs_create_job(%)', v_job_id;