Viewing 15 posts - 196 through 210 (of 2,648 total)
can you post a deadlock xml so we can look at it.
as well as the code involved in writing-reading that log table
May 6, 2024 at 1:08 pm
not much you can do here other than rewrite that view (and likely the views contained within it).
likely best thing is to see what really needs to be retrieved and...
May 4, 2024 at 1:44 pm
if you tried to upload a sqlplan here it won't work - you need to use https://www.brentozar.com/pastetheplan/ and share the link to it here
May 4, 2024 at 11:09 am
but one thing you can take for granted - all currently supported versions of the software you mentioned work in all currently supported versions of Windows (and in some *Nix)...
May 2, 2024 at 12:41 pm
Thanks for the advise.
If you don't mind me asking - why do you advise that? I'm not disagreeing, I'm asking because I'm new to Powershell and interested to learn.
I...
May 2, 2024 at 10:45 am
just noticed this was part of a SQL Agent step.
word of advise - NEVER EVER use powershell directly on a step - either code it in C# on a SSIS...
May 2, 2024 at 10:22 am
change process so that you use staging tables (not tempdb!!!) for each task - and you switch in/out of these and it is also where you do your inserts (so...
May 1, 2024 at 7:52 pm
it is possible to load a DLL that is NOT in the GAC - have a look at the following
https://cultivatingsoftware.wordpress.com/2018/08/21/ssis-load-dll-gac/
April 29, 2024 at 3:14 pm
There is an app that was sending DML requests from a SQL2016 to SQL2008, and we saw lots of issues and it could have been driver related where record...
April 28, 2024 at 12:38 pm
instead of trying now to follow a different approach why don't you tell us, very detailed, what you are trying to accomplish with having some software inserting those sql statements...
April 27, 2024 at 12:35 pm
too many things to consider in order to say if there is a more efficient way - depends on volumes and number of times it is executed as well if...
April 25, 2024 at 10:55 pm
works fine with a few caveats
performance impact will depend on your activity and server spec - bad server with lots of activity and it will be noticeable.
using a custom view/proc...
April 25, 2024 at 10:27 pm
your problem is that your "ltrim" is on the wrong place, and the string compare inside does not find the required matches)
following works
drop table if exists #employee
CREATE...
April 25, 2024 at 10:21 pm
you have 2 issues to address.
1 - if your destination datatype is a date then your variable assignment needs to cast it as a datetime, not as a string -...
April 24, 2024 at 5:56 pm
you most likely have the Azure agent still active on your server (these are installed by default on the azure vm's depending on how they are created - or on...
April 24, 2024 at 12:15 pm
Viewing 15 posts - 196 through 210 (of 2,648 total)