Author Topic: Limit on number of databases?  (Read 626 times)

Offline laks

  • Full Member
  • ***
  • Posts: 20
  • Forum Citizenship: +0/-0
Limit on number of databases?
« on: 18 Aug 2010 11:31:23 pm »
Hi Folks,

I would like to know is there any limit on number of databases a FM Model can connect. We have a new requirement to get data from over 200 MySQL databases ::) (very small databases).

As there are very small if possible we want to avoid ETL.

Thanks

Offline dlafrance

  • Community Leader
  • *****
  • Posts: 77
  • Forum Citizenship: +2/-0
Re: Limit on number of databases?
« Reply #1 on: 19 Aug 2010 01:44:58 am »
i don't think there is a maximum of datasource, but you will have a lot of "fun" doing queries to join or union all the possible datasource.

It will be hard to maintain also, on developper side to have a lot of datasource..

Offline laks

  • Full Member
  • ***
  • Posts: 20
  • Forum Citizenship: +0/-0
Re: Limit on number of databases?
« Reply #2 on: 19 Aug 2010 11:22:31 pm »
thanks  :)

Offline cognostechie

  • Statesman
  • ******
  • Posts: 674
  • Forum Citizenship: +43/-0
Re: Limit on number of databases?
« Reply #3 on: 20 Aug 2010 12:41:56 am »
Just sharing ..

In case , the schema structures are the same and the only difference is the data, you can use a Prompt to select the Database when you run the report. That way, you can avoid the joins and unions.

We had a situation where the customer had 30 schemas and the only difference was the data, not the structure of the schema.

Offline laks

  • Full Member
  • ***
  • Posts: 20
  • Forum Citizenship: +0/-0
Re: Limit on number of databases?
« Reply #4 on: 26 Aug 2010 11:54:41 am »
Intersting  :o...

Thanks for sharing.

So is the prompting handled at FM level or at data connection level?  ::)

Online blom0344

  • BI Architect
  • Global Moderator
  • Statesman
  • *****
  • Posts: 1,571
  • Forum Citizenship: +50/-2
  • Assess what you need instead of what you want
    • Reasult b.v.
Re: Limit on number of databases?
« Reply #5 on: 26 Aug 2010 02:16:30 pm »
In Cognos connection you can assign 1 or more connections for each datasource (we often have 10 defined). When you run a report you will automatically be prompted if the datasource has more then 1 connection defined. Each connection point to a different database (as long as database structures are identical, this will work)
« Last Edit: 26 Aug 2010 11:22:22 pm by blom0344 »
Oracle9i,DB2/AS400/Busobj 6.5/Powercenter7/Cognos8 /
SSIS 2005 / SQL SERVER 2005 /PowerDesigner 12.5/15

Offline laks

  • Full Member
  • ***
  • Posts: 20
  • Forum Citizenship: +0/-0
Re: Limit on number of databases?
« Reply #6 on: 26 Aug 2010 10:17:18 pm »
Cool.. Thanks a lot..