Viewing 15 posts - 4,906 through 4,920 (of 8,761 total)
rodjkidd (7/15/2015)
Oh looks like the relay web site has been updated...Now taking submissions for sessions!
Rodders...
Thanks for the heads up Rodders
😎
July 15, 2015 at 10:48 am
Firstly, do not use concatenated values in a column, just going to be a pain!
😎
Here is a simple ERD to explain the concept
...
July 15, 2015 at 10:44 am
Brandie Tarvin (7/15/2015)
July 15, 2015 at 10:10 am
WayneS (7/15/2015)
CREATE FUNCTION dbo._tTVFN_tEEst2 (@countryNr INT, @telNr NCHAR(30))
RETURNS...
July 15, 2015 at 9:36 am
WayneS (7/15/2015)
TheSQLGuru (7/15/2015)
I am very surprised that the XML_PATH is fastest. I always thought XML handling in SQL Server was horribly inefficient and bloated (especially from a memory-use perspective).
XML shredding...
July 15, 2015 at 9:25 am
Jeff Moden (7/15/2015)
Eirikur Eiriksson (7/15/2015)
Ah, now I get it, migrate from one version of SQL Utopia to another:hehe:😎
Or one version of ANSI Utopia to another. 😀 ANSI and...
July 15, 2015 at 8:43 am
GilaMonster (7/15/2015)
Yes, asking people to write an efficient query when you don't entirely know what you need is a really good way to get a useless answer....
...and an utter waste...
July 15, 2015 at 8:37 am
Raymond van Laake (7/15/2015)
What's the final code now?
This one here is by far the fastest as Wayne's test clearly shows
😎
IF OBJECT_ID(N'dbo._iTVFN_tEEst') IS NOT NULL DROP FUNCTION dbo._iTVFN_tEEst;
GO
CREATE FUNCTION [dbo]._iTVFN_tEEst (@countryNr...
July 15, 2015 at 8:30 am
WayneS (7/15/2015)
I changed your (very nice) test harness to put the results into a temp table vs. using @CHAR_BUCKET. My results are:
T_TEXT ...
July 15, 2015 at 8:07 am
Just piling on a little, here is a test harness with three different versions
😎
Echoing Wain's reply, don't recommend using the variable type concatenation as the order is not guarantied (but...
July 15, 2015 at 7:37 am
Raymond van Laake (7/15/2015)
I am looking for the fastest way to strip non-numeric characters from a string.
I have a user database that has a column (USER_TELNO) in which the...
July 15, 2015 at 4:55 am
Changing the cardinality of the Match Set means having to case the self-join
😎
declare @tt table
( TagId int, TagType int, ReportId int)
INSERT...
July 15, 2015 at 1:38 am
Now come on you plinkers, here is a moving target practice
😎
July 15, 2015 at 12:48 am
Jeff Moden (7/14/2015)
Eirikur Eiriksson (7/14/2015)
Brandie Tarvin (7/14/2015)
July 15, 2015 at 12:46 am
farax_x (7/14/2015)
July 15, 2015 at 12:38 am
Viewing 15 posts - 4,906 through 4,920 (of 8,761 total)