Viewing 5 posts - 1 through 5 (of 5 total)
I think that this articole is very academic and it is not useful for work, because it works, it's true, but the indexes? Do the indexes works?
Bye
mandu
April 28, 2009 at 1:12 am
Try this script:
declare
@counter smallint
declare
@first varchar(4000)
declare
@notNumber char(1)
while
exists(select Phone
January 19, 2007 at 2:02 am
Hi,
i test my user function and i reveived OK:
select dbo.fnTestStringWithRegularExpression('myname@agency.state.statecode.us', 1, 'T', 'T')
tell T, so the email address is ok.
Bye
June 1, 2006 at 7:32 am
Hi,
you can use the regular expression with a user function like this:
--select dbo.fnTestStringWithRegularExpression('pippo123', 4, 'T', 'T')
ALTER function [dbo].[fnTestStringWithRegularExpression]
(
@stringaDaControllare varchar(4096), -- stringa da controllare
@tipoStringa smallint, -- 1 = email
-- 2 =...
June 1, 2006 at 1:16 am
Hi,
i have a similar problem and i have solve it with a user function like this:
--select dbo.fnScontoStringaInNumero('3,5+3+0', '+')
-- per motivi di performance il programmatore...
May 30, 2006 at 2:24 am
Viewing 5 posts - 1 through 5 (of 5 total)