Viewing 15 posts - 1,066 through 1,080 (of 10,144 total)
Indianrock (12/9/2016)
December 9, 2016 at 8:39 am
Brandie Tarvin (12/9/2016)
rodjkidd (12/9/2016)
ChrisM@Work (12/8/2016)
rodjkidd (12/7/2016)
I'm about a 20 minute walk to the High Holborn Caffe 1882. Let me know if you still want to meet up today?
Chris, are you...
December 9, 2016 at 7:51 am
rgp151 (12/8/2016)
Remember, if I run just the part inside the outer nesting it runs in under...
December 9, 2016 at 7:45 am
"This query was written by a tool". ORM tools can only go so far and this query goes way beyond that. It's unwieldy, inefficient and difficult to engineer into a...
December 9, 2016 at 7:23 am
You could accelerate it by saving off DedupedSet as a temp table and indexing it - a clustered index on column A, possibly.
December 9, 2016 at 7:18 am
Recursion would usually be used for this Richard.
Try the following:
IF 0 = 1 BEGIN; -- Knock up some sample data
WITH MyData (A, B) AS (
SELECT 'ProdA', 'ProdB' UNION ALL
SELECT 'ProdB',...
December 9, 2016 at 5:11 am
moosamca (12/9/2016)
COuld you please help me to tune the below query. I have attached the query plan of this query. Its going ont he nested loop and its cost...
December 9, 2016 at 3:29 am
drew.allen (12/8/2016)
Peter Brinkhaus (12/8/2016)
SELECT
Q.memid,
Q.EffectiveDate,
Q.termdate,
...
December 9, 2016 at 2:32 am
Thom A (12/8/2016)
USE DevTestDB;
GO
CREATE TABLE Jobs (JOBID INT IDENTITY(1,1),
...
December 9, 2016 at 2:07 am
rgp151 (12/8/2016)
SELECT
x,
y,
z
FROM
...
December 8, 2016 at 9:50 am
rgp151 (12/8/2016)
Remember, if I run just the part inside the outer nesting it runs in under...
December 8, 2016 at 9:38 am
paul 69259 (12/8/2016)
Awesome thank you Chris, that seems to have done the trick for me.
Thanks for the feedback Paul, but it's really for Phil and Thom, who did all the...
December 8, 2016 at 7:47 am
Phil Parkin (12/8/2016)
INNER JOIN dbo.Drops D ON J.JobID = D.JOBID
As it...
December 8, 2016 at 7:35 am
Thom A (12/8/2016)
paul 69259 (12/8/2016)
it is something to do with that line
WHERE J.JOBID IN (SELECT sq.JOBID FROM dbo.Drops sq)
that it doesn't like
That statement should have very little effect...
December 8, 2016 at 7:07 am
rgp151 (12/7/2016)
December 8, 2016 at 6:35 am
Viewing 15 posts - 1,066 through 1,080 (of 10,144 total)