Viewing 15 posts - 181 through 195 (of 328 total)
SQLKnowItAll (4/4/2012)
April 4, 2012 at 5:45 pm
Here's my attempt, probably can be shortened or better versions posted by the experts.
select row, studentid, revision_cycle, grade_assigned, reason
from
(
select row_number() over (partition by studentid order by revision_cycle desc) row,
studentid, grade_assigned,...
April 4, 2012 at 5:38 pm
Interesting problem! I've never run into that, and wonder if you could just either select around it???
Like select all columns by name from the openquery with criteria inside the...
April 2, 2012 at 3:51 pm
The best answer I could find was using a script of some sort to list files and directories that a windows user account has access to. This is one example...
April 1, 2012 at 2:57 pm
user interface is hard! I like the idea of a "force" like keyword being required when bypassing all the safety checks, but its probably best to research combinations of keywords...
April 1, 2012 at 12:56 pm
pharrell (2/7/2012)
I have recently taken over the DBA position in place of our previous DBA/Lead Developer...
March 30, 2012 at 1:56 pm
Could you try:
iif(filed=Empty , "?" ,filed)
Just curious, maybe " " isn't really in that field after all!
(Its worth noting that when I tried the expression for a column called "note",...
March 30, 2012 at 1:08 pm
SqlNewJack (3/28/2012)
With all due respect and for the sake of "prolificacy", could someone please take this debate to a separate thread?
Sorry for my off topic post, and I will...
March 28, 2012 at 10:09 pm
reefshark (3/28/2012)
I have a new server that I have installed SQL Server 2008 R2 SP1 on. I created a single user database on it and ran a script (provided...
March 28, 2012 at 3:28 pm
GilaMonster (3/28/2012)
patrickmcginnis59 (3/28/2012)
Ninja's_RGR'us (11/23/2011)
Dev (11/23/2011)
(XYZ is still waiting for thanks :hehe:).
The most prolific poster post because it's the RIGHT thing to do. Not to get anything of...
March 28, 2012 at 10:53 am
Lynn Pettis (3/28/2012)
patrickmcginnis59 (3/28/2012)
GilaMonster (3/28/2012)
patrickmcginnis59 (3/28/2012)
Ninja's_RGR'us (11/23/2011)
Dev (11/23/2011)
(XYZ is still waiting for thanks :hehe:).
The most prolific poster post because it's the RIGHT thing to do. Not to...
March 28, 2012 at 10:34 am
GilaMonster (3/28/2012)
patrickmcginnis59 (3/28/2012)
Ninja's_RGR'us (11/23/2011)
Dev (11/23/2011)
(XYZ is still waiting for thanks :hehe:).
The most prolific poster post because it's the RIGHT thing to do. Not to get anything of...
March 28, 2012 at 10:20 am
Lynn Pettis (3/28/2012)
patrickmcginnis59 (3/28/2012)
Ninja's_RGR'us (11/23/2011)
Dev (11/23/2011)
(XYZ is still waiting for thanks :hehe:).
The most prolific poster post because it's the RIGHT thing to do. Not to get anything...
March 28, 2012 at 8:44 am
daniel 40017 (3/28/2012)
a query is a different thing - one might think you are referring to distributed query on multiple servers for...
March 28, 2012 at 7:57 am
Viewing 15 posts - 181 through 195 (of 328 total)