Viewing 15 posts - 2,851 through 2,865 (of 14,953 total)
Sean Lange (11/14/2011)
Ninja's_RGR'us (11/14/2011)
It's only been posted 3 times... not sure it's enough ;-).Yeah apparently we were all three typing at the same time. Kind of scary!!
Not as scary as...
November 14, 2011 at 9:46 am
Phil Factor (11/14/2011)
November 14, 2011 at 9:43 am
majorbloodnock (11/14/2011)
November 14, 2011 at 9:41 am
It's probably being used to accommodate a poor level of data normalization (should be rows, not columns), but it's not an uncommon thing to do.
It is, indeed, a "conditional join"....
November 14, 2011 at 9:13 am
SanDroid (11/14/2011)
GSquared (11/14/2011)
SanDroid (11/14/2011)
Ninja's_RGR'us (11/14/2011)
November 14, 2011 at 9:07 am
He asked about the ID sequence. That should do what's needed. ID can then be used in later Order By clauses to insure sequence.
November 14, 2011 at 8:54 am
I use OpenRowset within a T-SQL script for exactly this.
EXEC sp_configure 'xp_cmdshell', 1 ;
RECONFIGURE ;
USE MyDatabase ;
SET NOCOUNT ON ;
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
DROP TABLE...
November 14, 2011 at 8:53 am
David Zuckerman (11/14/2011)
"It also seems that many of the people I've met with CS degrees are often those that make...
November 14, 2011 at 8:46 am
SanDroid (11/14/2011)
Ninja's_RGR'us (11/14/2011)
so aside...
November 14, 2011 at 8:37 am
Here's the answer from Microsoft: http://blogs.msdn.com/b/sqltips/archive/2005/07/20/441053.aspx
Relevant piece:
4.INSERT queries that use SELECT with ORDER BY to populate rows guarantees how identity values are computed but not the order in which the...
November 14, 2011 at 8:32 am
Well, most people think the primary use of either of those is to make the query faster. They're wrong, but that's what they think it's for.
Putting both of them...
November 14, 2011 at 8:29 am
Same problem with anything implicit in code instead of explicit.
The code calling the proc is then subject to negative impacts from table refactoring. If the sequence of columns is...
November 14, 2011 at 8:20 am
Good editorial, good article.
I think two bits sum it up. The statement that people with CS degrees often don't know what they really need to do, and the statement...
November 14, 2011 at 6:45 am
Phil Factor (11/12/2011)
November 14, 2011 at 6:36 am
I'm going to have to disagree with you on this one.
There is definitely some code out there that deserves criticism.
I look at some of the database designs and stored procedures...
November 11, 2011 at 12:37 pm
Viewing 15 posts - 2,851 through 2,865 (of 14,953 total)