Viewing 15 posts - 1,396 through 1,410 (of 2,905 total)
I think that depends on the tools you have and what you mean by memory and CPU utilization. I expect you are looking for an average load, but looking at...
January 12, 2021 at 4:54 pm
without knowing what you are trying to do on the database, I am not sure what direction to point you in.
But a good starting point would probably be sys.databases. It...
January 11, 2021 at 10:18 pm
Yep. It is called "Data Migration Assistant" and it applies to multiple SQL Server versions, not just 2019.
Something to note, it can be a bit of a resource hog if...
January 11, 2021 at 10:13 pm
It really depends. Yours looks to be customized as the "Subsequent failures" option is set to run a program (powershell) which I am fairly confident is non-standard.
My approach for systems...
January 11, 2021 at 4:52 pm
Step 1 - FULL BACKUP. Take a full backup so you can get back to your current state.
Step 2 - fix the snapshot issue. Quick google:
Which basically says you PROBABLY...
January 11, 2021 at 4:45 pm
Pretty sure it needs access to the internet to do what is needed for license validation.
That being said, why do you need this installed on a server? I don't think...
January 11, 2021 at 4:11 pm
As an alternate thing about the performance (just a guess as we have no DDL or query itself), indexes MAY not help. You say that it is a table with...
January 11, 2021 at 2:58 pm
I think what Jeffery was getting at was "who is the SQL Server Agent Service set to run as?". I have a feeling it is NT Authority/System which doesn't have...
January 11, 2021 at 2:45 pm
To answer your questions I would say "it depends". For you, I would say do it all application side and just push the row across to SQL with a simple...
January 8, 2021 at 10:11 pm
The logs are stored on disk along with the SQL instance in a folder called "Logs". You will be looking for the file "ERRORLOG" (no file extension) and you can...
January 8, 2021 at 10:00 pm
To me that sounds like it should be a good test set. I would also try forcing the failover by having the VM go offline (reboot the VM and see...
January 8, 2021 at 9:58 pm
Have you checked the SQL log? That will likely tell you what is wrong.
Now, if memory serves, the MSVCP100.dll is the Microsoft Visual C redistributable, so if that got updated...
January 8, 2021 at 9:49 pm
First question is easy. SELECT <columns> FROM <table> WHERE <date column> = CAST('09.01.2021' AS DATE)
Second question is a bit more tricky as it depends. This would likely be handled in...
January 8, 2021 at 8:39 pm
Quick google brought me to Microsoft's website on that view and to quote them:
Returns counts of different types of index operations and the time each type of operation was last...
January 8, 2021 at 5:30 pm
Possible? yes. Would I do it? no.
The reason I wouldn't do it is you are going to have a whole bunch of tables that are named by the date. Each...
January 8, 2021 at 2:06 pm
Viewing 15 posts - 1,396 through 1,410 (of 2,905 total)