Oracle
 sql >> Base de données >  >> RDS >> Oracle

Obtenir tous les enregistrements d'un curseur de référence dans un package

En supposant CpuReporting est le nom du paquet, vous voudriez quelque chose comme

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;