메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

DBMS PARALLEL EXECUTE 패키지: 편집 역사

DB CAFE

차이 선택: 비교하려는 판의 라디오 버튼을 선택한 다음 엔터나 아래의 버튼을 누르세요.
설명: (최신) = 최신 판과 비교, (이전) = 이전 판과 비교, 잔글= 사소한 편집

2024년 9월 30일 (월)

  • 최신이전 00:462024년 9월 30일 (월) 00:46Dbcafe 토론 기여 1,683 바이트 +1,683 새 문서: == DBMS PARALLEL EXECUTE 패키지 == === .create_chunks_by_rowid 프로시져 === <source lang=sql> declare l_sql varchar2(500); l_chunk_sql varchar2(500); l_task_nm varchar2(50):='k_clearance_1'; l_try number:=0; l_status number; l_count number:=0; begin select count(1) into l_count from user_parallel_execute_tasks where task_name=l_task_nm; --create task if not exist if l_count = 0 then --create task dbms_parall...