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.
Though the length of column(Integer) in DB is only 4, it shows up the data values if its even more than 4 in DB (eg, 365678).
describle table scehmaname.tablename;
However, in WF, as the field USAGE is 4 in the master, if data exceeds 4, filled up with asterix(****) in the report output as expected. Manually modified in the master accordingly.
Have used Oracle DB so far, never faced like this before.
Thanks, RifazThis message has been edited. Last edited by: <Kathryn Henning>,
-Rifaz
WebFOCUS 7.7.x and 8.x
Posts: 406 | Location: India | Registered: June 13, 2013
Are you sure the database is not describing that field length as number of bytes? 4 Bytes goes well beyond 9999, all the way up to 2**32.
You can approximate the field size in the master file using something along the lines of USAGE=I10 (I seem to recall that's the limit for integers in WF)
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
When you describe the table, COLNAME,TYPESCHEMA,TYPENAME,LENGTH,SCALE,NULLABLE. Here, column LENGTH represents in bytes. Is it so? Everytime, we have to edit our masters manually according to data types. Am i correct?
How about VARCHAR?This message has been edited. Last edited by: Rifaz,
-Rifaz
WebFOCUS 7.7.x and 8.x
Posts: 406 | Location: India | Registered: June 13, 2013
Rifaz, I'm afraid you are mixing up between Integer and Alpha fields. I don't know what the WF DB2 interface shows when you create a Master. However Integers (I fields) clasically are 4 bytes long (in some databases you have "small int" fields which are 2 bytes). These fields are usually described by WF as USAGE=I11, ACTUAL=I4. You shouldn't have a problem with that. If you do see a USAGE=I4 and you get **** in your output, increase the number of displayed digits to I6 or so. And I suggest you find out why this USAGE was used.
What about VARCHAR?
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006
It shows as USAGE=I4 only, have to change it to 10 for long int and 5 for small int manually in the master. So, I'm little worried about VARCHAR, will it be any case like, lets say, in DB its length is 100, do we need to change in our master, increase to A200 or above, like we did it for integers.
-Rifaz
WebFOCUS 7.7.x and 8.x
Posts: 406 | Location: India | Registered: June 13, 2013