Member since
01-17-2018
5
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1411 | 10-30-2019 09:37 AM |
10-30-2019
09:37 AM
I created a hack to solve this problem. In the ConvertJSONtoSQL processor I put table name = personal information. Notice the space. This generated the sql like so: insert into personal information <snipped> Then using a ReplaceTextProcessor I did a find and replace so such that the sql inserts were converted to the following: insert into `personal information` <snipped> This works but is very hacky...would love to see the correct way to get the back ticks to work
... View more