hi,tanx for your reply
actually i just need to take data from ms sql to db2 not in both ways ,so could u please explain how should i do with replication to take data?
ok let me explain how is the look of table:
MS sql table:
aspnet_users(
UserID uniqueidentifier
.
.
.
.)
DB2 table:
create table USER_PROFILE(
UserName varchar(50) Not NUll,
Full_Name varchar(100),
Mobile_Number varchar(20),
password varchar(10),
nationality varchar(15),
Faculty varchar(50),
Academic_Status varchar(20),
Master_ProgName varchar(50),
PRIMARY KEY (UserName));
I want UserId be foreign key in my user_profile table,what should i do?tanx