Viewing 15 posts - 121 through 135 (of 2,568 total)
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
Hello all,
I would like to create an INSERT statement and use a UDF as part of the VALUES() set. The UDF generates a unique product code based on the
April 24, 2024 at 9:27 am
search these forums for PIVOT or CROSSTAB queries and you will find a few answers - google also has plenty of examples.
then get back to us with issues if any...
April 23, 2024 at 12:19 pm
I am trying to set a date filter on several large transaction tables to limit the years loaded.
When I use a hardcoded filter like:
DATEFROMPARTS ( DATEPART(yyyy, GETDATE()) - 4,...
April 22, 2024 at 10:38 am
when I do listen (mostly when working late hours on projects) is this one https://www.mixcloud.com/ovat83/best-90s-megamix-2hour-party-mix-track-select-list-available-in-description/
not quite what most would listen to "smooth" the spirit
April 22, 2024 at 9:30 am
Viewing 15 posts - 121 through 135 (of 2,568 total)