|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, May 03, 2013 2:29 PM
Points: 55,
Visits: 150
|
|
We use the function below, i.e. fProper(fieldname). Works great.
USE [SfiData] GO /****** Object: UserDefinedFunction [dbo].[fProper] Script Date: 04/13/2011 13:05:27 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER FUNCTION [dbo].[fProper] (@tcString VARCHAR(100)) RETURNS VARCHAR(100) AS BEGIN -- Scratch variables used for processing DECLARE @workString VARCHAR(100) DECLARE @outputString VARCHAR(100) DECLARE @stringLength INT DECLARE @loopCounter INT DECLARE @charAtPos VARCHAR(1) DECLARE @wordStart INT
-- If the incoming string is NULL, return an error IF (@tcString IS NULL) RETURN ('(no string passed)')
-- Initialize the scratch variables SET @workString = LOWER(@tcString) SET @outputString = '' SET @stringLength = LEN (@tcString) SET @loopCounter = 1 SET @wordStart = 1
-- Loop over the string WHILE (@loopCounter <= @stringLength) BEGIN -- Get the single character off the string SET @charAtPos = SUBSTRING (@workString, @loopCounter, 1)
-- If we are the start of a word, uppercase the character -- and reset the work indicator IF (@wordStart = 1) BEGIN SET @charAtPos = UPPER (@charAtPos) SET @wordStart = 0 END
-- If we encounter a white space, indicate that we -- are about to start a word IF (@charAtPos = ' ') SET @wordStart = 1
-- Form the output string SET @outputString = @outputString + @charAtPos
SET @loopCounter = @loopCounter + 1 END
-- Return the final output RETURN (@outputString) END
Wallace Houston Sunnyland Farms, Inc.
"We must endeavor to persevere."
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Yesterday @ 12:35 PM
Points: 6,650,
Visits: 5,666
|
|
|
|
|