You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am unable to get all the records(including the deleted records) using the QueryAll option. Below is my code snippet used in databricks. This fetches only the records which are not deleted or archived. I am using com.springml:spark-salesforce_2.11:1.1.3 from Maven.
You have to build your own jar, because 'queryAll' param to control retrieving deleted and archived records for SOQL queries was added 28/03/2019 and maven jar from 25/07/2018
Hi,
I am unable to get all the records(including the deleted records) using the QueryAll option. Below is my code snippet used in databricks. This fetches only the records which are not deleted or archived. I am using com.springml:spark-salesforce_2.11:1.1.3 from Maven.
val Case_soql_df = spark.
read.
format("com.springml.spark.salesforce").
option("login","https://login.salesforce.com/services/Soap/u/37.0/").
option("username","" ).
option("password","" ).
option("soql", Case_soql).
option("version","37").
option("queryAll", "true").
load()
The text was updated successfully, but these errors were encountered: