Bir PDF belgesine sahip bir BLOB değişkenini dolduran bir prosedürüm var. Yapmaya çalıştığım şey, PDF belgesini yalnızca statik bir tarihten itibaren 60 günlük bir süre içinde görüntülemek için mantık eklemektir. Aşağıya bakın:ORA-22275 hatası: geçersiz LOB konum belirleyicisi belirtildi
check_staticdate number(1);
function DisplayPDF (audit in number) RETURN blob is
person_id person.person_id%type;
z_lob blob;
blob_length NUMBER;
CURSOR getPDF(audit number) IS
select report
from report_table
where report_type = 'PDF'
and job_no = audit order by rec_no;
begin
/* Check Valid ID */
if not package.ValidID(person_id, check_only=>TRUE) then
return z_lob;
end if;
/* Here is the case statement.*/
select case
when exists
(
SELECT 'x' from table
where table_id = person_id
and trunc(sysdate) < trunc(table_static_date + 60)
)
then 1
else 0
end into check_staticdate
from dual;
if (check_staticdate = 0) then
return z_lob;
end if;
open getPDF(audit);
fetch getPDF into z_lob;
close getPDF;
return z_lob;
end DisplayPDF;
ben alıyorum hatadır: ORA-22275: invalid LOB locator specified.
Ben Oracle SQL için yeni ve z_lob dönerek benim ValidID onay işleri ama benim case ifadesi değil neden emin değilim.
Düzenleme: Ekleme tam hata yığını İşleviniz muhtemelen (sizin audit
parametre değerine bağlı olarak) Gördüğünüz işlenmeyen istisna atar SYS.WPG_DOCLOAD
yöntemine bir NULL değeri olan bir damla dönüyor
Failed to execute target procedure ORA-22275: invalid LOB locator specified
ORA-06512: at "SYS.WPG_DOCLOAD", line 51
ORA-06512: at "User.Package", line 733
ORA-06512: at line 33
ile lob initialism olmak değiştirebilir. Bu yeniden atandı ve yeniden önceliklendirildi. Ancak, cevabınız sonuçta işe yaradı. Teşekkürler! Böyle DBMS_LOB.OPEN' 'birlikte – Phoenix
, - ' DBMS_LOB.CREATETEMPORARY ( lob_loc => z_lob , önbellek => true , dur => dbms_lob.call); DBMS_LOB.OPEN ( lob_loc => z_lob , open_mode => DBMS_LOB.LOB_READWRITE); - ve çalışıyor. – PhistucK