Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2023 04:35 PM
If I creat a table using the code below: CREATE TABLE IF NOT EXISTS jdbcTable
using org.apache.spark.sql.jdbc
options(
url "sql_server_url",
dbtable "sqlserverTable",
user "username",
password "password"
)
will jdbcTable always be automatically synchronized with sqlserverTable? Thanks!