Viewing 15 posts - 946 through 960 (of 2,701 total)
I think that knowing why and how that function is called so many times may help pointing you to a better solution.
how all those hierarchical rules are applied may also...
May 21, 2022 at 2:21 pm
SSAS memory settings are the culprit here. In Enterprise edition, the memory limit for SSAS is the server max, so it is very probable that SSAS is competing against...
May 18, 2022 at 6:30 pm
make sure that TCP/IP protocol is enabled on the sql instance -= need to do it on server itself
May 7, 2022 at 5:15 pm
the query above would give an error with variable @FromDate as it is not declare WITHIN the @sql
if you are doing a exec @sql then this would fail - different...
May 5, 2022 at 2:07 pm
likely your tabular server memory settings not setup correctly - these can be tricky and need to be set according to whatever memory is available to the particular tabular instance...
April 26, 2022 at 8:06 pm
there are multiple things that can cause a connection to drop - increasing the timeout will not prevent those as it is only meant to prevent the timeout error itself.
for...
April 26, 2022 at 6:40 am
it means that if whatever command you are executing (a update/delete query or a exec of a SP, if it takes more than 30 seconds it will terminate its execution...
April 25, 2022 at 8:23 pm
instead of having all your tables as heap and with additional non clustered indexes (columnstore or not) try and make one of them a clustered columnstore (or a normal clustered...
April 11, 2022 at 7:14 am
while looking into it - was there a reason for you to build a heap with columnstore indexes instead of making one of them a clustered columnstore index?
April 10, 2022 at 9:49 pm
what is the compatibility mode of the database? - never mind - its 150.
Before trying anything else do a rebuild of the columnstore indexes on the tables used on the...
April 10, 2022 at 9:00 pm
use https://www.sentryone.com/plan-explorer - it has a option to anonymize the plan so all object names/columns get replaced with "object1, object2" and so on.
and put it on https://www.brentozar.com/pastetheplan/ and...
April 10, 2022 at 7:28 am
problem isn't VS 2022 - issue is that none of the SSRS options will work with .net core - mainly the report viewer which is a must have for many...
April 6, 2022 at 1:10 pm
its always the same issue - dev does not have same volume as QA/Prod and what runs well in dev most times will not run well with volumes.
Just a small...
April 4, 2022 at 12:31 pm
off course it can.
step 1 - set double quotes as text qualifier
step 2 - change the "numeric" column name << THE NAME itself>> to have double quotes around it
step 3...
March 23, 2022 at 10:31 pm
Viewing 15 posts - 946 through 960 (of 2,701 total)