Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     (SOLVED)Using hold file output for insert

Read-Only Read-Only Topic
Go
Search
Notify
Tools
(SOLVED)Using hold file output for insert
 Login/Join
 
Guru
posted
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,


WebFOCUS 8.1.05
 
Posts: 496 | Registered: January 04, 2008Report This Post
Virtuoso
posted Hide Post
I see some SQL errors, maybe your tables in SQL have other names and fields.

I would create a MFD on that SQL Table and use that as the source.




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Expert
posted Hide Post
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
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Guru
posted Hide Post
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.


WebFOCUS 8.1.05
 
Posts: 496 | Registered: January 04, 2008Report This Post
Virtuoso
posted Hide Post
But if it works you should duplicate all the data in the original database.
Is that what you want?




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Guru
posted Hide Post
quote:
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.

Thanks for helping me out.


WebFOCUS 8.1.05
 
Posts: 496 | Registered: January 04, 2008Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     (SOLVED)Using hold file output for insert

Copyright © 1996-2020 Information Builders