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 have SQL report that run against oracle db. The date format is different when it is run from Dev studio and from MRE. Does anyone know how to fix it? Here is the out put of ? HOLD
From MRE FIRNS_DATE E06 HYYMDS MISSING = ON
From Dev Studio FIRNS_DATE E06 YYMD MISSING = ONThis message has been edited. Last edited by: Kerry,
Posts: 18 | Location: Canada | Registered: October 24, 2006
This SQL report, how are you accessing the Oracle table? Are you setting the Oracle engine or are you using a WebFOCUS Master? If you're using a WebFOCUS Master you could be pointing to a different Master for each execution method...
Use the DBMS:
SET SQLENGINE=SQLORA
SQL SELECT * FROM dbms-table
or
SQL SQLORA SELECT * FROM dbms-table
Use WebFOCUS Master:
SQL SELECT * FROM dbms-table
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Looks to me like you have 2 different masters. One where the Oracle date/time field is defined as a date-time field (HYYMDS) and the other where it is defined as a smart date (YYMD).
In our environment there are many times where we want to use an Oracle date-time field as just a date and other times we want to use it as a date-time. For example, if I want all the rows from a given table updated on 9/22/2009 but I want to print the full date time, I define the field in my master twice like this:
TABLEF FILE XXXXX
PRINT F1, F2, F2
BY UPDDTTM
WHERE UPDDT GE '20090922'
AND UPDDT LT '20090923'
END
Notice that since all of this will get passed to Oracle, by using TABLEF, Oracle will sort the data and WebFOCUS does not resort the data. If I had used TABLE, WebFOCUS would waste time sorting data that is already in the proper sequence.
In FOCUS since 1985. Prod WF 8.0.08 (z90/Suse Linux) DB (Oracle 11g), Self Serv, Report Caster, WebServer Intel/Linux.
Posts: 975 | Location: Oklahoma City | Registered: October 27, 2006