Fehlerbehebung nach OCI Bucket einrichtung bei list_objects und entsprechende doku

This commit is contained in:
2026-04-10 12:13:05 +02:00
parent 6c8b5053e2
commit 7921b1ae0d
3 changed files with 57 additions and 50 deletions

View File

@@ -1,5 +1,11 @@
create or replace package pck_net_storage as
-- Object Key aufgeteilt in Pfad (ohne Dateiname) und Dateiname (ohne Ordner Pfad)
type t_object_path is record (
path varchar2(4000)
,filename varchar2(256)
);
-- Metadaten eines einzelnen OCI-Objekts (HEAD-Anfrage)
type t_object_meta is record (
object_name varchar2(1024)
@@ -9,9 +15,13 @@ create or replace package pck_net_storage as
,etag varchar2(256)
);
function f_split_object_key (
i_object_key in varchar2
) return t_object_path;
function f_list_objects (
i_prefix in varchar2
,i_delimiter in varchar2 default '/'
,i_delimiter in varchar2 default null
,i_start_with in varchar2 default null
,i_limit in number default 0
) return t_net_storage_tab;