Hi,
I need to copy LONG RAW value from one table to another.
I get ORA-06502 PL/SQL: numeric or value error
What is wrong here?
Thank you all.
Leah
-------------------------
declare
v_IMAGE long raw;
begin
SELECT IMAGE
INTO v_IMAGE
FROM IMAGES
WHERE IMAGE_ID = 4;
UPDATE...
Hello,
What I’m missing in the following:
PROCEDURE proc(
p_var1 IN varchar2,
…
p_cur In OUT cur_type)
IS
lnCursor INTEGER;
lnDummy INTEGER;
lvcSql VARCHAR2(2000);
v_where varchar2(1000);
BEGIN
--v_where...
I've solved it not basing on table. Unfortunately, last name is not included in "main" base table which contains details, linked by person id. It's not necessarily 1:1, it's possible to see same Last name several times, if it has many detail rows.
Hello,
Does somebody know if it's possible to do in Forms 4.5 the following:
On the left part of the screen we should see the list of people ordered by Last name. Last names come from a view (not-updateable, Oracle 7). On the right part against each person we should see a row of his details...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.