sql - Append rows to table via Sybase Load statement -


i used 2 consequent loads sybase table via below sql script code. when loading second file, instead of appending overwrites raws. there option avoid overwrite?

load table departments ( departmentid, departmentname, departmentheadid ) '/d1/mill1/dept1.txt' 

thank in advance.

if understood correctly, got both files available @ moment doing load. like:

load table departments ( departmentid, departmentname, departmentheadid ) '/d1/mill1/dept1.txt','/d1/mill1/dept2.txt'; 

Comments

Popular posts from this blog

python - Mongodb How to add addtional information when aggregating? -

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

java - Incorrect order of records in M-M relationship in hibernate -