SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 65914: The error "Driver does not support this optional feature" is generated after you try to insert or append data to a Databricks table

DetailsHotfixAboutRate It

When you use SAS/ACCESS® Interface to JDBC to work with Databricks tables, you might see errors that are similar to the following:

ERROR: Error allocating statement handle: java.sql.SQLFeatureNotSupportedException:
[Simba][JDBC](10220) Driver does not support this optional feature.
ERROR: Prepare error: [Simba][SparkJDBCDriver](500051) ERROR processing query/statement. Error
Code: 0, SQL state: Error running query: org.apache.spark.sql.AnalysisException: Table or
view not found: 'schema'.'table-name'; line 1 pos 14;
SQL statement: SELECT * FROM 'schema'.'table-name'

The errors occur after you try to use the SQL procedure or the APPEND procedure to update an existing Databricks table with code similar to the following:

proc sql;
   insert into libref.existing-table select * from SAS-table;
quit ;

proc append base=libref.existing-table data=SAS-table;
run;

PROC APPEND also generates the second error message above when you attempt to create a Databricks table with code similar to this: 

proc append base=libref.new-table data=SAS-table;
run;

The only workaround is to drop the table and then re-create it in one step by using either a DATA step or PROC SQL. The following example shows a PROC SQL step that re-creates the table in one step:

proc sql;
   create table libref.new-table as select * from SAS-table;
quit;

Click the Hot Fix tab in this note to access the hot fix for this issue.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemSAS/ACCESS Interface to JDBCMicrosoft® Windows® for x649.49.4 TS1M6
Microsoft Windows 8 Enterprise 32-bit9.49.4 TS1M6
Microsoft Windows 8 Enterprise x649.49.4 TS1M6
Microsoft Windows 8 Pro 32-bit9.49.4 TS1M6
Microsoft Windows 8 Pro x649.49.4 TS1M6
Microsoft Windows 8.1 Enterprise 32-bit9.49.4 TS1M6
Microsoft Windows 8.1 Enterprise x649.49.4 TS1M6
Microsoft Windows 8.1 Pro 32-bit9.49.4 TS1M6
Microsoft Windows 8.1 Pro x649.49.4 TS1M6
Microsoft Windows 109.49.4 TS1M6
Microsoft Windows Server 2012 Datacenter9.49.4 TS1M6
Microsoft Windows Server 2012 R2 Datacenter9.49.4 TS1M6
Microsoft Windows Server 2012 R2 Std9.49.4 TS1M6
Microsoft Windows Server 2012 Std9.49.4 TS1M6
Microsoft Windows Server 20169.49.4 TS1M6
Microsoft Windows Server 20199.49.4 TS1M6
Windows 7 Enterprise 32 bit9.49.4 TS1M6
Windows 7 Enterprise x649.49.4 TS1M6
Windows 7 Home Premium 32 bit9.49.4 TS1M6
Windows 7 Home Premium x649.49.4 TS1M6
Windows 7 Professional 32 bit9.49.4 TS1M6
Windows 7 Professional x649.49.4 TS1M6
Windows 7 Ultimate 32 bit9.49.4 TS1M6
Windows 7 Ultimate x649.49.4 TS1M6
64-bit Enabled AIX9.49.4 TS1M6
64-bit Enabled Solaris9.49.4 TS1M6
HP-UX IPF9.49.4 TS1M6
Linux for x649.49.4 TS1M6
Solaris for x649.49.4 TS1M6
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.