Skip to content

Commit dfac2f1

Browse files
committed
Removing manager metadata line
1 parent 1740ef0 commit dfac2f1

100 files changed

Lines changed: 0 additions & 100 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/2014/analysis-services/multidimensional-models-adomd-net-server/adomd-net-server-functionality.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ helpviewer_keywords:
1212
ms.assetid: b74c6957-3f64-4e09-aa09-d06ee93f82fa
1313
author: minewiskan
1414
ms.author: owend
15-
manager: craigg
1615
---
1716
# ADOMD.NET Server Functionality
1817
All ADOMD.NET server objects provide read-only access to the data and metadata on the server. To retrieve data and metadata, you use the ADOMD.NET server object model as the server object model does not support schema rowsets.

docs/2014/analysis-services/multidimensional-models-adomd-net-server/adomd-net-server-object-architecture.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ helpviewer_keywords:
1212
ms.assetid: bdc81de9-b390-4654-b62a-cd6c0c9ca10d
1313
author: minewiskan
1414
ms.author: owend
15-
manager: craigg
1615
---
1716
# ADOMD.NET Server Object Architecture
1817
The ADOMD.NET server objects are helper objects that can be used to create user defined functions (UDFs) or stored procedures in [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] [!INCLUDE[ssASnoversion](../../includes/ssasnoversion-md.md)].

docs/2014/analysis-services/multidimensional-models-adomd-net-server/adomd-net-server-programming.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ helpviewer_keywords:
1212
ms.assetid: 7f7ff5be-3826-43a5-b94d-ddeec5ddb2eb
1313
author: minewiskan
1414
ms.author: owend
15-
manager: craigg
1615
---
1716
# ADOMD.NET Server Programming
1817
The ADOMD.NET server components of ADOMD.NET reside within the `Microsoft.AnalysisServices.AdomdServer` namespace (in msmgdsrv.dll). You use these server components to create custom Multidimensional Expressions (MDX) functions and stored procedures that are run on an instance of [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] [!INCLUDE[ssASnoversion](../../includes/ssasnoversion-md.md)]. The server objects provide the capabilities for querying cubes and mining models, and for evaluating expressions in a given context. The benefits for creating custom functions and stored procedures include fast execution, centralized deployment, and improved maintainability.

docs/2014/analysis-services/multidimensional-models-adomd-net-server/user-defined-functions-and-stored-procedures.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ helpviewer_keywords:
1515
ms.assetid: 07e8aa47-37d4-4bbc-8bff-49e422d12897
1616
author: minewiskan
1717
ms.author: owend
18-
manager: craigg
1918
---
2019
# User Defined Functions and Stored Procedures
2120
With ADOMD.NET server objects, you can create user defined function (UDF) or stored procedures for [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] [!INCLUDE[ssASnoversion](../../includes/ssasnoversion-md.md)] that interact with metadata and data from the server. These in-process methods are called through Multidimensional Expressions (MDX) or Data Mining Extensions (DMX) statements to provide added functionality without the latencies associated with network communications.

docs/2014/analysis-services/multidimensional-models-extending-olap-stored-procedures/accessing-query-context-in-stored-procedures.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ helpviewer_keywords:
1414
ms.assetid: bdc7dad8-2f22-4265-aba4-a3a451527840
1515
author: minewiskan
1616
ms.author: owend
17-
manager: craigg
1817
---
1918
# Accessing Query Context in Stored Procedures
2019
The execution context of a stored procedure is available within the code of the stored procedure as the `Context` object of the ADOMD.NET server object model. This is a read-only context and cannot be modified by the stored procedure. The following properties are available on this object.

docs/2014/analysis-services/multidimensional-models-extending-olap-stored-procedures/calling-stored-procedures.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ helpviewer_keywords:
1414
ms.assetid: 96a9660d-875b-4ee4-b339-90020b1d9895
1515
author: minewiskan
1616
ms.author: owend
17-
manager: craigg
1817
---
1918
# Calling Stored Procedures
2019
Stored procedures can be called on the server or from client application. In either case, stored procedures always run on the server, either the context of the server or of a database. There are no special permissions required to execute a stored procedure. Once a stored procedure is added by an assembly to the server or database context, any user can execute the stored procedure as long as the role for the user permits the actions performed by the stored procedure.

docs/2014/analysis-services/multidimensional-models-extending-olap-stored-procedures/creating-stored-procedures.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ helpviewer_keywords:
1515
ms.assetid: a12ff02f-6d0b-4488-9846-3609fc0d0554
1616
author: minewiskan
1717
ms.author: owend
18-
manager: craigg
1918
---
2019
# Creating Stored Procedures
2120
All stored procedures must be associated with a common language runtime (CLR) or Component Object Model (COM) class in order to be used. The class must be installed on the server - usually in the form of a [!INCLUDE[msCoName](../../includes/msconame-md.md)] ActiveX® dynamic link library (DLL) - and registered as an assembly on the server or in an [!INCLUDE[ssASnoversion](../../includes/ssasnoversion-md.md)] database.

docs/2014/analysis-services/multidimensional-models-extending-olap-stored-procedures/debugging-stored-procedures.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ helpviewer_keywords:
1212
ms.assetid: 34f51b85-02b3-40dd-bf93-375a9e522385
1313
author: minewiskan
1414
ms.author: owend
15-
manager: craigg
1615
---
1716
# Debugging Stored Procedures
1817
[!INCLUDE[ssASnoversion](../../includes/ssasnoversion-md.md)] stored procedures are actually CLR or COM libraries (normally DLLs) that are written in C# (or any other CLR or COM language). Therefore, debugging a stored procedure is much like debugging any other application in the Visual Studio debugging environment. You debug stored procedures in the Visual Studio development environment using the integrated debugging functions. These allow you to stop at procedure locations, inspect memory and register values, change variables, observe message traffic and get a close look at how your code works.

docs/2014/analysis-services/multidimensional-models-extending-olap-stored-procedures/defining-stored-procedures.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ helpviewer_keywords:
1414
ms.assetid: f9c57d91-f60f-4f0e-8f7f-d87f4ba97b7c
1515
author: minewiskan
1616
ms.author: owend
17-
manager: craigg
1817
---
1918
# Defining Stored Procedures
2019
You can use stored procedures to call external routines from [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] [!INCLUDE[ssASnoversion](../../includes/ssasnoversion-md.md)]. You can write an external routines called by a stored procedure in any common language runtime (CLR) language, such as C, C++, C#, Visual Basic, or Visual Basic .NET. A stored procedure can be created once and called from many contexts, such as other stored procedures, calculated measures, or client applications. Stored procedures simplify [!INCLUDE[ssASnoversion](../../includes/ssasnoversion-md.md)] database development and implementation by allowing common code to be developed once and stored in a single location. Stored procedures can be used to add business functionality to your applications that is not provided by the native functionality of MDX.

docs/2014/analysis-services/multidimensional-models-extending-olap-stored-procedures/designing-stored-procedures.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ helpviewer_keywords:
1313
ms.assetid: af4e7bd5-041b-4a40-9942-0ef6a3af46c6
1414
author: minewiskan
1515
ms.author: owend
16-
manager: craigg
1716
---
1817
# Designing Stored Procedures
1918
Both the administrative object model Analysis Management Objects (AMO) and the client oriented object model [!INCLUDE[msCoName](../../includes/msconame-md.md)] ActiveX® Data Objects (Multidimensional) (ADO MD) are available in stored procedures.

0 commit comments

Comments
 (0)