Events
Get certified in Microsoft Fabric—for free!
19 Nov, 23 - 10 Dec, 23
For a limited time, the Microsoft Fabric Community team is offering free DP-600 exam vouchers.
Prepare nowThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to: SQL Server
The article explains how to use PolyBase on a SQL Server instance to query external data in Oracle.
If you haven't installed PolyBase, see PolyBase installation.
Before creating a database scoped credential, a Master Key must be created.
To query the data from an Oracle data source, you must create external tables to reference the external data. This section provides sample code to create these external tables.
The following Transact-SQL commands are used in this section:
Create a database scoped credential for accessing the Oracle source.
/* specify credentials to external data source
* IDENTITY: user name for external source.
* SECRET: password for external source.
*/
CREATE DATABASE SCOPED CREDENTIAL credential_name WITH IDENTITY = 'username', Secret = 'password';
Important
The Oracle ODBC Connector for PolyBase supports only basic authentication, not Kerberos authentication.
Create an external data source with CREATE EXTERNAL DATA SOURCE.
/*
* LOCATION: Location string should be of format '<vendor>://<server>[:<port>]'.
* PUSHDOWN: specify whether computation should be pushed down to the source. ON by default.
* CONNECTION_OPTIONS: Specify driver location
* CREDENTIAL: the database scoped credential, created above.
*/
CREATE EXTERNAL DATA SOURCE external_data_source_name
WITH ( LOCATION = 'oracle://<server address>[:<port>]',
-- PUSHDOWN = ON | OFF,
CREDENTIAL = credential_name)
Create an external table with CREATE EXTERNAL TABLE.
/*
* LOCATION: Three-part identifier indicating database & domain or only database, schema, and table name.
* DATA_SOURCE: The data source created above.
*/
CREATE EXTERNAL TABLE [T1] (
[KEY] DECIMAL(38) NOT NULL,
[RANDOM_INT] DECIMAL(38),
[RANDOM_FLOAT] FLOAT(53))
WITH (
LOCATION = '[ORCLCDB.localdomain].SYS.T1',
DATA_SOURCE = external_data_source_name)
Optional: Create statistics on an external table.
We recommend creating statistics on external table columns especially the ones used for joins, filters and aggregates,for optimal query performance.
CREATE STATISTICS statistics_name ON customer (C_CUSTKEY) WITH FULLSCAN;
Important
Once you have created an external data source, you can use the CREATE EXTERNAL TABLE command to create a queryable table over that source.
For more tutorials on creating external data sources and external tables to a variety of data sources, see PolyBase Transact-SQL reference.
For more information and examples, see the following articles:
Events
Get certified in Microsoft Fabric—for free!
19 Nov, 23 - 10 Dec, 23
For a limited time, the Microsoft Fabric Community team is offering free DP-600 exam vouchers.
Prepare now