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.
Can anyone point out as to what I am doing wrong here? I found examples out there and it looks like I am doing everything right, but I get the following error.
Any help would be great.
ENGINE ODBC SET DEFAULT_CONNECTION MSAT_TEST
SQL ODBC PREPARE SQLOUT FOR
select TOP 1 SiteNum, LocationID, BusinessDate, ProblemCode, CauseCode, DBServerName
from MSAT01.PollingTracking
END
-RUN
TABLE FILE SQLOUT
PRINT
SiteNum
LocationID
BusinessDate
ProblemCode
CauseCode
DBServerName
WHERE SiteNum EQ &SiteNum.(FIND SITENUM IN POLLINGTRACKING).SiteNum.;
WHERE BusinessDate EQ DT(&BusinessDate.(FIND BUSINESSDATE IN POLLINGTRACKING).BusinessDate.);
ON TABLE HOLD FORMAT SQLODBC AS TEST_CLEAR
END
-RUN
SQL ODBC
insert into MSAT01.PollingTracking (SiteNum, LocationID, BusinessDate, ProblemCode, CauseCode, DBServerName, ActionCode)
SELECT SiteNum, LocationID, BusinessDate, ProblemCode, CauseCode, DBServerName, 11
from TEST_CLEAR
END
-RUN
0 NUMBER OF RECORDS IN TABLE= 1 LINES= 1 0 HOLDING SQLODBC FILE... (FOC1400) SQLCODE IS 207 (HEX: 000000CF) XOPEN: 42S22 : [S0022] [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column na : me 'SiteNum'. [S0022] [Microsoft][ODBC SQL Server Driver][SQL Server]Inv : alid column name 'LocationID'. [S0022] [Microsoft][ODBC SQL Server Drive : r][SQL Server]Invalid column name 'BusinessDate'. [S0022] [Microsoft][OD : BC SQL Server Driver][SQL Server]Invalid column name 'ProblemCode'. [S00 : 22] [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name ' : CauseCode'. [S0022] [Microsoft][ODBC SQL Server Driver][SQL Server]Inval : id column name 'DBServerName'. (FOC1414) EXECUTE IMMEDIATE ERROR.This message has been edited. Last edited by: MattC,
If I remember correctly, the HOLD file does not have the column names in mixed-case. You can verify that by adding ?FF SQLOUT after the first -RUN statement. I think you need to code the select statement like this:
select TOP 1 SiteNum AS SiteNum, LocationID AS LocationID...
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
Doing a little research, TABLE HOLD actually inserts the table into the SQL Server, and looking at the column names of this new table it does not match the columns in the table that I want to do the insert into.
I found that I need to drop the table when I am done.
If I remember correctly, the HOLD file does not have the column names in mixed-case. You can verify that by adding ?FF SQLOUT after the first -RUN statement. I think you need to code the select statement like this:
select TOP 1 SiteNum AS SiteNum, LocationID AS LocationID...
That did the trick. I was able to get what I needed.