Results 1 to 2 of 2

Thread: How to transfer data from MY SQL To MS SQL Server

  1. #1
    Join Date
    May 2010
    Posts
    1

    How to transfer data from MY SQL To MS SQL Server

    Hi,

    I have one Database Name DB_Emplolyee in Sql Server 2005 on particular server named ABC. It has only one Table name Employee
    The Structure of table is as follows

    Emp_id int Not Null
    FName varchar(20) Null
    MName varchar(20) Null
    LName varchar(20) Null
    DeptID int Not Null
    DepTName varchar(20) Not Null

    The table is empty.

    Now there is same database DB_Employee in MY SQL on a server name XYZ. It has same Table name Employee. The structure of table is also same.
    The table contains 20 records. Now I want to transfer this 20 records into database DB_Employee of MS SQL Server. This transfer should be online.
    How can I do this . Please give me some solution.

    Regards,
    Nikhil

  2. #2
    Join Date
    Sep 2002
    Posts
    5,938
    Can try with linked server, ssis package, data import wizard, ...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •