2 posts / 0 new
Last post
Exception in the log file
I am receiving an exception in the log file as below, 9/5/13:9:59 AM DBAdapter executeBatchTransactions-SEVERE: executeBatchTransactions :Incorrect syntax near the keyword 'Group'. 9/5/13:9:59 AM Driver reportRunStatus-INFO: Closing file log handle: Can any one please help me on this issue and how do I avoid that going forward ? TIA.
You voted 2. Total votes: 1226

Hello the issue you are facing because you are trying to create a table with a database keyword 'Group' which is not being accepted by database
and hence throwing an exception.

You might need to use the concept of prefixes to avoid this situation. After using the prefixes the result might look something like this,

sfGroup or sf_Group.

Please find the below link to add prefixes to table or column name,

http://help.mydbsync.com/docs/pages/viewpage.action?pageId=7078471

Total votes: 1188