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.
Has anyone had some tables fail during install? Most tables are built but some error like below. I increased table space size to 32k but still get -286 error.
[EL Fine]: sql: Connection(73920627)--CREATE TABLE UOA_GROUPS (ID INTEGER NOT NULL, DEFROLEID INTEGER, DESCRIPTION VARCHAR(255), EXTGROUPNAME VARCHAR(2000), EXTERNALID VARCHAR(255), NAME VARCHAR(255) NOT NULL, NAMESPACE VARCHAR(255), PARENTID INTEGER NOT NULL, PROPERTIES VARCHAR(2000), type INTEGER, PRIMARY KEY (ID)) [EL Fine]: sql: VALUES(1) [EL Finest]: connection: Connection(73920627)--Connection released to connection pool [default]. [EL Warning]: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.5.0.v20130507-3faac2b): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: com.ibm.db2.jcc.am.SqlSyntaxErrorException: DB2 SQL Error: SQLCODE=-286, SQLSTATE=42727, SQLERRMC=8192;WBFADMIN, DRIVER=4.14.137 Error Code: -286This message has been edited. Last edited by: RRKen,
8.2.03 AIX Client Windows Tomcat DB2, Terradata, SQL, Oracle
Posts: 56 | Location: Fort Worth, Texas USA | Registered: January 27, 2012
SQL0286N A default table space could not be found with a page size of at least pagesize that authorization ID user-name is authorized to use.
Explanation The CREATE TABLE or DECLARE GLOBAL TEMPORARY TABLE statement did not specify a table space, and a table space of the right type (USER TEMPORARY for declared temporary table) with sufficient page size (at least pagesize), over which authorization ID user-name has USE privilege, could not be found.
Sufficient page size for a table is determined by either the byte count of the row or the number of columns.
User response Ensure the existence of a table space of the correct type (REGULAR or USER TEMPORARY) with a page size of at least pagesize and that authorization ID user-name has USE privilege on this table space.
Above the official explanation of the SQL error. You error message indicates SQLERRMC=8192, so a minimum pagesize of 8K is required, so your 32K should be sufficient.
I would suggest you check the type of tablespaces you have, and if user WBFADMIN has the correct rights to use the tablespaces.
regards, Martin.
WebFocus 8206M, iWay DataMigrator, Windows, DB2 Windows V10.5, MS SQL Server, Azure SQL, Hyperstage, ReportCaster
Ended up creating tables manually, there are some tables from previous version in there that are no longer used. The utility will create the sql to manually build tables (exportcfg.bat)
8.2.03 AIX Client Windows Tomcat DB2, Terradata, SQL, Oracle
Posts: 56 | Location: Fort Worth, Texas USA | Registered: January 27, 2012