Difference between revisions of "Public.getmanagedservicecountfornode (function)"
| (One intermediate revision by the same user not shown) | |||
| Line 2: | Line 2: | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| − | |- | + | |- valign="top" |
| '''Function | | '''Function | ||
| public.getmanagedservicecountfornode | | public.getmanagedservicecountfornode | ||
| − | |||
|} | |} | ||
| − | |||
=== Source === | === Source === | ||
| Line 37: | Line 35: | ||
$function$ | $function$ | ||
</pre> | </pre> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Latest revision as of 10:19, 27 August 2011
wikibot[edit]
| Function | public.getmanagedservicecountfornode |
Source[edit]
CREATE OR REPLACE FUNCTION public.getmanagedservicecountfornode(integer)
RETURNS double precision
LANGUAGE plpgsql
AS $function$
DECLARE
nid ALIAS FOR $1;
orec RECORD;
counter float8;
BEGIN
counter = 0;
FOR orec IN SELECT distinct ifservices.nodeid, ifservices.serviceid, ifservices.ipaddr
FROM ipinterface, ifservices
WHERE ifservices.nodeid = nid
AND ipinterface.nodeid = nid
AND ipinterface.ismanaged = 'M'
AND ifservices.ipaddr = ipinterface.ipaddr
AND ifservices.status = 'A'
LOOP
BEGIN
counter := counter + 1;
END;
END LOOP;
RETURN counter;
END;
$function$