diff --git a/bi-connectors/TableauConnector/opensearch_sql_odbc/README.md b/bi-connectors/TableauConnector/opensearch_sql_odbc/README.md
deleted file mode 100644
index c136140744..0000000000
--- a/bi-connectors/TableauConnector/opensearch_sql_odbc/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-## opensearch_sql_odbc
-
-The connector files in `opensearch_sql_odbc` can be used to connect to OpenSearch server in Tableau.
-
-* These connector files remove and modify a set of unsupported functions and operations.
-* It includes set of capabilities to customize and tune connector behavior
-
-To use this connector with Tableau, [Package the connector](https://tableau.github.io/connector-plugin-sdk/docs/package-sign) and [Run Packaged Connector (TACO file)](https://tableau.github.io/connector-plugin-sdk/docs/run-taco)
\ No newline at end of file
diff --git a/bi-connectors/TableauConnector/opensearch_sql_odbc/connection-dialog.tcd b/bi-connectors/TableauConnector/opensearch_sql_odbc/connection-dialog.tcd
deleted file mode 100644
index f7ae8da245..0000000000
--- a/bi-connectors/TableauConnector/opensearch_sql_odbc/connection-dialog.tcd
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/bi-connectors/TableauConnector/opensearch_sql_odbc/connectionBuilder.js b/bi-connectors/TableauConnector/opensearch_sql_odbc/connectionBuilder.js
deleted file mode 100644
index b5a04d1777..0000000000
--- a/bi-connectors/TableauConnector/opensearch_sql_odbc/connectionBuilder.js
+++ /dev/null
@@ -1,42 +0,0 @@
-(function dsbuilder(attr){
- var params = {};
-
- // Set host information in connection string
- params["SERVER"] = attr[connectionHelper.attributeServer];
- params["PORT"] = attr[connectionHelper.attributePort];
-
- // Set authentication values in connection string
- var authAttrValue = attr[connectionHelper.attributeAuthentication];
- params["Auth"] = attr[connectionHelper.attributeAuthentication];
- if (authAttrValue == "AWS_SIGV4"){
- params["Region"] = attr[connectionHelper.attributeVendor1];
- } else if (authAttrValue == "BASIC"){
- params["UID"] = attr[connectionHelper.attributeUsername];
- params["PWD"] = attr[connectionHelper.attributePassword];
- }
-
- // Set SSL value in connection string
- if (attr[connectionHelper.attributeSSLMode] == "require"){
- params["useSSL"] = "1";
- } else {
- params["useSSL"] = "0";
- }
-
- // Parse additional options and add in connection string
- var odbcConnectStringExtrasMap = {};
- const attributeODBCConnectStringExtras = "vendor2";
- if (attributeODBCConnectStringExtras in attr){
- odbcConnectStringExtrasMap = connectionHelper.ParseODBCConnectString(attr[attributeODBCConnectStringExtras]);
- }
- for (var key in odbcConnectStringExtrasMap){
- params[key] = odbcConnectStringExtrasMap[key];
- }
-
- // Format the attributes as 'key=value'
- var formattedParams = [];
- formattedParams.push(connectionHelper.formatKeyValuePair(driverLocator.keywordDriver, driverLocator.locateDriver(attr)));
- for (var key in params){
- formattedParams.push(connectionHelper.formatKeyValuePair(key, params[key]));
- }
- return formattedParams;
-})
diff --git a/bi-connectors/TableauConnector/opensearch_sql_odbc/connectionResolver.tdr b/bi-connectors/TableauConnector/opensearch_sql_odbc/connectionResolver.tdr
deleted file mode 100644
index 68c376270c..0000000000
--- a/bi-connectors/TableauConnector/opensearch_sql_odbc/connectionResolver.tdr
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
- server
- port
- authentication
- username
- password
- sslmode
- vendor1
- vendor2
-
-
-
-
-
-
- OpenSearch SQL ODBC*
-
-
-
diff --git a/bi-connectors/TableauConnector/opensearch_sql_odbc/dialect.tdd b/bi-connectors/TableauConnector/opensearch_sql_odbc/dialect.tdd
deleted file mode 100644
index e34857ce07..0000000000
--- a/bi-connectors/TableauConnector/opensearch_sql_odbc/dialect.tdd
+++ /dev/null
@@ -1,323 +0,0 @@
-
-
-
-
- (%1 AND NOT %2 OR NOT %1 AND %2)
-
-
-
-
- (%1 AND %2 = 0 OR NOT %1 AND %2 <> 0)
-
-
-
-
- (%1 <> %2)
-
-
-
-
- (%1 = 0 AND %2 OR %1 <> 0 AND NOT %2)
-
-
-
-
- (%1 <> %2)
-
-
-
-
-
- DAY_OF_YEAR(%1)
-
-
-
- DAY_OF_MONTH(%1)
-
-
-
- DAY_OF_WEEK(%1)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/bi-connectors/TableauConnector/opensearch_sql_odbc/manifest.xml b/bi-connectors/TableauConnector/opensearch_sql_odbc/manifest.xml
deleted file mode 100644
index 1d51e03f8b..0000000000
--- a/bi-connectors/TableauConnector/opensearch_sql_odbc/manifest.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/bi-connectors/TableauConnector/opensearch_sql_odbc/opensearch_sql_odbc.taco b/bi-connectors/TableauConnector/opensearch_sql_odbc/opensearch_sql_odbc.taco
deleted file mode 100644
index b90cd86d3c..0000000000
Binary files a/bi-connectors/TableauConnector/opensearch_sql_odbc/opensearch_sql_odbc.taco and /dev/null differ