Hello,
Say i have a table named tbl1 in mysql :-
bookid int
name varchar(20)
price int
categoryid int
And then i have a 2nd table, tbl2 in Oracle :-
pubid int
name varchar(20)
addr varchar(50)
I want to combine these two into MS Sql Server 2008 named tbl3 whose structure should be :-
bookid int
name varchar(20)
price int
pubid int
name varchar(20)
Note that i know the tables are not meaningful but i just need the concept whether this thing is possible or not. And if yes then how? Which queries should i write? I don't want to use Sql Server Integration Services.
Thanks in advance :)