function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
MattMet86MattMet86 

Data Loader V43 - GUI SOQL works, CLI won't execute

Data Loader V43

I have used the data loader CLI many times and have never run into this issue.  If i run the following SOQL from Data Loader GUI it will execute and return results. 
Select Hub_Name__r.Name hubName, Account__r.Name accName, Count(ID) FROM Survey_Results__c WHERE Survey_Date__c = THIS_MONTH Group By Hub_Name__r.Name, Account__r.Name ORDER By Hub_Name__r.Name ASC, Account__r.Name ASC
When I then try and run it via CLI however the generated file is blank and has no header or anything else and the CLI window just has a general error message of NullPointerException.  I have tried both a blank SDL file and one with mappings and still have the same issue. 

If I remove the field aliases than the GUI will yell that duplicate "name" aliases exist. 

Any ideas?