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.
ordimg_pkg.applyWatermark(
s IN OUT ordsys.ordimage,
added_text IN VARCHAR2,
dest IN OUT ordsys.ordimage,
watermark_properties IN ordsys.ord_str_list,
logging OUT VARCHAR2
TBD
Overload 2
ordimg_pkg.applyWatermark(
s IN OUT ordsys.ordimage,
added_image IN OUT ordsys.ordimage,
dest IN OUT ordsys.ordimage,
watermark_properties IN ordsys.ord_str_list,
logging OUT VARCHAR2)
RETURN NUMBER;
TBD
Overload 3
ordimg_pkg.applyWatermark(
src IN BLOB,
added_text IN VARCHAR2,
added_image IN BLOB,
watermark_properties IN ordsys.ord_str_list,
dest IN OUT BLOB,
addnlerrortext OUT VARCHAR2,
logging OUT VARCHAR2)
RETURN NUMBER;
TBD
Overload 4
ordimg_pkg.applyWatermark(
src IN BFILE,
added_text IN VARCHAR2,
added_image IN BFILE,
watermark_properties IN ordsys.ord_str_list,
dest IN OUT BLOB,
addnlerrortext OUT VARCHAR2,
logging OUT VARCHAR2)
RETURN NUMBER;
ordimg_pkg.buildXMLAttributes(
retattributes IN OUT CLOB,
mimetype IN VARCHAR2,
width IN NUMBER,
height IN NUMBER,
fileformat IN VARCHAR2,
contentformat IN VARCHAR2,
compressionformat IN VARCHAR2,
contentlength IN NUMBER,
version IN NUMBER);
DECLARE
ioVar CLOB := 'It is a tale told by an idiot, Full of sound and fury, Signifying a NULL condition';
BEGIN
ordsys.ordimg_pkg.freeTempLOB(ioVar);
dbms_output.put_line(ioVar);
END;
/
DECLARE
*
ERROR at line 1:
ORA-06598: insufficient INHERIT PRIVILEGES privilege
ORA-06512: at "ORDSYS.ORDIMG_PKG", line 1
ORA-06512: at line 4
ordimg_pkg.getHeaderlessInfo(
fileformat IN VARCHAR2,
height IN NUMBER,
width IN NUMBER,
compressionformat IN VARCHAR2,
contentformat IN VARCHAR2,
info OUT VARCHAR2);
ordimg_pkg.getImageProperties(
content IN BLOB,
height OUT NUMBER,
width OUT NUMBER,
contentlength OUT NUMBER,
fileformat OUT VARCHAR2,
contentformat OUT VARCHAR2,
compressionformat OUT VARCHAR2,
mimetype OUT VARCHAR2,
addnlerrortext OUT VARCHAR2)
RETURN NUMBER;
TBD
Overload 2
ordimg_pkg.getImageProperties(
content IN BFILE,
height OUT NUMBER,
width OUT NUMBER,
contentlength OUT NUMBER,
fileformat OUT VARCHAR2,
contentformat OUT VARCHAR2,
compressionformat OUT VARCHAR2,
mimetype OUT VARCHAR2,
addnlerrortext OUT VARCHAR2)
RETURN NUMBER;
ordimg_pkg.getMetadata(
imageblob IN BLOB,
metadatatype IN VARCHAR2,
meta1 IN OUT CLOB,
meta2 IN OUT CLOB,
meta3 IN OUT CLOB,
errortext OUT VARCHAR2)
RETURN NUMBER;
TBD
Overload 2
ordimg_pkg.getMetadata(
imagebfile IN BFILE,
metadatatype IN VARCHAR2,
meta1 IN OUT CLOB,
meta2 IN OUT CLOB,
meta3 IN OUT CLOB,
errortext OUT VARCHAR2)
RETURN NUMBER;
ordimg_pkg.largeImageConvert(
command IN VARCHAR2,
headerlessinfo IN VARCHAR2,
src IN BLOB,
dest IN OUT BLOB,
addnlerrortext OUT VARCHAR2)
RETURN NUMBER;
TBD
Overload 2
ordimg_pkg.largeImageConvert(
command IN VARCHAR2,
headerlessinfo IN VARCHAR2,
src IN BFILE,
dest IN OUT BLOB,
addnlerrortext OUT VARCHAR2)
RETURN NUMBER;
ordimg_pkg.ordimgb_applyWatermark(
src IN BLOB,
added_text IN VARCHAR2,
dest IN OUT BLOB,
watermark_properties IN ordsys.ord_str_list,
logging OUT VARCHAR2)
RETURN BINARY_INTEGER;
TBD
Overload 2
ordimg_pkg.ordimgb_applyWatermark(
src IN BLOB,
added_image IN BLOB,
dest IN OUT BLOB,
watermark_properties IN ordsys.ord_str_list,
logging OUT VARCHAR2)
RETURN BINARY_INTEGER;
ordimg_pkg.ordimgb_setProperties(
content IN BLOB,
height OUT BINARY_INTEGER,
width OUT BINARY_INTEGER,
contentlength OUT NUMBER,
fileformat OUT VARCHAR2,
contentformat OUT VARCHAR2,
compressionformat OUT VARCHAR2,
mimetype OUT VARCHAR2)
RETURN BINARY_INTEGER;
ordimg_pkg.ordimgf_applyWatermark(
src IN BFILE,
added_text IN VARCHAR2,
dest IN OUT BLOB,
watermark_properties IN ordsys.ord_str_list,
logging OUT VARCHAR2)
RETURN BINARY_INTEGER;
TBD
Overload 2
ordimg_pkg.ordimgf_applyWatermark(
src IN BFILE,
added_image IN BFILE,
dest IN OUT BLOB,
watermark_properties IN ordsys.ord_str_list,
logging OUT VARCHAR2)
RETURN BINARY_INTEGER;
ordimg_pkg.ordimgf_setProperties(
content IN BFILE,
height OUT BINARY_INTEGER,
width OUT BINARY_INTEGER,
contentlength OUT NUMBER,
fileformat OUT VARCHAR2,
contentformat OUT VARCHAR2,
compressionformat OUT VARCHAR2,
mimetype OUT VARCHAR2)
RETURN BINARY_INTEGER;
ordimg_pkg.ordimg_headerlessSetProperties(
description IN VARCHAR2,
height OUT NUMBER,
width OUT NUMBER,
fileformat OUT VARCHAR2,
contentformat OUT VARCHAR2,
compressionformat OUT VARCHAR2,
mimetype OUT VARCHAR2,
addnlerrortext OUT VARCHAR2)
RETURN NUMBER;
ordimg_pkg.putMetadata(
imageblob IN BLOB,
dest IN OUT BLOB,
xmldata IN CLOB,
metadatatype IN VARCHAR2,
encoding IN VARCHAR2,
errortext OUT VARCHAR2,
RETURN NUMBER;
TBD
Overload 2
ordimg_pkg.putMetadata(
imagebfile IN BFILE,
dest IN OUT BLOB,
xmldata IN CLOB,
metadatatype IN VARCHAR2,
encoding IN VARCHAR2,
errortext OUT VARCHAR2)
RETURN NUMBER;
exec ordsys.ordimg_pkg.setDebugLevel(1);
BEGIN ordsys.ordimg_pkg.setDebugLevel(1); END;
*
ERROR at line 1:
ORA-06598: insufficient INHERIT PRIVILEGES privilege
ORA-06512: at "ORDSYS.ORDIMG_PKG", line 1
ORA-06512: at line 1