Forum Replies Created

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

  • RE: SQL 2008R2 Uptime

    Thom A - Friday, December 21, 2018 5:01 AM

    What do you mean what should you do? If you can't control it there's...

  • RE: SQL Server 2012 latest multiple db restore script

    --Using a shared drive in a server

    --Initial Instance

    BACKUP DATABASE [Database1] TO DISK = N'\\share\Backups\Database1_20140417-0100.bak'

    WITH NOFORMAT, NOINIT, NAME = N'Database1s-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10;

    --Destination Instance

    RESTORE DATABASE...

  • RE: Median or Average function for char(10) = '0-5'

    declare @C varchar(10) = '0-5'

    declare @d varchar(10) = '.5'

    select avg(@c) to be int=2.5 --??? how to do this

    select avg(@d) to...

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