Viewing 15 posts - 6,721 through 6,735 (of 8,760 total)
Ed Wagner (10/21/2014)
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Ed Wagner (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
spaghettidba (10/21/2014)
Ed Wagner (10/21/2014)
October 21, 2014 at 1:58 pm
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Ed Wagner (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
spaghettidba (10/21/2014)
Ed Wagner (10/21/2014)
October 21, 2014 at 1:54 pm
LutzM (10/21/2014)
spaghettidba (10/21/2014)
Ed Wagner (10/21/2014)
October 21, 2014 at 1:52 pm
Ed Wagner (10/21/2014)
Eirikur Eiriksson (10/21/2014)
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
spaghettidba (10/21/2014)
Ed Wagner (10/21/2014)
October 21, 2014 at 1:34 pm
Luis Cazares (10/21/2014)
Eirikur Eiriksson (10/21/2014)
spaghettidba (10/21/2014)
Ed Wagner (10/21/2014)
October 21, 2014 at 12:58 pm
spaghettidba (10/21/2014)
Ed Wagner (10/21/2014)
October 21, 2014 at 12:42 pm
Quick thought, redirect the stderr to the output using 2>&1
😎
October 21, 2014 at 1:19 am
Phil Parkin (10/21/2014)
Eirikur Eiriksson (10/21/2014)
October 21, 2014 at 1:11 am
Jeff Moden (10/21/2014)
Eirikur Eiriksson (10/20/2014)
October 21, 2014 at 12:55 am
I strongly belief that dynamic SQL solutions should be avoided if possible, it normally doesn't take much of an additional complexity to render them useless or at least very hard...
October 21, 2014 at 12:25 am
Hi and welcome to forum. Quick note, you should post this question in the appropriate forum depending on your SQL Server version.
The answer is actually in the question, look up...
October 20, 2014 at 10:15 pm
Good point Luis! It is also around 30% faster,
Quick comparison
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @INT_BUCKET INT = 0;
DECLARE @CHAR_BUCKET CHAR(7) = '';
DECLARE @TIMING_RESULTS TABLE
(
...
October 20, 2014 at 10:06 pm
byanaman1 (10/20/2014)
October 20, 2014 at 9:40 pm
Another important aspect is the use of SQL code modules as a means for code modularisation, nudging the SDLC more towards SOLID so to speak, something that is immensely beneficial...
October 20, 2014 at 8:45 pm
Some code refactoring on the previous set based solution to fulfil all the requirements, several orders of magnitude faster than string manipulation although it has not been tested on very...
October 20, 2014 at 8:13 pm
Viewing 15 posts - 6,721 through 6,735 (of 8,760 total)