Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
OlapConnection constructs a "OlapConnection" object.
Usage
OlapConnection(connectionString="Data Source=localhost; Provider=MSOLAP;")
is.OlapConnection(ocs)
print.OlapConnection(ocs)
Arguments
connectionString
A valid connection string for connecting to Analysis Services
ocs
An object of class "OlapConnection"
Details
OlapConnection validates and holds an Analysis Services connection string. By default, Analysis Services returns the first cube of the first database. To connect to a specific database, use the Initial Catalog parameter.
Value
OlapConnection returns an object of type "OlapConnection". A warning is shown if the connection string is invalid.
References
For more information on Analysis Services connection strings, see Connection string properties.
See also
Query, executeMD, execute2D, explore
Examples
# Create the connection string. For a named instance, escape the instance name: localhost\my-other-instance
cnnstr <- "Data Source=localhost; Provider=MSOLAP; initial catalog=AdventureWorksCube"
olapCnn <- OlapConnection(cnnstr)