OleDb.DataSource is a Power Query M function that returns a table of SQL tables and views from an OLE DB data source using a specified connection string. The function returns the table with control over options like navigation properties, hierarchical navigation, and timeouts.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
OleDb.DataSource(
connectionString as any,
optional options as nullable record,
) as table
Description
Returns a table of SQL tables and views from the OLE DB data source specified by the connection string connectionString
. connectionString
can be text or a record of property value pairs. Property values can either be text or number. An optional record parameter, options
, may be provided to specify additional properties. The record can contain the following fields:
CreateNavigationProperties
: A logical (true/false) that sets whether to generate navigation properties on the returned values (default is true).NavigationPropertyNameGenerator
: A function that is used for the creation of names for navigation properties.Query
: A native SQL query used to retrieve data. If the query produces multiple result sets, only the first will be returned.HierarchicalNavigation
: A logical (true/false) that sets whether to view the tables grouped by their schema names (default is true).ConnectionTimeout
: A duration that controls how long to wait before abandoning an attempt to make a connection to the server. The default value is driver-dependent.CommandTimeout
: A duration that controls how long the server-side query is allowed to run before it is canceled. The default value is ten minutes.SqlCompatibleWindowsAuth
: A logical (true/false) that determines whether to produce SQL Server-compatible connection string options for Windows authentication. The default value is true.
Related functions
Other functions related to OleDb.DataSource are:
