Viewing 9 posts - 1 through 9 (of 9 total)
Chris Harshman (12/13/2016)
I guess I'm confused as to what has changed from last week? You still have this confusing code: .
Kindly read this join as below :
from dbo.EOS_Reports c...
December 13, 2016 at 11:41 pm
Chris Harshman (12/7/2016)
...
from dbo.EOS_Reports c with (nolock)
INNER JOIN #TempUserAccess T on T.AccessID = c.OrgPathID AND T.AccessType = 'NONSHARED'
where
...
December 13, 2016 at 7:11 am
Chris Harshman (12/6/2016)
sqlandbiuser (12/6/2016)
Any...
December 7, 2016 at 3:48 am
Procedure is still slow and taking more time for more records.. For 150K records, given select proc takes more than 10 mins to get the data.
Any further inputs will...
December 6, 2016 at 4:41 am
Chris Harshman
I'd agree with Sean here, the first thing is to replace that splitter function you're using, and preferably only parse the strings once. If you need to get...
December 6, 2016 at 1:03 am
Chris Harshman
OK looking at the whole stored procedure code (I could only see part of it using the sqlplan file), I can see that the second part of the...
December 5, 2016 at 1:11 pm
When considering how SQL Server uses indexes, the order of the columns in the index matters. Since you said the clustered index definition is (InstanceId, OrgID, Sharedid), and OrgID...
December 5, 2016 at 12:56 pm
@SSCrazy- Thanks for these valuable inputs..
fn_SplitString - This function is used to split the pipe delim. parameters being passed from multi-select dropdown boxes, and we have 5 such parameters. As...
December 5, 2016 at 12:20 pm
Thank you Gail. I've got hint on next steps. I'll come back if I need more help on moving data.
February 22, 2016 at 3:02 am
Viewing 9 posts - 1 through 9 (of 9 total)