Viewing 3 posts - 1 through 3 (of 3 total)
I'm not sure if you can use SQL2000 replication for this.
We are using DataMirror Transformation Server to replicate data from AS400 DB2 database to a SQL server. Go to...
January 11, 2005 at 9:57 am
you can try this:
Create table #Test(Id int,dup_id int)
GO
Insert #Test
Select 1, 100 union all -- Multi duplicates
Select 2, 100 union all
Select 3, 100 union all
Select 4, 100 union all
Select 5, 200...
August 13, 2004 at 1:36 pm
I used same statement with one more ELSE after first IF:
if (select databaseproperty('cav2dev', 'istrunclog')) = '1'
begin
print ' * recovery model is SIMPLE. *'
--set @flag...
June 25, 2004 at 11:13 am
Viewing 3 posts - 1 through 3 (of 3 total)