vote up 3 vote down star
1

I need to import a csv file into Firebird and I've spent a couple of hours trying out some tools and none fit my needs.

The main problem is that all the tools I've been trying like EMS Data Import and Firebird Data Wizard expect that my csv file contains all the information needed by my Table.

I need to write some custom SQL in the insert statement, for example, I have a cvs file with the city name, but as my database already has all the cities in another table (normalized), I need to write a subselect in the insert statement to lookup for the city and write its ID, also I have a stored procedure to cread GUIDS.

My Insert statement would be something like this:

INSERT INTO PERSON (ID, NAME, CITYID) VALUES((SELECT NEWGUID FROM CREATEGUID), :NAME, (SELECT CITYID FROM CITY WHERE NAME = :CITY_NAME)

I know that it is very easy to write an application to do this, but I don't like to reinvent the wheel, and I'm sure that there are some tools out there to do it.

Can you guys give me some advice?

flag

10 Answers

vote up 11 vote down check

It's a bit crude - but for one off jobs, I sometimes use Excel.

If you import the CSV file into Excel, you can create a formula which creates an INSERT statement by using string concatenation in the formula. So - if your CSV file has 3 columns that appear in columns A, B and C in Excel, you could write a formula like...

="INSERT INTO MyTable (Col1, Col2, Col3) VALUES (" & A1 & ", " & B1 & ", " & C1 & ")"

Then you can replicate the formula down all of your rows, and copy and paste the answer into a text file to run against your database.

Like I say - it's crude - but it can be quite a 'quick and dirty' way of getting a job done!

link|flag
This is so much better than the Excel technique that I was using! Thanks! – Liam Feb 24 at 17:43
+1 for a true dealine life saver :-) – Ben Oct 30 at 15:06
vote up 5 vote down

Well, if it's a CSV, and it this is a one time process, open up the file in Excel, and then write formulas to populate your data in any way you desire, and then write a simple Concat formula to construct your SQL, and then copy that formula for every row. You will get a large number of SQL statements which you can execute anywhere you want.

link|flag
vote up 2 vote down

You could import the CSV file into a table as is, then write an SQL query that does all the required transformations on the imported table and inserts the result into the target table.

So something like:

<(load the CSV file into temptable - n, cityname)>

insert into target_table

select t.n, c.city_id as city

from temp_table t, cities c

where t.cityname = c.cityname

Nice tip about using Excel, but I also suggest getting comfortable with a scripting language like Python, because for some task it's easier to just write a quick python script to do the job than trying to find the function you need in Excel or a pre-made tool that does the job.

link|flag
vote up 2 vote down

Fabio,

I've done what Vaibhav has done many times, and it's a good "quick and dirty" way to get data into a database.

If you need to do this a few times, or on some type of schedule, then a more reliable way is to load the CSV data "as-is" into a work table (i.e customer_dataload) and then use standard SQL statements to populate the missing fields.

(I don't know Firebird syntax - but something like...)

UPDATE person
SET id = (SELECT newguid() FROM createguid)

UPDATE person
SET cityid = (SELECT cityid FROM cities WHERE person.cityname = cities.cityname)

etc.

Usually, it's much faster (and more reliable) to get the data INTO the database and then fix the data than to try to fix the data during the upload. You also get the benefit of transactions to allow you to ROLLBACK if it does not work!!

link|flag
vote up 2 vote down

I sometimes use The World's Simplest Code Generator (Javascript edition). It's online, but it's just javascript - your data doesn't go anywhere. There's also an asp version though, with more features.

link|flag
I used a variation of that (essentially added a bit of custom code to do the bit much of data massaging that my case needed) and came up with a templating solution that saves me literally hours everytime I have to re-populate the tables I'm working on.. getting data from Excel, BTW. – schonarth Oct 15 '08 at 19:09
vote up 0 vote down

awk

link|flag
vote up 0 vote down

I use a slight variation on Balloon's Excel technique.

I highly recommend downloading the free ASAP Utilities plug-in for Excel. One of the many time saving tools they include are insert before current value and insert after current value options.

Those should let you reach a solution quicker by helping you build your insert statements.

link|flag
vote up 0 vote down

I usually just fire up PHP which has simple fgetcsv function that parses the CSV from input file into an array, and then just run the insert directly into Firebird via ibase_query function.

Here's a script that does it (hope you don't mind the non-Enlish comments). It also dumps the CREATE TABLE script at the end, in case you don't have the table in database.

<?php

if ($argc < 3)
{
    echo "ARGC = $argc\nARGV = ";
    print_r($argv);
    echo "\n\nUsage: loadcsv.php file tablename\n";
    return;
}

$handle = fopen($argv[1], "r");
if (!$handle)
{
    echo "Cannot open: ".$argv[1]."\n";
    return;
}

$first = true;
$fieldnames = array();
$fieldsizes = array();
$types = array();
while (($data = fgetcsv($handle, 60000, ",")) !== FALSE)
{
    if ($first)
    {
        $fieldnames = $data;
        $first = false;
        continue;
    }
    obradi($data, $argv[2]);
}
fclose($handle);
kreiraj_tabelu($argv[2]);

function obradi($data, $tabela)
{
    global $fieldnames, $fieldsizes, $types;
    echo "INSERT INTO $tabela (".join(', ', $fieldnames).') VALUES (';
    $values = array();
    for ($i = 0; $i < sizeof($data); $i++)
    {
        $val = trim($data[$i]);
        if ($val == '')
            $values[] = 'null';
        else
            $values[] = "'".str_replace("'", "''", $val)."'";

        $len = strlen($val);
        if (!isset($fieldsizes[$i]) || $fieldsizes[$i] < $len)
            $fieldsizes[$i] = $len;
        if (!is_numeric($val))
            $types[$i] = 'varchar';
        else if (!isset($types[$i]) && is_true_float($val))
            $types[$i] = 'float';
    }
    echo join(',', $values);
    echo ");\n";
}

function kreiraj_tabelu($naziv)
{
    global $fieldnames, $fieldsizes, $types;
    echo "CREATE TABLE $naziv (\n";
    for ($i = 0; $i < sizeof($fieldnames); $i++)
    {
        echo '  '.$fieldnames[$i].' ';
        if (!isset($types[$i]))
            echo 'integer';
        else if ($types[$i] == 'varchar')
            echo 'varchar('.$fieldsizes[$i].')';
        else
            echo 'double precision';
        if ($i+1 != sizeof($fieldnames))
            echo ",";
        echo "\n";
    }
    echo ");\n";
}

function is_true_float($mVal)
{
    return ( is_float($mVal)
        || ( (float) $mVal != round($mVal)
        || strlen($mVal) != strlen( (int) $mVal) )
        && $mVal != 0 );
}

?>
link|flag
vote up 0 vote down

You could try fbcopy and fbexport tools.

link|flag
vote up 0 vote down

Try http://www.sqlscripter.com to generate insert scripts of your text/csv file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.