Viewing 15 posts - 481 through 495 (of 2,648 total)
small error on my original code - the temp table was referring an non existing alias (t1)- easy to fix I think.
another attempt at simplifying it assuming that I correctly...
June 5, 2023 at 2:39 am
no difference.
your code was only looking for the the friday date on a particular situation e.g. when the EXPIRATION = Thursday
so by determining all the FRIDAY dates in advance, subtracting...
June 5, 2023 at 2:07 am
adding further indexes on this case likely not the best - the underlying table is a columnstore table.
the thing that would speed up the most is to have a computed...
June 5, 2023 at 1:47 am
a image of the plans don't help much - please post the real explain plan - actual if possible.
use https://www.brentozar.com/pastetheplan/ for it
June 4, 2023 at 9:22 pm
SSIS has behind the scenes to retrieve the table metadata - this error seems to indicate a mismatch between the server and the client driver - or some parameters need...
June 2, 2023 at 10:53 am
this is one of those cases where you do NOT want to use SSIS native dataflow to do the transfer.
June 1, 2023 at 11:55 am
I would not consider it a big issue for now - you can still install prior versions of SSMS and keep using it.
May 29, 2023 at 10:27 pm
does it work if you try
DECLARE @ids NVARCHAR(max)
select @ids = string_agg(inserted.[lo_location], ',')
from (select X.query('.').value('(row/lo_Location)[1]', 'int') as lo_location
...
May 25, 2023 at 7:48 am
change your select to include all columns from the commented out join - and uncomment it out as well and order by variant code
then look at the results and see...
May 25, 2023 at 6:30 am
what is the aversion at googling before posting? a simple google for "powershell wait" returns you the command you need to use for it.
May 24, 2023 at 10:54 pm
NVARCHAR is not needed for french characters, neither is a french collation (which does affect ordering but not much more). but SSIS being very picky will require NVARCHAR on destination...
May 23, 2023 at 2:37 pm
that has to do with what the encoding of the files are, the encoding defined on your SSIS package file definition (and potentially on any transforms you may have on...
May 23, 2023 at 12:28 pm
Hello and thanks in advance if you can help.
I guess its somewhat acceptable in dimensional modeling to use the INT data type when creating a date dimension surrogate key....
May 22, 2023 at 5:43 pm
quoting just to keep original text - reporting original due to spam signature links
simple script in Python that can be used to de-identify data by replacing sensitive information with...
May 20, 2023 at 10:21 am
it would help if you stated working hours time zone. including core hours for team availability. that may push some not to be interested at all.
May 18, 2023 at 6:46 am
Viewing 15 posts - 481 through 495 (of 2,648 total)