Hi!
I'm using stored procedure to my report. When I look on Show SQL I found something like this:
BEGIN
"MY_USER"."MY_PROCEDURE"();
END ;
Everything wolud by OK except this username before my procedure's name. When I logon to my database as differnt user, raport still call MY_USER.MY_PROCEDURE() - how disable this schema user before procedure name ? I want obtain something like this:
BEGIN
"MY_PROCEDURE"();
END ;
I'm using CR XI and Oracle 8i
I'm using stored procedure to my report. When I look on Show SQL I found something like this:
BEGIN
"MY_USER"."MY_PROCEDURE"();
END ;
Everything wolud by OK except this username before my procedure's name. When I logon to my database as differnt user, raport still call MY_USER.MY_PROCEDURE() - how disable this schema user before procedure name ? I want obtain something like this:
BEGIN
"MY_PROCEDURE"();
END ;
I'm using CR XI and Oracle 8i