Let's say I have a table called tbl1 in mysql: -
bookid int
name varchar(20)
price int
categoryid int
And then I have a second table, tbl2 in Oracle: -
pubid int
name varchar(20)
addr varchar(50)
I want to combine these two in MS Sql Server 2008 with the name tbl3, the structure of which should be: -
bookid int
name varchar(20)
price int
pubid int
name varchar(20)
Note that I know that tables do not make sense, but I just need to understand if this is possible or not. And if so, how? What queries should I write? I do not want to use Sql Server Integration Services.
Thanks in advance:)
source
share