As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Can we create a MAS file from a materialized view? When I use the tool to create mas files (or synonyms) it shows all of my tables except the table that stores the Materialized view. When I ask it to show me tables and views, I still get nothing.
Can't help directly on your question (After we migrated to 713 we are not able to create synonyms using the tool). However accessing materialized views is definitely possible. We create the master files manually and access materialized views from WF.
Posts: 38 | Location: India | Registered: May 18, 2005
I had problems with an Oracle materialized view (Oracle9i Enterprise Edition Release 9.2.0.7.0) where I got the error "(FOC1567) CREATE SYNONYM: DATASOURCE 'DATA_MV' IS NOT UNIQUE."
I worked with the DBA (this is a development environment) and looked at all of the possible reasons I could find - problems in comments, duplicate columns, etc., etc.
What finally worked was this:
The DBA made an Oracle VIEW of the Oracle MATERIALIZED VIEW. The WebFOCUS Metadata "Create Synonym" functionality finally worked on this.
So if you have access to the Oracle DBA, try having them make a View of the Materialized View.
Posts: 64 | Location: Denver | Registered: July 20, 2005
if you're using the 'create synonym' gui tool, you have to make sure the appropriate checkboxes are selected. it gives you an option for tables and views by default. a mat view isn't either of these.
We create synonyms all the time using the Mat Views.... but here's a little tidbit for you...the Oracle optimizer 9i or greater can use a Mat view implicitly if you query the underlying table...this helps if you have to aggregate a tremendous amount of data or have indexes with low selectivity (cardinality i think yall call it).
We use an IBM iseries and Materialized Query Tables (MQT) have been a blessing for our datawarehouse.
Also, your materialized view logs will speed up refresh time quite a bit too...definitely look into that if you're not already...my 2 cents.
Prod: Single Windows 2008 Server running Webfocus 7.7.03 Reporting server Web server IIS6/Tomcat, AS400 DB2 database.
Hi Jackson, We use star schema and creat fact tables from JDEdwards. The dasboards performance is not impresive to the top management (6-7 fex).
I was reading about Materialized views and have the fillowing questions:- - Can I create it based on the fact table or it should be joined with demensions? -we update nightly so I like to truncate and then load the data to these view after finishing the fact tables in the data migrator, is this possible? Please let me know.