Viewing 15 posts - 3,181 through 3,195 (of 7,614 total)
September 5, 2018 at 2:54 pm
September 5, 2018 at 1:12 pm
September 5, 2018 at 11:34 am
Re: NOLOCK
As background, here are some of the bad things that can happen under the default READ COMMITTED (RC) isolation that seem to be forgotten when discussing NOLOCK:
September 5, 2018 at 10:33 am
What often happens with partitioning is that, as part of the partitioning process, the table clustering is changed to be on date rather than some other column, such as identity. ...
September 4, 2018 at 1:28 pm
900 columns is not per se an issue.
But this particular table could have been and should have been further normalized.
You've made the mistake of assuming that...
September 4, 2018 at 10:46 am
That query doesn't make sense. You're doing an inner join based on "CompanyNids", so the values have to be equal for matching rows to be selected. But then you're setting...
September 4, 2018 at 10:38 am
With that many variables in the query, I'd think you want to use the RECOMPILE option:
OPTION (RECOMPILE)
I don't think the OPTIMIZE clause would then be relevant, but you...
August 31, 2018 at 8:19 am
INSERT INTO BANDALLOCATION
(BANDSYSID,ZONEID,RATETYPE,SIMPLEBREAKSINDICATOR,SERVICEID,VEHICLEID)
SELECT
1161,
1783,
'Mileage',
1,
...
August 30, 2018 at 9:59 am
SELECT '123567*' + Space(41-8)+ left(cast(ltrim(rtrim(Interest)) as varchar (7)) + Space(6), 7)+ Space(89-49) + '000'+ '0000123456' as String
August 29, 2018 at 3:30 pm
It'd be interesting if the current poster would cluster his table on ( ColA, ColB ), then run the original queries. The results will be vastly better than before, and...
August 29, 2018 at 8:24 am
August 29, 2018 at 8:16 am
Viewing 15 posts - 3,181 through 3,195 (of 7,614 total)