Viewing 15 posts - 6,241 through 6,255 (of 8,731 total)
I agree with most people on avoiding being the single person that knows everything and the ultimate problem solver.
However, I would like to encourage another point of view. You should...
June 17, 2014 at 10:49 am
Ed Wagner (6/17/2014)
June 17, 2014 at 10:22 am
I'm not sure what happened in here :w00t:
June 17, 2014 at 9:43 am
Eugene Elutin (6/17/2014)
Sorry Luis, help with what?
First of all it is a bit different...
June 17, 2014 at 8:37 am
June 17, 2014 at 8:10 am
You might be looking for something like this:
http://www.sqlservercentral.com/articles/comma+separated+list/71700/
Read the article and ask any questions that you might have.
June 16, 2014 at 2:31 pm
Sean Lange (6/16/2014)
We seem to have totally our website to spammers with links to streaming. Hope there is somebody around who can stop this nonsense.
Is this a signal to stop...
June 16, 2014 at 11:39 am
Nice work Chris,
I would make a small modification because it's losing values from the last day.
;WITH RecordedMsgs (CallDate, Extension, CallerID, CalledID) AS (
SELECT '2011-12-04 01:59:59.999', 'night', 1, 20 UNION ALL
SELECT...
June 16, 2014 at 8:33 am
David Burrows (6/16/2014)
Sean Lange (6/16/2014)
...a few technological advances (like goal line technology).
Except that in one match already, with two different views of the goal line, one clearly showed no...
June 16, 2014 at 8:07 am
Maybe something simple as this:
SELECT a.custID,
SUM(CASE WHEN MM BETWEEN 1 AND 3 THEN Amt END) SumQ1 ,
...
June 16, 2014 at 6:59 am
Sean Lange (6/13/2014)
GilaMonster (6/13/2014)
I hate soccer season.
hehe soccer isn't really a season per se. Especially those of us in the U.S. We have MLS in the summer and all the...
June 13, 2014 at 12:33 pm
You're using more variables than the ones declared. It should be more like this:
EXEC sp_executesql @SQL, N'@aId nvarchar(50) output, @dId nvarchar(50), @dStatusId nvarchar(50)',@aId output, @dId, @dStatusId;
June 13, 2014 at 12:24 pm
Thinking again, I might suggest a trigger approach on the case that you can soft-delete contracts with out soft-deleting the organisation. Using the FK approach, you wouldn't be able to...
June 13, 2014 at 12:16 pm
SQLRNNR (6/13/2014)
The Dixie Flatline (6/13/2014)
Sean Lange (6/13/2014)
June 13, 2014 at 12:11 pm
Kuzey (6/13/2014)
I have been using dynamic sql in an inner cursor and I get an error about the fetched variable of the outer cursor. How can I fix it?
And the...
June 13, 2014 at 12:04 pm
Viewing 15 posts - 6,241 through 6,255 (of 8,731 total)