Viewing 3 posts - 1 through 3 (of 3 total)
The goal is to have two copies of each full backup and each log backup stored on different physical media (in this case, the D: drive and F: drive on...
August 17, 2009 at 12:18 pm
How about this:
CREATE FUNCTION dbo.fGetDateTimeString
(
@dt datetime
)
RETURNS varchar(12)
AS
BEGIN
RETURN Convert(varchar(8), @dt, 112) + Replace(Convert(varchar(5), @dt, 114), ':', '')
END
July 31, 2009 at 8:31 am
Gail and Lynn,
Thanks for responding so quickly. I performed a quick test whereby I made a full backup followed by 4 sets of dual log backups. This is a...
July 30, 2009 at 10:15 am
Viewing 3 posts - 1 through 3 (of 3 total)