We are pulling large amounts of data from Salesforce into our data warehouse. When we import some tables into DS, such as Case and Group, they are listed with quotes around them, I assume because they are protected names in db terms.
I am specifically trying to pull data from the Group table and I am running into errors:
Here is the error from DS;
Data flow DF_Case_Test|Reader Query
Error reading from <Query>: <MALFORMED_QUERY:>
SystemModstamp FROM Group Group
The SQL sent is:
SQL query submitted for reader in <Dataflow DF_Case_Test> is: <SELECT Group.Id,
Group.Name, Group.Email, Group.OwnerId, Group.SystemModstamp FROM Group Group >.
So, it looks like the Adapter does not like the SQL statement passed. Is there any way to modify how the code gets sent to Salesforce? I cannot get by this issue and the table is required for reporting purposes. I have been able to use SSIS to pull the data and then call that SSIS package from DS but this is not a very good workaround.
Any ideas are welcome!