What are the params to be passed for Salesforce Connection Type #497
-
With the help of @sualeh , identified that there's a way to use the salesforce jdbc driver to crawl salesforce data. But I'd need to know what would be the params that should be used while calling the schemacrawler.sh ? For eg from something like this, what're the params I should use:
Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You will need to use the CData Salesforce JDBC driver. You will need to put the driver jar file (along with all associated dependencies) in the SchemaCrawler "lib" folder. You will need to use the URL version of the command-line: schemacrawler.sh \
--url="$1" \
--user="$2" \
--password="$3" \
--log-level=INFO \
--info-level=standard \
-c script \
--sort-tables=false \
--script "$4" Please read the documentation on how to get the URL. I would suggest testing it first with the "list" command: schemacrawler.sh \
--url="$1" \
--user="$2" \
--password="$3" \
--log-level=INFO \
--info-level=minimum \
-c list |
Beta Was this translation helpful? Give feedback.
-
@kgowrisangar - any updates? Did that work for you? |
Beta Was this translation helpful? Give feedback.
You will need to use the CData Salesforce JDBC driver. You will need to put the driver jar file (along with all associated dependencies) in the SchemaCrawler "lib" folder.
You will need to use the URL version of the command-line:
Please read the documentation on how to get the URL.
I would suggest testing it first with the "list" command: