Forum Replies Created

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

  • RE: Select out rows into one result - Similar Problem

    I am not sure if i understand the question right. But I like the power of "case" when it works with "group by". pls see below sql:

    create table test_tab

    (item  int

    ,color...

  • RE: Updating rows from the same table

    let me try to answer this:

    say the table name is A

    update t1

    from A t1 join A t2 on (

    t1.column1=t2.column1 and

    t1.column2=t2.column2 and

    ......... and

    t1.identity_column<t2.identity_column

    )

    The key point is you treat one physical table...

  • RE: Veritas Diff/Full Backups

    I am in the same situation to use Veritas instead of going to disk using SQL Maintenance Plans and then to tape.

    But I am not familiar with Veritas very much, I...

  • RE: Veritas Diff/Full Backups

    Hi

    You need to use the column "type" in table msdb..backupset to differentiate full and diff backup. Pls refer BOL about this column

  • RE: Backup & restore - Who should do?

    Once I was told that Veritas Backup use sql server backup engine ("native" backup method) to do database backup on SQL Server, so I was pretty comfortable with veritas backup. I did several...

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