Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve oracle bulk inserts #388

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

JessieAMorris
Copy link

Oracle uses a

INSERT ALL
   INTO "table" ("column") VALUES ("value")
   INTO "table" ("column") VALUES ("value2")
SELECT * FROM dual;

syntax instead of the standard syntax of

INSERT INTO "table" ("column") VALUES ("value"), ("value2");

This pull request changes bulk inserts for Oracle to use the proper oracle specific (👎 ) syntax.

Jessie A. Morris added 2 commits February 7, 2018 16:55
Oracle uses a

```
INSERT ALL
   INTO "table" ("column") VALUES ("value")
   INTO "table" ("column") VALUES ("value2")
SELECT * FROM dual;
```

syntax instead of the standard syntax of

```
INSERT INTO "table" ("column") VALUES ("value"), ("value2");
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant