Viewing 15 posts - 106 through 120 (of 2,339 total)
My AD account is already in a group that is a local admin on the server. And so is the SQL Server service account.
Why is the SQL Service account...
July 21, 2023 at 7:52 pm
I think there shouldn't be time zones, let alone DST. The entire globe should be Noon, as an example. Pick a time zone, and the whole world can follow it.
You...
July 18, 2023 at 6:13 pm
$File = "C:\CostLoads\Book1.xlsx"
$Instance = "xxxxx"
$Database = "DBA_USAGE"
$fileName = [System.IO.Path]::GetFileNameWithoutExtension($File)
foreach($sheet in Get-ExcelSheetInfo $File)
{
$data = Import-Excel -Path $File -WorksheetName $sheet.name | ConvertTo-DbaDataTable
$tablename = $fileName + '-' +...
July 17, 2023 at 5:37 pm
Initialize from a backup, which is usually far faster than a snapshot.
On an semi-related note. How many publications do you have? Have you considered creating multiple publications?
Such as:
July 13, 2023 at 4:46 pm
Seriously, it sounds like whatever option you choose will be a lot of work.
Maybe it's time to do it with three separate columns. You can add the three columns to...
July 12, 2023 at 3:26 pm
Using the code below, we did not raise an error.
If [dbo].[IsPrimaryInAG](agname) = 1 Begin
Execute job
End
I guess what are you trying to find out by raising an error?
/******...
July 12, 2023 at 2:02 pm
correct in terms of license but if no readable secondary we can go for cluster that might save resources right.
It depends upon the requirements and need. Clustering requires shared...
July 11, 2023 at 2:43 pm
AG meant for read only secondary , why not use it and configure SSRS there.
Not always. If you have a read only secondary, you will need to license the...
July 11, 2023 at 1:51 pm
I do not have a recommendation. But this may be a better question to pose on a site like Toms Hardware or something similar.
July 10, 2023 at 5:16 pm
Instead of raising an error, simply test if the server is the active node.
July 10, 2023 at 5:03 pm
Unless you create your own script to test for the existence of a full backup prior to the log backups, Maintenance Plans have n0thing that does this.
The question is why...
July 10, 2023 at 1:58 pm
As you have not provided the logic for your 'business month end' calculation, I'm not sure how you are expecting anyone to calculate it.
EOMONTH() gives you end of...
July 10, 2023 at 1:09 pm
You examples are not duplicate rows. The fact that the Notes column is different in each row makes each row unique.
Your expected results removes all of the rows where the...
July 5, 2023 at 4:53 pm
I have a problem where I intend the following on a Transactional Replication with a Push subscription;
1 - 10 rows were inserted into Table 1 on Publisher. I want...
July 3, 2023 at 2:23 pm
I have a problem where I intend the following on a Transactional Replication with a Push subscription;
1 - 10 rows were inserted into Table 1 on Publisher. I want...
July 3, 2023 at 2:22 pm
Viewing 15 posts - 106 through 120 (of 2,339 total)