Skip to main content



      Home
Home » Archived » BIRT » thin JDBC to large DB
thin JDBC to large DB [message #144620] Thu, 16 March 2006 12:46 Go to next message
Eclipse UserFriend
We are using a thin JDBC connection to setup BIRT datasources & datasets to
an Oracle datawarehouse that has a large # of users (14K+), and lots of
tables (4.7K+)...(and lots of table-cols, of course...41K+)

The problem is that the DataSet Editor either:
1. takes forever, and/or
5. uses all available memory
....apparently querying/loading every schema and/or table/view and/or column
in the instance.

Does anyone have a suggestion of how we might be able to handle this better?

P.S. We have no problems connecting to smaller instances.
Re: thin JDBC to large DB [message #145721 is a reply to message #144620] Fri, 17 March 2006 16:43 Go to previous messageGo to next message
Eclipse UserFriend
I suggest that you file a Bugzilla bug for this issue.

thanks,

--
Gary Xue
Actuate Corporation - Product Development
BIRT Committer
"BITBURNER" <rileymg@indiana.edu> wrote in message
news:dvc8eo$p6$1@utils.eclipse.org...
> We are using a thin JDBC connection to setup BIRT datasources & datasets
to
> an Oracle datawarehouse that has a large # of users (14K+), and lots of
> tables (4.7K+)...(and lots of table-cols, of course...41K+)
>
> The problem is that the DataSet Editor either:
> 1. takes forever, and/or
> 5. uses all available memory
> ...apparently querying/loading every schema and/or table/view and/or
column
> in the instance.
>
> Does anyone have a suggestion of how we might be able to handle this
better?
>
> P.S. We have no problems connecting to smaller instances.
>
>
Re: thin JDBC to large DB [message #145793 is a reply to message #144620] Sat, 18 March 2006 18:50 Go to previous messageGo to next message
Eclipse UserFriend
We have exactly the same problem with a much smaller db. If you find a
solution let me know.

Birt.

"BITBURNER" <rileymg@indiana.edu> wrote in message
news:dvc8eo$p6$1@utils.eclipse.org...
> We are using a thin JDBC connection to setup BIRT datasources & datasets
> to an Oracle datawarehouse that has a large # of users (14K+), and lots of
> tables (4.7K+)...(and lots of table-cols, of course...41K+)
>
> The problem is that the DataSet Editor either:
> 1. takes forever, and/or
> 5. uses all available memory
> ...apparently querying/loading every schema and/or table/view and/or
> column in the instance.
>
> Does anyone have a suggestion of how we might be able to handle this
> better?
>
> P.S. We have no problems connecting to smaller instances.
>
>
Re: thin JDBC to large DB [message #149303 is a reply to message #145793] Wed, 29 March 2006 12:14 Go to previous messageGo to next message
Eclipse UserFriend
So far, we are having to use the sun jdbc/odbc bridge ...which we are not
happy about because Oracle/odbc will be a real pain to have to rollout to
our users (...and to support it!).

"birt" <birt@ohds.co.uk> wrote in message
news:dvi6ba$eqk$1@utils.eclipse.org...
> We have exactly the same problem with a much smaller db. If you find a
> solution let me know.
>
> Birt.
>
> "BITBURNER" <rileymg@indiana.edu> wrote in message
> news:dvc8eo$p6$1@utils.eclipse.org...
>> We are using a thin JDBC connection to setup BIRT datasources & datasets
>> to an Oracle datawarehouse that has a large # of users (14K+), and lots
>> of tables (4.7K+)...(and lots of table-cols, of course...41K+)
>>
>> The problem is that the DataSet Editor either:
>> 1. takes forever, and/or
>> 5. uses all available memory
>> ...apparently querying/loading every schema and/or table/view and/or
>> column in the instance.
>>
>> Does anyone have a suggestion of how we might be able to handle this
>> better?
>>
>> P.S. We have no problems connecting to smaller instances.
>>
>>
>
>
Re: thin JDBC to large DB [message #149328 is a reply to message #149303] Wed, 29 March 2006 17:42 Go to previous messageGo to next message
Eclipse UserFriend
Please let me know when you have the Bugzilla entry in, I would like to
track on this one.

Scott Rosenbaum
BIRT PMC

BITBURNER wrote:
> So far, we are having to use the sun jdbc/odbc bridge ...which we are not
> happy about because Oracle/odbc will be a real pain to have to rollout to
> our users (...and to support it!).
>
> "birt" <birt@ohds.co.uk> wrote in message
> news:dvi6ba$eqk$1@utils.eclipse.org...
>> We have exactly the same problem with a much smaller db. If you find a
>> solution let me know.
>>
>> Birt.
>>
>> "BITBURNER" <rileymg@indiana.edu> wrote in message
>> news:dvc8eo$p6$1@utils.eclipse.org...
>>> We are using a thin JDBC connection to setup BIRT datasources & datasets
>>> to an Oracle datawarehouse that has a large # of users (14K+), and lots
>>> of tables (4.7K+)...(and lots of table-cols, of course...41K+)
>>>
>>> The problem is that the DataSet Editor either:
>>> 1. takes forever, and/or
>>> 5. uses all available memory
>>> ...apparently querying/loading every schema and/or table/view and/or
>>> column in the instance.
>>>
>>> Does anyone have a suggestion of how we might be able to handle this
>>> better?
>>>
>>> P.S. We have no problems connecting to smaller instances.
>>>
>>>
>>
>
>
Re: thin JDBC to large DB [message #192492 is a reply to message #149328] Mon, 25 September 2006 17:36 Go to previous message
Eclipse UserFriend
This bottleneck occurs when you have a lot of users defined to your Oracle
DB. We were able to get around the problem by creating a view (under ea. of
our own schemas) of sys.all_users that selects only a small sub-set of
Oracle users:


CREATE VIEW ALL_USERS AS
select *
from sys.all_users where username in ('SOURCE1','SOURCE2' ,'SOURCE2')


....A bit clumsy, but it works for us until BIRT optimizes the way the use
this Oracle table in the query tool.


"Scott Rosenbaum" <scottr@innoventsolutions.com> wrote in message
news:e0f2g7$is0$1@utils.eclipse.org...
> Please let me know when you have the Bugzilla entry in, I would like to
> track on this one.
>
> Scott Rosenbaum
> BIRT PMC
>
> BITBURNER wrote:
>> So far, we are having to use the sun jdbc/odbc bridge ...which we are not
>> happy about because Oracle/odbc will be a real pain to have to rollout to
>> our users (...and to support it!).
>>
>> "birt" <birt@ohds.co.uk> wrote in message
>> news:dvi6ba$eqk$1@utils.eclipse.org...
>>> We have exactly the same problem with a much smaller db. If you find a
>>> solution let me know.
>>>
>>> Birt.
>>>
>>> "BITBURNER" <rileymg@indiana.edu> wrote in message
>>> news:dvc8eo$p6$1@utils.eclipse.org...
>>>> We are using a thin JDBC connection to setup BIRT datasources &
>>>> datasets to an Oracle datawarehouse that has a large # of users (14K+),
>>>> and lots of tables (4.7K+)...(and lots of table-cols, of course...41K+)
>>>>
>>>> The problem is that the DataSet Editor either:
>>>> 1. takes forever, and/or
>>>> 5. uses all available memory
>>>> ...apparently querying/loading every schema and/or table/view and/or
>>>> column in the instance.
>>>>
>>>> Does anyone have a suggestion of how we might be able to handle this
>>>> better?
>>>>
>>>> P.S. We have no problems connecting to smaller instances.
>>>>
>>>>
>>>
>>
Previous Topic:Is this possible with the birt charting engine?
Next Topic:Expression Question
Goto Forum:
  


Current Time: Sat May 10 01:03:14 EDT 2025

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

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

Back to the top