Viewing 15 posts - 1,306 through 1,320 (of 2,038 total)
Bruce W Cassidy (4/19/2009)
Florian Reischl (4/19/2009)
The problem is the string builder. It takes to much overhead inside.
[font="Verdana"]Only if you use code to generate the lookup table. 😀 Go...
April 21, 2009 at 2:34 pm
Bob Hovious (4/21/2009)
then the outer CONVERT will insert the commas for you.
declare @test-2 float
set @test-2 = 7265342.12
select @test-2,...
April 21, 2009 at 1:49 pm
Hi
You can use a ROW_NUMBER and build partitions:
DECLARE @t TABLE (Date DATETIME, Id INT, Name VARCHAR(10))
INSERT INTO @t
...
April 21, 2009 at 1:42 pm
Hi
If you are sure that the trailing "spaces" are tabs you can use this statement to remove them:
UPDATE clientsupplier
SET clientcode = LEFT(clientcode, CHARINDEX(CHAR(9),...
April 21, 2009 at 1:34 pm
Hi
Sorry for late answer. Too much meetings...
So as Paul already indicated we have a new Tally solution with pretty strange characteristics... I already did some tests with Jeff. It seems...
April 21, 2009 at 12:39 pm
Phil Factor (4/20/2009)
Am I right in seeing that your copy of Moby Dick only has one line? My copy is twice the length too.
Hi Phil
Sorry, I had an error in...
April 20, 2009 at 12:40 pm
Hi Phil
As first, thanks again for all your input!
I included your function into my test environment and took the Moby Dick text into a new table #SourceMobyDick. Here the stats:
SourceType...
April 20, 2009 at 12:12 pm
Hi Phil
Thanks for your tests! Heh... so it seems that the best way stays depending on the current case. 🙂
I just tried to reproduce but in my environment the Chars...
April 20, 2009 at 10:20 am
Hi
I will include both C# and VB.Net. I will include the most important functions:
* Paul's version which simply uses string.Split because it is a one line solution
* The RegEx solution...
April 20, 2009 at 9:15 am
Bruce W Cassidy (4/19/2009)
April 19, 2009 at 4:02 pm
Bruce W Cassidy (4/19/2009)
Use an array of 256 2-character strings with the hexadecimal encoding for each byte. So...
April 19, 2009 at 3:56 pm
Hi Bruce
Bruce W Cassidy (4/19/2009)
Yay for the article! Looking forward to it. 😀
I already started. Since now I didn't know which .Net language to take... 😛
I also enjoyed...
April 19, 2009 at 3:27 pm
Hi
So with a representative feedback of three votes 🙂 with the following results "Do both but doesn't matter", "I like C#" and "I like VB" I think I will provide...
April 19, 2009 at 3:21 pm
Bob Hovious (4/19/2009)
April 19, 2009 at 3:11 pm
Lynn, Alvin
Thanks a lot for the feedback!
Greets
Flo
April 19, 2009 at 12:28 pm
Viewing 15 posts - 1,306 through 1,320 (of 2,038 total)