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.
A field in my mfile is datatype packed6 with missing set to off. When I run a report for all records the missing data shows as 0. When I query for all the records where the field = to zero, zero rows are returned. I've tried supression the zero and querying for all records where the field eq ' ', and I still get zero rows. I've tried eq 0, eq '0', eq ' ', is missing, is null and get zero rows returned. How do I query this field? I'm running version 5.3.3
You don't mention anything about the type of DB you are using. Please update your profile so we can see your platform, version, databases, etc.
The issue may be that the there are actually null values in your database, but since your Master File says Missing=OFF, it interprets those null values as 0. But when you send a query, the 0 value is sent to the DB engine and it returns no records because the values are null. Try using db's native query tool and see what you get, or change the MISSING=OFF to MISSING=ON.
Regards,
Darin
In FOCUS since 1991 WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex WF Client: 77 on Linux w/Tomcat
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007
I'm using an Oracle database. And I do have nulls in the database. Thanks for your comment Darin. It turned on the light and help guide me to a solution.