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  iWay Software Product Forum on Focal Point    SQL statement that doesn't work in Datamigrator

Read-Only Read-Only Topic
Go
Search
Notify
Tools
SQL statement that doesn't work in Datamigrator
 Login/Join
 
Silver Member
posted
Hi,


We want 2 create a report by searching for a string in a textfield without a fixed place.

In that string there is a number that we want have filtered out.

After some trial en error we finally got an sql-statement that works:

DECLARE @s1 varchar(8000)

DECLARE @s2 varchar(8000)

SET @s1='V="VAS,' SET @s2=',('

SELECT *,

substring([values],(NULLIF(CHARINDEX(@s1,[values]),0) +LEN(@s1)),(NULLIF(CHARINDEX(@s2,[values],(NULLIF(CHARINDEX(@s1,[values]),0) +LEN(@s1))),0) - (NULLIF(CHARINDEX(@s1,[values]),0)+LEN(@s1))))

FROM Metingen_metingen

where Metingen_metingen.[values] like '%V="VAS,%'


We get the result we want if we use query analyser.

But if I insert this sql-statement in datamigrator. I get the following error:
"(FOC14069) SYNTAX ERROR ON LINE 1 AT 'varchar' -- Expected 'FOR'"

What am I doing wrong here?

Thanx in advance,

Nordin


7.7.03
OS is Windows 7
We create al sorts of outputs depending on the demand, HTML (most cases), Excel (some cases) and PDF (some cases)
 
Posts: 32 | Location: Utrecht, Holland | Registered: December 10, 2008Report This Post
Member
posted Hide Post
Hi,

may be you can try and check with varchar2 as data type

hope it helps...


WebFocus 7.6.8
Data Migrator 7.6.8
Windows XP
HTML,Excel
 
Posts: 15 | Registered: February 26, 2009Report This Post
Silver Member
posted Hide Post
Hi Shruthi,


I tried the varchar2 as data type, but Datamigrator didn't even recognize the Syntax.
I got the same error as I described above.

Thanx anyway

Nordin


7.7.03
OS is Windows 7
We create al sorts of outputs depending on the demand, HTML (most cases), Excel (some cases) and PDF (some cases)
 
Posts: 32 | Location: Utrecht, Holland | Registered: December 10, 2008Report This Post
Guru
posted Hide Post
The SQL object is designed to process a SELECT statement, so the DECLARE and SET statements are problematic.

Try creating an MS SQL Server stored procedure and then create a synonym for the stored procedure.


N/A
 
Posts: 397 | Location: New York City | Registered: May 03, 2007Report This Post
Member
posted Hide Post
hi,

instead of using the declare statements, we can use the global variables..

example
i modify your code as per my knowledge...



SQL SQLMSS SET SERVER CON01
SQL SQLMSS SET ERRORTYPE DBMS
SQL SQLMSS

-SET @@s1='V="VAS,';

-SET @@s2='(';

SELECT *,substring(LASTNAME,(NULLIF(CHARINDEX('@@s1',LASTNAME),0) +LEN('@@s1')),(NULLIF(CHARINDEX('@@s2',LASTNAME,(NULLIF(CHARINDEX('@@s1',LASTNAME),0) +LEN('@@s1'))),0) - (NULLIF(CHARINDEX('@@s1',LASTNAME),0)+LEN('@@s1')))) FROM eg_sql where eg_sql.LASTNAME like '%V="VAS,%';

END



its working fine..

thanks,

thenmozhi
 
Posts: 8 | Registered: September 30, 2008Report This Post
Silver Member
posted Hide Post
Thanx everyone for all the replies.

Tomorrow I'm going 2 try to make those possible options (that you gave me) work.

I wil keep you informed.

Thanks again,

Nordin


7.7.03
OS is Windows 7
We create al sorts of outputs depending on the demand, HTML (most cases), Excel (some cases) and PDF (some cases)
 
Posts: 32 | Location: Utrecht, Holland | Registered: December 10, 2008Report This Post
Silver Member
posted Hide Post
Hi,

Guess what??

It worked.

After some minor adjustement, I got the script working.

Thanx, for everyone that contributed.
I really apreciate it

Nordin


7.7.03
OS is Windows 7
We create al sorts of outputs depending on the demand, HTML (most cases), Excel (some cases) and PDF (some cases)
 
Posts: 32 | Location: Utrecht, Holland | Registered: December 10, 2008Report This Post
Member
posted Hide Post
hi,

can you please tell me what modification you done in the script..

thanks

thenmozhi
 
Posts: 8 | Registered: September 30, 2008Report This Post
Silver Member
posted Hide Post
Hi thenmozhi,

I used the following script as an stored procedure in SQL.

Greetz,

Nordin


"USE [ReportBEZ]
GO
/****** Object: StoredProcedure [dbo].[ZI_vasscore] Script Date: 07/08/2009 15:43:05 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[ZI_vasscore]
AS
BEGIN
DECLARE @s1 varchar(8000)

DECLARE @s2 varchar(8000)

SET @s1='V="VAS,'
SET @s2=',('

SELECT *, CAST(substring([values],(NULLIF(CHARINDEX(@s1,[values]),0) +LEN(@s1)),(NULLIF(CHARINDEX(@s2,[values],(NULLIF(CHARINDEX(@s1,[values]),0) +LEN(@s1))),0) - (NULLIF(CHARINDEX(@s1,[values]),0)+LEN(@s1)))) AS varchar(20)) AS vasscore
FROM EZIS_Report.dbo.Metingen_metingen
where EZIS_Report.dbo.Metingen_metingen.[values] like '%V="VAS,%'

END"


7.7.03
OS is Windows 7
We create al sorts of outputs depending on the demand, HTML (most cases), Excel (some cases) and PDF (some cases)
 
Posts: 32 | Location: Utrecht, Holland | Registered: December 10, 2008Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  iWay Software Product Forum on Focal Point    SQL statement that doesn't work in Datamigrator

Copyright © 1996-2020 Information Builders