Viewing 15 posts - 346 through 360 (of 5,503 total)
fawad.majid (11/14/2013)
...In sql server agent job this procedure runs 69 steps and every step is separate,
Do you have a job step similar to EXECUTE [dbo].[usp_MU_Format2] or are there...
November 14, 2013 at 11:25 am
Just a pot shot:
It might be driven by the developer who want to make sure the key is unique but wasn't able to define a UNIQUE PRIMARY KEY (for good...
November 14, 2013 at 11:07 am
You've posted as single stored procedure but you refer to SQL Server Agent failing in a couple of steps. Please clarify.
What are the exact steps being called in your SQL...
November 14, 2013 at 10:35 am
I'm not sure if I fully understood the requirement (especially for N>3)...
My assumption: a cell is "inline" if all but one value match the cell coordinates in question.
"All but one"...
November 14, 2013 at 10:19 am
Lynn Pettis (11/13/2013)
Lynn Pettis (11/13/2013)
It is 23:27 Afghan time. Three minutes until my phone interview. Wish me luck!
Just finished the interview, and I feel like a Junior DBA....
November 13, 2013 at 5:44 pm
What's the reason for the CAST conversion?
It seems like o.invoiceid is already a character data type. What exact data type are the two columns referenced in the join predicate (o.invoiceid...
November 13, 2013 at 2:57 pm
I'm not saying either of the solutions is right or wrong. Both are just different in terms of the final result. They're just not equivalent.
Whether the current approach works...
November 13, 2013 at 11:04 am
GilaMonster (11/13/2013)
Jonathan Marshall (11/12/2013)
I like that idea of using a...
November 13, 2013 at 10:13 am
It depends on the query being used to get the raw data.
It might be sufficient to add a "TOP 3 ... ORDER BY Year DESC, Month DESC" to the underlying...
November 12, 2013 at 4:51 pm
hunchback (11/12/2013)
November 12, 2013 at 4:41 pm
Ich habe keine Ahnung, wovon du sprichst, Luis!
(I have no idea what you're talking about, Luis!) 😀
November 12, 2013 at 2:45 pm
@Kyr_Soronas: I though about an approach towards what mickyT came up with, but just without the "fancy geometry stuff" (@mickyT: no offence intended 😉 )
However, instead of using...
November 12, 2013 at 2:07 pm
It would be great if you could provide a more detailed scenario (e.g. table definition, sample data, your current approach and the expected result).
To simply copy the in- and...
November 12, 2013 at 1:58 pm
From my point of view, every approach will lead to the same execution plan including the table/index scan (including the MERGE approach).
A rather dirty approach would be a...
November 12, 2013 at 1:24 pm
Flip the start and end positions where start >= end so you can use a "standard query" and add constraints to ensure start <=end.
November 12, 2013 at 1:10 pm
Viewing 15 posts - 346 through 360 (of 5,503 total)