Viewing 15 posts - 916 through 930 (of 2,863 total)
Like TangoVictor, all of my stuff is on-prem as well, so my tips and advice may be useless.
Things I'd check (if possible) are logs on the server. I'm thinking that...
August 20, 2021 at 7:50 pm
I agree 100% with latkinson above. I know when I attended my first PASS Summit I was VERY new as a DBA and all my learning was from google and...
August 20, 2021 at 2:24 pm
I agree with Jeff here on not using a bat file for this UNLESS you are on SQL Express. If you are on SQL Standard or higher, then I would...
August 19, 2021 at 4:38 pm
I see 2 potential options here:
1 - contact WooCommerce to see if they can fix their data export to be in proper JSON format
2 - parse the text before importing...
August 19, 2021 at 3:37 pm
Pretty sure that query store isn't going to help you there. Query store is for storing execution plan statistics and it auto-flushes itself depending on the configuration you have set.
What...
August 18, 2021 at 2:15 pm
My opinion - either can do the install, but the DBA needs to do the configuration. The Server team should be able to handle an install as long as you...
August 17, 2021 at 2:47 pm
My understanding is that they are 2 completely different data capture methods. Ring buffer is a buffer and only exists in memory. The advantage to this is that you are...
August 16, 2021 at 9:31 pm
Pretty sure for this to work you are either going to need to have your stored procedure call a second stored procedure (likely the approach I would go with) OR...
August 13, 2021 at 4:29 pm
I updated my post as the forum apparently didn't like the alias I used.
Since you are updating everything and you are doing it every 24 hours, I would recommend trying...
August 13, 2021 at 3:20 pm
I would start development on this by making it work with a SELECT statement, which you can do with 2 JOINs. The basic logic of it is you want to...
August 12, 2021 at 2:13 pm
Probably a silly question but is there a reason you are wanting to drop ALL clean buffers and free ALL the caches before you do your steps? And why you...
August 11, 2021 at 7:29 pm
I think that this page will help:
https://www.sqlshack.com/max-worker-threads-for-sql-server-always-on-availability-group-databases/
The link above says that for 500 databases with 1 primary, 2 secondaries, and 1 availability group your MINIMUM threads should be 1501. The...
August 11, 2021 at 7:19 pm
Something along the lines of:
string text = ex.Message;
string path = @"C:\Data\TextFiles\logFile.txt";
System.IO.File.AppendAllText(path, text);
Although, if you are "really new to C#", I would recommend reading up a bit on...
August 11, 2021 at 3:55 pm
Quick google brought me to this:
https://www.linkedin.com/pulse/ssrs-2017-anonymous-authentication-problem-solved-frans-van-der-geer/
Following directions for SQL Server 2008 to configure something for SQL Server 2017 sounds like a recipe for disaster in my opinion. The fun part...
August 11, 2021 at 2:41 pm
I think the best way depends on what sort of issues you are looking for.
If it is frequent high CPU, then task manager or WMI or perfmon will tell you...
August 11, 2021 at 2:36 pm
Viewing 15 posts - 916 through 930 (of 2,863 total)