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.
I am trying to create a report and report is using data from multiple sources. I am not able to create a date to date joing for two different date types. I realize that data needs to be in the same formate to create a join.
What am I doing wrong here?
Field in Join file
SAMPLE:
'01/01/2010' AND '12/24/2010'
Field in host file
Sample:
'01/01/2010 02:18:11'
JOIN SD2AD WITH SD_MDY1 IN HOSTTABLE TO AD_YMD1 IN JOINTABLE AS J1
SD_YYMD/YYMD = SD_MDY1;
AD2SD/A10VYYMD = SD_YYMD;
This message has been edited. Last edited by: Kerry,
I wouldn't do that at all. Even if you got it to work, the performance would probably be terrible (define based join, 2 different data sources). WebFocus optimizer is going to break that up into 2 queries anyway, so its best to do that yourself, hold the results and join those together.
Also are you sure your Join file has data as A10VYYMD? That looks strange to me. What is the master file's datatype?
The main problem is that you're using the Microsoft SQL Server 2005 adapter for a Microsoft SQL Server 2008 database. We have seen from other posts that the metadata for the new date-time formats in Microsoft SQL Server 2008 don't generate as WebFOCUS Date-Time formats. I would open a case with Information Builders Tech Support.
What I would do is first select the data from the 2 databases, convert the date field as described and put both data in temporary focus tables. After that you can join on thoses 2 new tables.
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006