Viewing 10 posts - 1 through 10 (of 10 total)
This is my output, Please help me. I want to get copy and restore also
December 21, 2017 at 8:40 am
I want to copy and restore output, please modify script and help me... Thanks in advance
December 21, 2017 at 7:59 am
This is output, I want add secondary server output also
December 21, 2017 at 7:58 am
Here two scenarios, I want to check daily size of log backup's in log shipping and i want to monitor hourly log backup size
December 15, 2017 at 10:33 am
above script for daily, you mention -1 (for hourly)
December 15, 2017 at 4:15 am
select subquery.DATABASE_NAME,
SUM(bkSize_KB) as SumBkSize_KB,
SUM(bkSize_MB) as SumBkSize_MB,
SUM(bkSize_GB) as SumBkSize_GB
from
(
SELECT
A.[Server],
A.DATABASE_NAME,
A.last_db_backup_date,
B.backup_start_date,
B.expiration_date,
CAST(b.backup_size / 1000 AS INT) AS bkSize_KB,
CAST(b.backup_size / 1000000 AS...
December 15, 2017 at 4:14 am
I want log backup size in hourly/daily (sum of size) in log shipping. Historically last 10 days.
December 15, 2017 at 4:00 am
I want this pattern output in primary server log shipping.
December 15, 2017 at 2:15 am
Above script showing only hourly, I want calendar date and hourly and day wise
December 15, 2017 at 1:43 am
select subquery.DATABASE_NAME,
SUM(bkSize_KB) as SumBkSize_KB,
SUM(bkSize_MB) as SumBkSize_MB,
SUM(bkSize_GB) as SumBkSize_GB
from
(
SELECT
A.[Server],
A.DATABASE_NAME,
...
December 15, 2017 at 1:41 am
Viewing 10 posts - 1 through 10 (of 10 total)