Viewing 15 posts - 2,686 through 2,700 (of 59,086 total)
Thanks, Jeffrey.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 29, 2022 at 11:33 pm
Interesting... Just one more question, please... have you ever done a restore to test all of that (including log files)? Knowing you, I'm sure you have but I've got to...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 29, 2022 at 11:22 pm
Daily full backups, log backups every 10 minutes.
So what's with the "Copy Only" backups? Those aren't your "Daily full backups" are they?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 29, 2022 at 10:30 pm
To be accurate, I cannot actually run differentials in this environment either because we backup the databases from the secondary and you cannot run differentials from a copy only...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 29, 2022 at 10:04 pm
@Jeffrey Williams,
How big is the largest server instance that you're doing the Daily full backups on?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 29, 2022 at 7:11 pm
Which Anti-Virus are you using, please?
And when you disabled the AV, did the odd entries for backups disappear, as well, or are they still appearing?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 29, 2022 at 1:33 pm
Much appreciated so a phenomenal plan, your thought worked for me.
I smell spam cooking.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 29, 2022 at 1:20 pm
Just to play the devil's advocate here and make you think: 🙂
How do you want to handle if the date in Table A is right in the middle between...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 28, 2022 at 9:57 pm
thanks all for help on the logic !
You're welcome. Were you able to fix your problem and, if so, what was the fix you employed?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 28, 2022 at 9:46 pm
My "general" recommendation for backups is...
Of course, that's subject...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 28, 2022 at 12:38 am
My "general" recommendation for backups is...
Of course, that's subject to change...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 27, 2022 at 7:34 pm
I use a combo of CTE and XML to split the strings makes it super fast and easy.
DECLARE @DELIMITER VARCHAR(50)='|||'
;WITH CTE AS
(SELECT
S.NAME
,SOUCE=S.RAW_DATA
,XML=CAST('<M>' + REPLACE(S.RAW_DATA, @DELIMITER, '</M><M>')...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 27, 2022 at 7:29 pm
I can't wait for the 2022 Developer's Edition to come out so I can test. I normally don't bother with public test versions and won't with 2022 either. That and...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 27, 2022 at 1:01 am
in case anyone hits this issue down the road, I found this article very useful.
https://ruslanmv.com/blog/How-to-connect-MySQL-Server-with-AWS-Glue
Nice link. Thanks for posting it.
--Jeff Moden
Change is inevitable... Change for the better is not.
September 27, 2022 at 12:40 am
and using a sql agent proxy (can be per defined 1 per job) is in a way better than using the xp_cmdshell proxy (system wide).
on a multi-tenant server using...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 27, 2022 at 12:33 am
Viewing 15 posts - 2,686 through 2,700 (of 59,086 total)