Viewing 15 posts - 1,111 through 1,125 (of 6,678 total)
The reason you have an issue is because you are grouping on x.Plans - and not the result of the case expression. Change it to:
SELECT
case
when x.Plans =...
May 7, 2021 at 8:05 pm
One more thing - there are a few things that can be done much more easily/better using a script task than the execute process task or file system task or...
May 7, 2021 at 8:02 pm
If you have to do it in SSIS, you need (and forgive me if butcher the name because I avoid SSIS) a cmd exec task. The problem is that...
May 7, 2021 at 7:51 pm
Have you tried the ideas outlined here: https://www.brentozar.com/archive/2015/06/careful-testing-the-2014-cardinality-estimator-with-trace-flags/
May 7, 2021 at 7:33 pm
@ScottPletcher & @JeffModen:
You both are assuming an environment where there is a dev/test/uat/prod set up. Not saying the OP doesn't have that - but there are environments where that isn't...
May 7, 2021 at 7:29 pm
I would also change the process from .Move to a .Copy and a separate delete operation. The reason for that is simple - in Windows, when moving files the file...
May 7, 2021 at 5:54 pm
You cannot change the compatibility level of a database on the secondary only - it must be changed on the primary. I am assuming the reason for changing the compatibility...
May 7, 2021 at 5:19 pm
Not per application, but per SQL Database Engine Instance - unless you are using these terms interchangeably. We have 4 SQL Instances. Each Instance is 'shared' so running multiple...
May 7, 2021 at 5:14 pm
The only reason to connect SSRS to a specific database engine is if you are hosting the reportserver databases on that instance. The 'usually' better option is to install a...
May 6, 2021 at 9:22 pm
Jeffrey: Thanks for clarifying the process you are thinking of. There's some kind of disconnect here as I'm still not fully following you. That's OK though. We can...
May 6, 2021 at 8:17 pm
Yes, you are missing something.
You could process once a day...
May 5, 2021 at 10:05 pm
Also, have you tried to create a local shared drive as a possible solution?
Do you mean the following? : Copy the .csv files to the local...
May 5, 2021 at 9:30 pm
With random data being inserted into an nchar(50) column - there isn't going to be anything you can do to prevent fragmentation. Your best option is to reduce the number...
May 5, 2021 at 9:20 pm
That's the term that I've used for this before. I don't know how it works because it's out of my wheelhouse at work but it works.
The good part...
May 5, 2021 at 8:49 pm
I know what you are saying about creating a proxy. I know how to do that and how to assign the proxy in Agent. The problem is that...
May 5, 2021 at 8:03 pm
Viewing 15 posts - 1,111 through 1,125 (of 6,678 total)