Viewing 5 posts - 1 through 5 (of 5 total)
Thanks Luis,
I created your version of the function as ProperCaseLuis() and ran the same query with the function; the resulted CPU time for the query has not improved.
The main problem...
October 8, 2014 at 9:01 pm
Thanks Luis.
We haven't installed any updates/SP
Below is the function definition.
[font="Courier New"]
Create Function [dbo].[ProperCase] ( @input varchar(4000) )
Returns varchar(4000)
As
Begin
-- Remove leading/trailing white space
Set @input = ltrim(rtrim(@input))
--...
October 8, 2014 at 6:59 pm
Sorry Perry, that was a typo, I meant to say 4-node cluster across 2 sites A and B, 2 nodes in Site A and 2 nodes in Site B.
November 8, 2012 at 2:55 pm
Thanks Suresh for the quick response.
I disabled Named Pipes and Shared Memory, only TCP/IP is enabled. Restarted the server.
Still have the same problem, even if I specify TCP/IP as...
August 10, 2012 at 12:04 am
Viewing 5 posts - 1 through 5 (of 5 total)