create DBF files using SSIS

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sreekanth123
    New Member
    • Apr 2007
    • 1

    create DBF files using SSIS

    Hi,
    I want to use data from a sql database and convert it to DBF files using SSIS.

    i.e., Want to extract data from a sql table say "abc" and output i want is a DBF table "abc.dbf" .this should be done using SSIS.
  • Jos Haemers
    New Member
    • Feb 2008
    • 1

    #2
    I'm having the same question. Did you find a solution?


    Originally posted by sreekanth123
    Hi,
    I want to use data from a sql database and convert it to DBF files using SSIS.

    i.e., Want to extract data from a sql table say "abc" and output i want is a DBF table "abc.dbf" .this should be done using SSIS.

    Comment

    • jagged
      New Member
      • Feb 2008
      • 23

      #3
      Check out: http://technet.microso ft.com/en-us/library/aa337084.aspx

      Explains how to make a connection to a DBF. After that it's normal ssis stuff.

      If you get the "cannot convert unicode to non-unicode error on your columns" error, use a query to CAST() your strings to nvarchar or nchar...

      Good luck

      Comment

      Working...