Viewing 5 posts - 1 through 5 (of 5 total)
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...
August 26, 2004 at 10:22 am
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...
August 16, 2004 at 9:47 am
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...
August 12, 2004 at 10:33 am
Hi
You need to use the column "type" in table msdb..backupset to differentiate full and diff backup. Pls refer BOL about this column
August 12, 2004 at 10:25 am
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...
August 11, 2004 at 3:00 pm
Viewing 5 posts - 1 through 5 (of 5 total)