DBA Data[Home] [Help]

APPS.AD_ZD_PREP dependencies on DBMS_SERVICE

Line 298: dbms_service.create_service(c_patch_service, c_patch_service);

294: where upper(name)=upper(c_patch_service);
295:
296: if l_exists = 0 then
297: log(l_module, 'EVENT', 'Creating ' || c_patch_service || ' database service');
298: dbms_service.create_service(c_patch_service, c_patch_service);
299: end if;
300:
301: -- start patch service if needed
302: select count(service_id) into l_exists

Line 308: dbms_service.start_service(c_patch_service);

304: where name=c_patch_service;
305:
306: if l_exists = 0 then
307: log(l_module, 'EVENT', 'Starting ' || c_patch_service || ' database service');
308: dbms_service.start_service(c_patch_service);
309: end if;
310: log(l_module, 'PROCEDURE', 'end');
311: end CREATE_PATCH_SERVICE;
312: