i am trying to read data from azure sql database from databricks. azure sql database is created with private link endpoint.Using DBR 10.4 LTS Cluster and expectation is the connector is pre installed as per documentation.
using the below code to fetch but getting java.lang.ClassNotFoundException:
df = spark.read \
.format("com.microsoft.sqlserver.jdbc.spark") \
.option("url", "xyz-server.database.windows.net") \
.option("dbtable", "test") \
.option("databaseName","test") \
.option("user", 'test') \
.option("password", 'abc') \
.load()
Any help is appreciated