Viewing 15 posts - 1 through 15 (of 6,678 total)
The system databases are not mirrored - so any information on backups would need to be combined across all nodes in the AG to be able to see the history.
August 28, 2025 at 8:55 pm
First - the secondary must be configured for read-only or read-intent, and you must have Read-Only Routing defined for each node in the AG.
If you have both of those, then...
June 2, 2025 at 9:45 pm
I don't think making this SARGable is going to help performance - but you also have another issue. Using DATEADD(DAY, 1, SYSDATETIME()) returns tomorrow's date with the time set to...
May 21, 2025 at 6:56 pm
Just gonna leave this here:
https://www.mssqltips.com/tutorial/how-to-shrink-the-transaction-log/
I don't think the OP is asking about how to shrink the file - rather, the VLF's are not getting cleared and marked as reusable.
First...
April 19, 2025 at 2:37 pm
It always makes me wonder why someone would use SSIS to call code in SQL Server that references a linked server to a third-party database system. That just adds complexity...
April 19, 2025 at 2:18 pm
I would add to Perry's statements - ideally you should be using MSA or gMSA accounts to run SQL Server services.
March 15, 2025 at 4:18 pm
What storage array are you using - and did they configure the storage using some type of tiering architecture?
I had a similar issue where everything worked fine the first time...
March 14, 2025 at 7:39 pm
I think the only way you can get that 'delayed validation' would be to use dynamic SQL.
With that said - the real problem here is that you are even using...
March 8, 2025 at 5:31 pm
You can use the menu option File | Save
or File | Save As
to save the .sql file to any location you want. By default - there will be...
February 24, 2025 at 10:35 pm
CHOOSE is really just short-hand for a simple case expression:
CASE CatID
WHEN 1 THEN 'Laptops'
WHEN 2 THEN 'PCs'
...
February 19, 2025 at 9:29 pm
VS 2017 or VS 2022?
You stated you installed the 2022 SSIS extension - but then stated you cannot open a project in VS 2017. If you are using VS 2017...
February 19, 2025 at 9:18 pm
Generally - changes to objects in SQL will be performed using code. All the GUI does is generate the code for you and then execute that code.
What I would recommend...
February 15, 2025 at 4:40 pm
Thank you, Jeffrey.
I was able to get the display back by choosing Databases, right clicking and choosing Refresh.
Just proves what a complete noob I am, eh?
No worries
February 13, 2025 at 10:20 pm
On the off chance you didn't do this - try refreshing object explorer.
If you have already tried that, then try opening the system databases - then master database - and...
February 13, 2025 at 7:03 pm
Viewing 15 posts - 1 through 15 (of 6,678 total)