Viewing 4 posts - 1 through 4 (of 4 total)
In fact, it is sqlservercentral mangling the formatting.
/*
--Original inspiration: https://simplesqlserver.com/tag/sys-dm_exec_requests/
/// On Blocks and SQL Statements:///
Sometimes the most *recent* sql cmd does not reflect the source of the...
April 29, 2024 at 8:17 am
There were numerous syntax errors as the there were hundreds of missing spaces. I slogged through and did a few search and replaces. After fixing that, I renamed some of...
April 29, 2024 at 8:14 am
This returns:
the actual error message
--------------------------------------------------------------------------------------------------------------------------
Cannot open backup device 'https://<url>/aaa.bak'. Operating system error 2(The system cannot find the file specified.).
April 17, 2024 at 8:31 am
use dba
go
create or alter procedure sqlserver.PollForURLBackup (
-- @URL nvarchar(500),
@DBBackup nvarchar(500),
@TimeOutSeconds int
) as
set nocount on
drop...
April 17, 2024 at 8:27 am
Viewing 4 posts - 1 through 4 (of 4 total)