Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Obter todos os registros de um cursor de referência em um pacote


Assumindo CpuReporting é o nome do pacote, você gostaria de algo como
DECLARE
  l_cursor CpuReporting.CurGridUsage;
  l_rec    CpuReporting.RecGridUsage;
BEGIN
  l_cursor := CpuReporting.getGridUsage( 300 );
  LOOP
    FETCH l_cursor INTO l_rec;
    EXIT WHEN l_cursor%notfound;

    -- Do something with l_rec.  As an example, print the Environment
    dbms_output.put_line( l_rec.Environment );
  END LOOP;

  CLOSE l_cursor;
END;