Viewing 15 posts - 661 through 675 (of 4,820 total)
August 28, 2018 at 12:46 pm
The following query could form the basis of a CURSOR that could, for each row, execute the necessary SQL to check fragmentation, although I suspect you could probably just JOIN...
August 28, 2018 at 11:49 am
bswhipp - Tuesday, August 28, 2018 10:44 AMI do have knowledge of vb but never did a webservice call
And doing one presumes...
August 28, 2018 at 11:24 am
August 28, 2018 at 10:28 am
Views with UNION ALL in them and large row counts are always going to be problematic. If you can't deconstruct the views within your stored procedure because your company insists...
August 28, 2018 at 10:16 am
August 28, 2018 at 10:06 am
When I encountered a similar situation my solution was to replace not only...
August 27, 2018 at 8:06 am
August 27, 2018 at 8:03 am
Integer Math. You have to do something to tell SQL Server that when it divides two integer values that you need a decimal result. The only effective way to...
August 27, 2018 at 7:01 am
Please find below for my ans for your question.
...
August 24, 2018 at 12:31 pm
August 24, 2018 at 12:11 pm
How about we add the YEAR to the GROUP BY ? Here's some more formatted code for you:DECLARE @DateFrom AS date = '20180101',
@DateTo AS date = '20180821';
August 24, 2018 at 10:53 am
WHERE ClaimMain.OpeningRegistrationDate BETWEEN DATEADD(YEAR,-1,@DateFrom)...August 24, 2018 at 10:30 am
The biggest problem here is what value would one want when you have, say, 113/16" ??? Is that 1 and 13/16, or is it 11 and 3/16 ??? If you...
August 24, 2018 at 9:17 am
Viewing 15 posts - 661 through 675 (of 4,820 total)