Viewing 15 posts - 3,481 through 3,495 (of 26,490 total)
Brandie Tarvin (8/19/2016)
Lynn Pettis (8/19/2016)
And then we have people that think they can learn our job from a book.
blink
blinkblink
Ummmm, that's how I learned it. Books and a small PC and...
August 19, 2016 at 10:08 am
And then we have people that think they can learn our job from a book.
August 19, 2016 at 8:54 am
Sean Lange (8/19/2016)
Jeff Moden (8/19/2016)
The Dixie Flatline (8/18/2016)
Jeff Moden (8/18/2016)
I guess it's my turn in the proverbial barrel.For this, you wear the HAT OF SHAME.
Heh... Cross out the "S" and...
August 19, 2016 at 8:54 am
Here is my solution:
declare @test-2 table(
PatientNumber int,
DischargeDate date
);
insert into @test-2
values (1,'2015-11-30'),
(1,'2016-01-01'),
(1,'2016-03-04'),
...
August 18, 2016 at 3:23 pm
Grant Fritchey (8/17/2016)
August 17, 2016 at 9:42 am
CELKO (8/15/2016)
1) go up or down from "x5" alternating.
2) go up or down from "x5" in a uniform random distribution.
3) go...
August 16, 2016 at 8:18 am
sqld-_-ba (8/15/2016)
FYI, the salary survey has been published on home page - https://www.surveymonkey.co.uk/r/SSC-Salary-Survey-2016Spread the word !
You might want to make your link clickable.
August 16, 2016 at 8:16 am
The Dixie Flatline (8/12/2016)
You could put all your special...
August 12, 2016 at 1:59 pm
Solomon Rutzky (8/12/2016)
Lynn Pettis (8/12/2016)
August 12, 2016 at 1:36 pm
Depending on the query, the column(s) in the INCLUDE clause could benefit the WHERE clause or the ORDER BY clause. It really comes back to "It depends."
August 12, 2016 at 10:21 am
nsadams87xx (8/12/2016)
So it really should only be used with columns that are not updated very often, have large amounts of data, and those columns are often used together?
It depends. ...
August 12, 2016 at 9:50 am
When you use the INCLUDE to add non-indexes columns in an index, that data is actually copied from the heap or clustered index into the nonclustered index. The included...
August 12, 2016 at 9:33 am
Alvin Ramard (8/12/2016)
In your CASE statement, try changing "pr.hours" to "CAST(pr.hours as decimal(38,2))".
You are going down the path I was, just couldn't recreate the problem with a simple setup.
August 12, 2016 at 9:27 am
Solomon Rutzky (8/12/2016)
Lynn Pettis (8/9/2016)
Here is the itvf I created for the...
August 12, 2016 at 9:23 am
shezi (8/11/2016)
pr.Hours is real and where you see the hardcoded value that is also column(ActualHours) which is integer but I hardcoded the value though.
With a simple setup I can't...
August 12, 2016 at 9:17 am
Viewing 15 posts - 3,481 through 3,495 (of 26,490 total)