1

I need to import few columns from csv file into firebird temp table but not using any tool only from sql editor aka openrowset in SQL server. is it supported? thanks

Zulu Z
  • 1,103
  • 5
  • 14
  • 27

2 Answers2

1

firebird doesn't have a load statement, but several tools have an import module. Easest is to edit the file into a set of insert statements

NickUpson
  • 146
  • 2
1

You can have look at Data Transformer (disclaimer - I'm its developer). It can convert between CSV (an other formats) to SQL. The generated SQL contains "insert" statements for each line and a "create table" statement.

It works offline - the data never leaves your computer.

You can get it from the Mac App Store or the Microsoft Store.

Geo Systems
  • 101
  • 6