Which has the higher priority in your organization: Deploying a new database or securing the ones you already have?
Looking for a website, and resources, dedicated solely to securing Oracle databases? Check out DBSecWorx.
Purpose
Finds a given object in the cache or (optionally) creates one if one is not found.
Finds a given object in the cache or (optionally) creates one if one is not found
dbms_result_cache_api.get(
key IN VARCHAR2,
value OUT NOCOPY RAW,
isPublic IN NUMBER DEFAULT 0,
noCreate IN NUMBER DEFAULT 0,
noFetch IN NUMBER DEFAULT 0)
RETURN NUMBER;
pragma interface(C, Get);
Finds a given object in the cache or (optionally) creates one if one is not found
dbms_result_cache_api.getc(
key IN VARCHAR2,
value OUT NOCOPY VARCHAR2,
isPublic IN NUMBER DEFAULT 0,
noCreate IN NUMBER DEFAULT 0,
noFetch IN NUMBER DEFAULT 0)
RETURN NUMBER;
pragma interface(C, GetC);