Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Get DBMail information

    And just for performance, I substituted table variables for the temp tables (and renamed the variables to fit my team's conventions) ...

    USE [master]

    GO

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE PROCEDURE [dbo].[procGetDbMailInformation]

    (@intRowCount INT...

  • RE: Database Backup Question

    The DBs will back up sequentially within a maintenance plan. A maintenance plan just builds up the needed SQL commands for you and fires them from top to bottom.

Viewing 2 posts - 1 through 2 (of 2 total)