diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/TOC.yml b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/TOC.yml
index 4822cb9d..4b6bde0f 100644
--- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/TOC.yml
+++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/TOC.yml
@@ -20,6 +20,8 @@
href: jdbc-connector.md
- name: MongoDB connector
href: mongodb-connector.md
+- name: Oracle Database connector
+ href: oracle-connector.md
- name: Pinecone connector
href: pinecone-connector.md
- name: Postgres connector
diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/index.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/index.md
index 77ecf733..237416f9 100644
--- a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/index.md
+++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/index.md
@@ -47,6 +47,7 @@ Semantic Kernel provides a number of out-of-the-box Vector Store integrations ma
| Milvus | Planned | | |
| [MongoDB](./mongodb-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
| [Neon Serverless Postgres](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/neon1722366567200.neon_serverless_postgres_azure_prod) |Use [Postgres Connector](./postgres-connector.md)| ✅ | Microsoft Semantic Kernel Project |
+| [Oracle](./oracle-connector.md) | ✅ | ✅ | Oracle |
| [Pinecone](./pinecone-connector.md) | ✅ | ❌ | Microsoft Semantic Kernel Project |
| [Postgres](./postgres-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
| [Qdrant](./qdrant-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
@@ -70,6 +71,7 @@ Semantic Kernel provides a number of out-of-the-box Vector Store integrations ma
| [In-Memory](./inmemory-connector.md) | ✅ | N/A | Microsoft Semantic Kernel Project |
| [MongoDB](./mongodb-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
| [Neon Serverless Postgres](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/neon1722366567200.neon_serverless_postgres_azure_prod) |Use [Postgres Connector](./postgres-connector.md)| ✅ | Microsoft Semantic Kernel Project |
+| [Oracle](./oracle-connector.md) | Planned | | Oracle |
| [Pinecone](./pinecone-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
| [Postgres](./postgres-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
| [Qdrant](./qdrant-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
@@ -87,6 +89,7 @@ Semantic Kernel provides a number of out-of-the-box Vector Store integrations ma
| HSQLDB | Use [JDBC](./jdbc-connector.md) | ✅ | Microsoft Semantic Kernel Project |
| [JDBC](./jdbc-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
| MySQL | Use [JDBC](./jdbc-connector.md) | ✅ | Microsoft Semantic Kernel Project |
+| [Oracle](./oracle-connector.md) | ✅ | ✅ | Oracle |
| Postgres | Use [JDBC](./jdbc-connector.md) | | Microsoft Semantic Kernel Project |
| [Redis](./redis-connector.md) | ✅ | ✅ | Microsoft Semantic Kernel Project |
| SQLite | Use [JDBC](./jdbc-connector.md) | ✅ | Microsoft Semantic Kernel Project |
diff --git a/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/oracle-connector.md b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/oracle-connector.md
new file mode 100644
index 00000000..7d940808
--- /dev/null
+++ b/semantic-kernel/concepts/vector-store-connectors/out-of-the-box-connectors/oracle-connector.md
@@ -0,0 +1,277 @@
+---
+title: Using the Semantic Kernel Oracle Database Vector Store connector (Preview)
+description: Contains information on how to use a Semantic Kernel Vector store connector to access and manipulate data in Oracle Database.
+zone_pivot_groups: programming-languages
+author: minal-agashe-oracle
+ms.topic: conceptual
+ms.author: westey
+ms.date: 08/14/2025
+ms.service: semantic-kernel
+---
+# Using the Oracle Database Vector Store connector (Preview)
+
+::: zone pivot="programming-language-csharp"
+
+> [!WARNING]
+> The Oracle Database Vector Store functionality is in preview, and improvements that require breaking changes may still occur in limited circumstances before release.
+
+::: zone-end
+::: zone pivot="programming-language-python"
+
+> [!WARNING]
+> The Semantic Kernel Vector Store functionality is in preview, and improvements that require breaking changes may still occur in limited circumstances before release.
+
+::: zone-end
+::: zone pivot="programming-language-java"
+
+> [!WARNING]
+> The Semantic Kernel Vector Store functionality is in preview, and improvements that require breaking changes may still occur in limited circumstances before release.
+
+::: zone-end
+
+## Overview
+
+The Oracle Database Vector Store Connector can be used to access and manage data in Oracle Database. The connector has the following characteristics.
+
+::: zone pivot="programming-language-csharp"
+
+| Feature Area | Support |
+| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| Collection maps to | Oracle database table |
+| Supported key property types |
|
+| Supported data property types | - bool
- byte
- short
- int
- decimal
- long
- float
- double
- DateTime
- DateTimeOffset
- TimeSpan
- char
- char[]
- byte[]
- String
- Guid
- *and nullable type of the above types*
|
+| Supported vector property types | - ReadOnlyMemory\
- Embedding\
- float[]
- ReadOnlyMemory\
- Embedding\
- double[]
- ReadOnlyMemory\
- Embedding\
- short[]
- ReadOnlyMemory\
- Embedding\
- byte[]
- BitArray
- BinaryEmbedding
|
+| Supported index types | |
+| Supported distance functions | - CosineDistance
- FLOAT32, FLOAT64, and INT8 vector default
- CosineSimilarity
- DotProductSimilarity
- NegativeDotProductSimilarity
- EuclideanDistance
- EuclideanSquaredDistance
- HammingDistance
- ManhattanDistance
- JaccardSimilarity
|
+| Supported filter clauses | - ==
- !=
- <
- <=
- >
- >=
- List.Contains()
- Only when checking if the model property is in the list
|
+| Supports zero, one, or multiple vectors in a record | Yes |
+| IsIndexed supported? | Yes |
+| IsFullTextSearchable supported? | No |
+| StorageName supported? | Yes |
+| HybridSearch supported? | No |
+
+
+> [!IMPORTANT]
+> Vector data searches require Oracle Database 23ai. All other Oracle connector features are available using Oracle Database 19c or higher.
+
+::: zone-end
+::: zone pivot="programming-language-python"
+More information coming soon.
+::: zone-end
+::: zone pivot="programming-language-java"
+
+More information coming soon.
+
+::: zone-end
+
+::: zone pivot="programming-language-csharp"
+
+## Getting started
+
+Add the Oracle Database Vector Store connector NuGet package to your project.
+
+```dotnetcli
+dotnet add package Oracle.VectorData --prerelease
+```
+
+You can add the vector store to the `IServiceCollection` dependency injection container using extension methods provided by Semantic Kernel. In this case, an instance of the `Oracle.VectorData.OracleVectorStore` class also gets registered with the container.
+
+```csharp
+using Microsoft.SemanticKernel;
+using Oracle.VectorData;
+using Microsoft.Extensions.DependencyInjection;
+
+// Using Kernel Builder.
+var builder = Kernel.CreateBuilder();
+builder.Services.AddOracleVectorStore("");
+```
+
+```csharp
+using Microsoft.AspNetCore.Builder;
+using Oracle.VectorData;
+using Microsoft.Extensions.DependencyInjection;
+
+// Using IServiceCollection with ASP.NET Core.
+var builder = WebApplication.CreateBuilder(args);
+builder.Services.AddOracleVectorStore("");
+```
+
+Extension methods that take no parameters are also available. These require an instance of the `Oracle.ManagedDataAccess.Client.OracleDataSource` class to be separately registered with the dependency injection container.
+
+```csharp
+using Microsoft.SemanticKernel;
+using Oracle.VectorData;
+using Microsoft.Extensions.DependencyInjection;
+using Oracle.ManagedDataAccess.Client;
+
+// Using Kernel Builder.
+var kernelBuilder = Kernel.CreateBuilder();
+builder.Services.AddSingleton(sp =>
+{
+ OracleDataSourceBuilder dataSourceBuilder = new("");
+ return dataSourceBuilder.Build();
+});
+
+builder.Services.AddOracleVectorStore();
+```
+
+```csharp
+using Microsoft.AspNetCore.Builder;
+using Oracle.VectorData;
+using Microsoft.Extensions.DependencyInjection;
+using Oracle.ManagedDataAccess.Client;
+
+// Using IServiceCollection with ASP.NET Core.
+var builder = WebApplication.CreateBuilder(args);
+builder.Services.AddSingleton(sp =>
+{
+ OracleDataSourceBuilder dataSourceBuilder = new("");
+ return dataSourceBuilder.Build();
+});
+
+builder.Services.AddOracleVectorStore();
+```
+
+You can construct an Oracle Database Vector Store instance directly with a custom data source or with a connection string.
+
+```csharp
+using Oracle.VectorData;
+using Oracle.ManagedDataAccess.Client;
+
+OracleDataSourceBuilder dataSourceBuilder = new("");
+var dataSource = dataSourceBuilder.Build();
+
+var connection = new OracleVectorStore(dataSource);
+```
+
+```csharp
+using Oracle.VectorData;
+
+var connection = new OracleVectorStore("");
+```
+
+It is possible to construct a direct reference to a named collection with a custom data source or with a connection string.
+
+```csharp
+using Oracle.VectorData;
+using Oracle.ManagedDataAccess.Client;
+
+OracleDataSourceBuilder dataSourceBuilder = new("");
+var dataSource = dataSourceBuilder.Build();
+
+var collection = new OracleCollection(dataSource, "skhotels");
+```
+
+```csharp
+using Oracle.VectorData;
+
+var collection = new OracleCollection("", "skhotels");
+```
+
+::: zone-end
+
+::: zone pivot="programming-language-python"
+
+## Getting started
+
+More information coming soon.
+::: zone-end
+::: zone pivot="programming-language-java"
+
+## Getting started
+
+More information coming soon.
+::: zone-end
+::: zone pivot="programming-language-csharp"
+
+## Data mapping
+
+The Oracle Database Vector Store connector provides a default mapper when mapping data from the data model to storage. This mapper does a direct conversion of the data model properties list to the Oracle database columns to convert to the storage schema.
+
+The Oracle Database Vector Store connector supports data model annotations and record definitions.Using annotations, the information can be provided to the data model for creating indexes and database column mapping. Using [record definitions](../schema-with-record-definition.md), the information can be defined and supplied separately from the data model.
+
+The following table shows the default primary key data type mapping between Oracle database and C#:
+
+| C# Data Type | Database Type |
+| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| short/int16 | NUMBER(5) |
+| int/int32 | NUMBER(10) |
+| long/int64 | NUMBER(19) |
+| string | NVARCHAR2(2000) |
+| Guid | RAW(16) |
+
+The following table shows the default data property type mapping, including nullable types:
+
+| C# Data Type | Database Type |
+| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| bool | BOOLEAN for Oracle Database 23ai and higher
NUMBER(1) for earlier versions |
+| byte | NUMBER(3) |
+| short/int16 | NUMBER(5) |
+| int/int32 | NUMBER(10) |
+| decimal | NUMBER(18,2) |
+| long/int64 | NUMBER(19) |
+| float | BINARY_FLOAT |
+| double | BINARY_DOUBLE |
+| DateTime | TIMESTAMP(7) |
+| DateTimeOffset | TIMESTAMP(7) WITH TIME ZONE |
+| TimeSpan | INTERVAL DAY(8) TO SECOND(7) |
+| char | NVARCHAR2(1) |
+| char[] | NVARCHAR2(2000) |
+| byte[] | RAW(2000) |
+| string | NVARCHAR2(2000) |
+| Guid | RAW(16) |
+
+Starting with Oracle Database 23ai, database vectors can be mapped to .NET. data types. Multiple vector columns are supported. The following table shows the default vector property type mapping, including nullable types:
+
+| C# Data Type | Database Type |
+| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| - ReadOnlyMemory\
- Embedding\
- BinaryEmbedding
- Embedding\
- byte[]
- System.Byte[]
- BitArray
| VECTOR(dimensions, BINARY) |
+| - ReadOnlyMemory\
- ReadOnlyMemory\
- Embedding\
- Embedding\
- short[]
- System.Int16[]
| VECTOR(dimensions, INT8) |
+| - ReadOnlyMemory\
- ReadOnlyMemory\
- Embedding\
- Embedding\
- double[]
- System.Double[]
| VECTOR(dimensions, FLOAT64) |
+| - ReadOnlyMemory\
- ReadOnlyMemory\
- Embedding\
- Embedding\
- float[]
- System.Float[]
| VECTOR(dimensions, FLOAT32) |
+
+### Property name override
+
+For data properties and vector properties, you can override names to use in storage that are different from the data model property names. The property name override occurs when setting the `StorageName` option either in the data model properties or record definition.
+
+Here is a data model with `StorageName` set code sample and how that will be represented in an Oracle SQL command.
+
+```csharp
+using Microsoft.Extensions.VectorData;
+
+public class Hotel
+{
+ [VectorStoreKey]
+ public long HotelId { get; set; }
+
+ [VectorStoreData(StorageName = "hotel_name")]
+ public string? HotelName { get; set; }
+
+ [VectorStoreData(StorageName = "hotel_description")]
+ public string? Description { get; set; }
+
+ [VectorStoreVector(Dimensions: 384, DistanceFunction = DistanceFunction.CosineDistance)]
+ public ReadOnlyMemory? DescriptionEmbedding { get; set; }
+}
+```
+
+```SQL
+CREATE TABLE "MYSCHEMA"."Hotels"
+ ("HotelId" NUMBER(10),
+ "hotel_name" NVARCHAR2(2000),
+ "hotel_description" NVARCHAR2(2000),
+ "DescriptionEmbedding" VECTOR(384, FLOAT32),
+ PRIMARY KEY ( "HotelId" )
+);
+```
+
+## Learn More
+Refer to the following Oracle Database Vector Store connector resources to learn more:
+- [Documentation: Oracle Database Vector Store Connector Classes for Semantic Kernel (.NET) APIs](https://docs.oracle.com/en/database/oracle/oracle-database/23/odpnt/oracle-database-vector-store-connector-semantic-kernel-classes.html)
+Contains information on Oracle Database Vector Store connector classes for adding data, retrieving data, and performing vector search in the Oracle vector database.
+- Sample Code: Oracle Database Vector Store Connector for Semantic Kernel (.NET)
+ - Coming soon
+- [Documentation: Oracle Data Provider for .NET](https://docs.oracle.com/en/database/oracle/oracle-database/23/odpnt/intro.html)
+Contains information on Oracle Data Provider for .NET (ODP.NET), the ADO.NET data provider for Oracle Database Vector Store connector.
+
+::: zone-end