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.
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,%';
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, 2008