Subject | Re: FB Export to SQL Server using External Tables |
---|---|
Author | Larry Hengen |
Post date | 2005-03-25T00:22:15Z |
--- In firebird-support@yahoogroups.com, Todd Brasseur <todd@c...> wrote:
syntax for the ExternalFileAccess setting, and due to the dropping of
NULL values and the need to support BLOB column types I have chosen to
author a custom conversion program.
> Milan Babuskov wrote:suggestions?
>
> >Larry Hengen wrote:
> >
> >
> >>I am attempting to recreate our Firebird database in SQL Server
> >>including all data. I have contemplated using external tables to
> >>export from FB and then BULK INSERT into SQL Server.. Any
> >>should be the
> >>Anyone tried this? What are the limitations? Is this the fastest
> >>technique?
> >>
> >>
> >
> >External tables will lose all NULLs you may have in tables. It
> >fastest way, but surely not the most reliable.data-pump
> >
> >Next fastest (which I would recommend too) is that you use some
> >that knows about Firebird and MSSQL server. There is freewareInterbase
> >DataPump by CleverComponents, but the last version I tried couldonly copy
> >from MSSQL to Firebird, and not the other way. If you have a fewhours you
> >could write a simple PHP script to do it for you.and just
> >
> >Slowest, but simplest would be to dump data as INSERT statements
> >execute that inserts on target. There are many tools which can dothis, almost
> >every Firebird administration tool can. In case you go down thisroad and wish
> >to automate the process, you could use FBExport:between
> >
> >http://fbexport.sourceforge.net
> >
> >HTH
> >
> >
> >
> I don't know much about SQL Server but I have done it many times
> FIREBIRD and Microsoft ACCESS.Table.
>
> I link to the Firebird Tables Using ODBC. I write an Update Query in
> Access that queries on the Firebird table and updates the ACCESS
> This is very fast. I have also used ACCESS to do this between twoThanks all for your responses. I have not been able to determine the
> different Firebird Databases. This is also very fast and works with
> Blob fields containing text as well.
>
> Todd
>
>
> [Non-text portions of this message have been removed]
syntax for the ExternalFileAccess setting, and due to the dropping of
NULL values and the need to support BLOB column types I have chosen to
author a custom conversion program.