Hiya mmhaise,
Here's one way,
1> create table t1 (c1 int, c2 char(10))
2> go
1> create table t2 (c3 int, c4 char(10))
2> go
1> create unique index pk on t2 (c3, c4) with ignore_dup_key
2> go
1> insert into t1 (1, "Hello")
2> go 10
(1 row affected)
10 xacts:
1> insert t2 select * from t1
2> go
Duplicate key was ignored.
(1 row affected)
Cheers
Willy