Viewing 15 posts - 796 through 810 (of 2,863 total)
Alternately, rather than dropping the tables and recreating them (not a process I generally do in a stored procedure), how about doing a TRUNCATE/DELETE at the start and an INSERT...
November 9, 2021 at 4:33 pm
One approach would be to modify them and add in a logging table to capture when the stored procedure is called.
Another way would be to start a profiler trace and...
November 9, 2021 at 4:25 pm
Since you get an authentication error, I would be willing to bet the problem is with the authentication somewhere.
Did a quick google, and found this:
https://www.liquidweb.com/kb/troubleshooting-microsoft-sql-server-error-18456-login-failed-user/
Not specific to Azure, but should...
November 4, 2021 at 9:06 pm
I think the problem is that a CASE statement cannot return 2 values like that.
The idea of a CASE statement in SQL is that if the lookup value is X...
November 4, 2021 at 8:44 pm
For me, I don't manage the hardware side of things, so I care less about the hardware and actually have very little say in what hardware I get. It is...
November 4, 2021 at 2:17 pm
You say you are using an application - is there a reason you are not just pulling the Excel data in through that rather than using SQL Server as a...
November 3, 2021 at 2:03 pm
To me it looks like your statistics are out of date. Your estimates are WAY off from the actuals which usually indicates bad statistics.
I would start there.
Another thing - I...
November 3, 2021 at 1:41 pm
I agree with both Phil and Michael. Phil's comment about query store sounds like it is similar to Oracle's AWR. Or so is my my understanding of query store.
And Michael...
November 2, 2021 at 8:53 pm
My opinion - I wouldn't reinvent the wheel. There are a LOT of good monitoring tools out there and I would just use one of those.
The good SQL monitoring tools...
November 1, 2021 at 4:56 pm
Script debugging is always interesting. The "best" (ie only) way I know how to do it is to find good breakpoints and run your code up until that breakpoint. Next,...
November 1, 2021 at 2:46 pm
I think I can answer both questions, but I would still recommend doing it in a test environment first.
So question 1 - my understanding is that SSRS hasn't had any...
November 1, 2021 at 1:50 pm
Jeff - your approach is what our devs (myself included) are migrating to (I think). Basically, the connection string gets stored in a settings file that is read on app...
October 30, 2021 at 5:57 pm
As a guess - I would say that WinSCP probably has a list of valid fingerprints stored somewhere and when you connect, it checks the fingerprint against the known good...
October 30, 2021 at 5:51 pm
That makes sense as the fingerprint is the fingerprint of the remote server.
I would recommend looking at some of the example scripts on the WinSCP site. This one specifically should...
October 29, 2021 at 5:55 pm
I would check to make sure the input is valid. Double check the values you are passing into the properties of WinSCP. For example, check the value of "$config.Configuration.HostName". is...
October 29, 2021 at 5:02 pm
Viewing 15 posts - 796 through 810 (of 2,863 total)