Viewing 15 posts - 31 through 45 (of 51 total)
Kenena Klosson (10/5/2007)
...I thank everyone who contributes to it, even the dorks who fail to pick up a single book and ask for help instead...
Well, we usually refrain from the...
October 5, 2007 at 1:50 pm
When I have a SQL question one of my DBAs can't answer (or they're not around), SQL Server Central is the first place I come. I've always gotten a quick...
October 2, 2007 at 2:41 pm
A number of the questions of the day lately have been sponsored by Expert SQL Server Development, stating there would be a drawing for a copy of the book among...
June 26, 2007 at 1:46 pm
None of the answers line up with what is on Microsoft TechNet for creating a proxy account. According to Microsoft, the procedure to create a proxy account is:
Credentials must be...
June 7, 2007 at 8:24 am
I found the article generally interesting. As a tester, I often need to build truth tables and this tool could come in handy.
However, I've never come across the "IMPLIES" operator...
April 19, 2007 at 2:39 pm
Here's another vote for an article on ALL, WITH ROLLUP and WITH CUBE. Thanks for the excellent explanation.
March 16, 2007 at 3:22 pm
I would also like my points back. 🙂
January 15, 2007 at 11:08 am
I was trying to understand what the code Jeff presented was doing and ran the following queries:
select isnull(null,'yep') as justnull
select isnull(null...
November 3, 2006 at 11:09 am
I don't mind the page peel ad; it was actually sort of cool. But, I hate the double-underline thing. As a new user, it looked like a link to some...
September 7, 2006 at 10:14 am
From BOL:
Unresolved | A view that does not support resolution, to be used only when the repository is not versioned or when you... |
August 2, 2006 at 8:29 am
Bhupesh,
I'm not entirely sure I understand your question. I think what you want is some kind of list of all the tables that have an entry for a particular employee....
June 28, 2006 at 3:46 pm
David,
This link is on the blog:
http://download.microsoft.com/download/1/a/3/1a32ea84-11a3-4adf-953e-7a65b9831f5a/VSDATAD1.img
Is it not what you're looking for?
Steve
June 27, 2006 at 12:52 pm
Okay, for those of us who use this site to learn about SQL server, how did you do it?
June 9, 2006 at 7:54 am
I believe Amit's logic is reversed. This works:
select A.PhoneNumber, A.Call_Time, B.Call_Time, A.Minutes, B.Minutes
from Table1 A inner join Table2 B
ON A.PhoneNumber = B.PhoneNumber
where
(DateDiff(ss,A.Call_Time,B.Call_Time) Between -60 AND 60)
and
((A.Minutes - B.Minutes) BETWEEN...
May 2, 2006 at 8:28 am
Viewing 15 posts - 31 through 45 (of 51 total)