Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » BIRT database user access
BIRT database user access [message #881874] Tue, 05 June 2012 12:08 Go to next message
Daniel C is currently offline Daniel CFriend
Messages: 4
Registered: June 2012
Junior Member
Hi guys,
I have a dataset which calls a procedure in the oracle database to access user@client, query as follows -

{call SI0WPR_SET_IDENTIFIER (?,?,?)}

where it takes a user, client and desc_client (output).

database procedure -

PROCEDURE "PE0WPR_SET_IDENTIFIER" ( in_userId varchar2 ,in_client varchar2 ,description out varchar2 ) AS

BEGIN

dbms_session.set_identifier(in_userId||'@'||in_client);

select distinct desc_client into description from sipe0wclienti where cod_client=in_client;


END PE0WPR_SET_IDENTIFIER;


The problem is that this method is not very efficient when i try to access tables through dynamic report parameters (lists) as it needs to access the dataset before executing the dynamic parameter.

Is there any way to pull this procedure into reportContext and initialise the report with the user access already granted to the database?

Thanks

Re: BIRT database user access [message #881916 is a reply to message #881874] Tue, 05 June 2012 13:40 Go to previous message
Russell Bateman is currently offline Russell BatemanFriend
Messages: 3798
Registered: July 2009
Location: Provo, Utah, USA
Senior Member

On 6/5/2012 6:08 AM, Daniel Cocchieri wrote:
> Hi guys,

There's a dedicated Eclipse BIRT forum.
Previous Topic:how to get "run as ant build" back
Next Topic:No way I can get SWT to work.
Goto Forum:
  


Current Time: Fri Apr 26 05:30:22 GMT 2024

Powered by FUDForum. Page generated in 0.07651 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top