oracle2mongo
TypeScript icon, indicating that this package has built-in type declarations

0.4.0 • Public • Published
Predrag Stojadinovic

oracle2mongo

build status codacy dependencies npm

Quick Oracle 2 Mongo copy

Documentation

TypeDoc documentation

Usage

ES6

const O2M = require('oracle2mongo').default;

TypeScript

import O2M from 'oracle2mongo';

ES6 and TypeScript cont.

// all attributes are *required*
const mongo = {
	database: '<mongodb-database-name>',
	server: 'mongodb://localhost:27017/'
};

// all attributes are *required*
const oracle = {
	user: '<oracle-username>',
	password: '<oracle-password>',
	connectString: '<oracle-host>:<oracle-port>/<oracle-service-or-sid>',
	owner: '<oracle-owner>'
};

// output dir is optional - if passed, there will be a json file per oracle table created, with all data
const outputDir = '<somewhere>/<someDir>';

// exclude array is optional - if passed, tables listed in the array will be excluded from copy
const exclude = ['some_table', 'other_table'];

new O2M(oracle, mongo, outputDir)
	.verbose()		// <- optional
	.copy(exclude)
	.then(() => true)
	.catch(err => console.error);

Package Sidebar

Install

npm i oracle2mongo

Weekly Downloads

1

Version

0.4.0

License

UNLICENSED

Unpacked Size

11.3 kB

Total Files

5

Last publish

Collaborators

  • dzoni77
  • stojadinovicp