Viewing 15 posts - 901 through 915 (of 2,654 total)
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
you can't anymore as far as I know.
April 7, 2022 at 10: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
SSIS can do it - you do need to ensure you set the Text Qualifier to Double Quotes
March 22, 2022 at 7:58 am
on those items mentioned, dv360_Line_Item_ID, Date and Event look unique - but you would need to check all your data.
normally you would analyze the data by doing group by in...
March 18, 2022 at 11:24 am
use a construct like the following
select *
from tablename
cross join (select hashbytes('SHA1', concat(field1
...
March 16, 2022 at 11:41 am
I say again - you will never remove that warning from your plan unless the underlying type is the same as your destination column
stop wasting time on things that can't...
March 10, 2022 at 11:51 am
that individual its a waste of time - even the last comment - how to fix that particular conversion to code - was told how - can't do it obviously...
March 9, 2022 at 10:27 pm
Viewing 15 posts - 901 through 915 (of 2,654 total)