Hi all,
what's wrong with my ETL script? I get the exception "Property value cannot 
be null".

-- ETL SCRIPT START --

{
  "config": {
    "verbose": true
  },
  "extractor" : {
    "jdbc": { "driver": "oracle.jdbc.driver.OracleDriver",
              "url": "jdbc:oracle:thin:@//<ip_address>:<port>/<sid>", 
              "userName": <user>,
              "userPassword": <pwd>,
              "query": "select * from account" }
  },
  "transformers" : [
   { "vertex": { "class": "Account"} },
   { "edge": { "class": "has_account", "direction" : "in",
            "joinFieldName": "user_id",
            "lookup":"User.id", "unresolvedLinkAction":"CREATE"} }
  ],
  "loader" : {
    "orientdb": {
      "dbURL": 
"plocal:d:/database/nosql/orientdb-community-2.0/databases/<db_name>",
  "dbUser": <o_user>,
      "dbPassword": <o_pwd>,
      "dbAutoCreate": true,
  "dbType": "graph",
  "tx": true,
  "batchCommit": 10000
    }
  }
}

-- ETL SCRIPT END --

Thanks a lot in advance!

Ciao,

Giulio

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to