Data Mining Part 29: Programming with C# and AMO
In this article, we will show some debugging tips for working with C# and the AMO code for working with Analysis Services and the Data Mining Models.
2015-06-16
2,441 reads
In this article, we will show some debugging tips for working with C# and the AMO code for working with Analysis Services and the Data Mining Models.
2015-06-16
2,441 reads
In this article we will use VB.NET to connect to our Mining Models.
2015-06-04
4,370 reads
In this article we will use VB.NET to connect to our Mining Models.
2015-06-04
4,155 reads
In the chapter 26 we created a cube. Now, we are going to create the Data Mining Model from it.
2015-04-27
3,758 reads
In the chapter 26 we created a cube. Now, we are going to create the Data Mining Model from it.
2015-04-27
3,558 reads
In this tutorial we will explain what are the SSAS cubes to use them in Data Mining.
2015-04-21
4,394 reads
This article shows a step by step tutorial to create a virtual machine in 15 min on Windows Azure.
2015-03-12
2,698 reads
In the chapter 18-22 we explained how to work with Microsoft Excel to Access to the Data Mining information. This time, we will explain how to work with Microsoft Visio.
2015-03-05
4,268 reads
In the chapter 18-22 we explained how to work with Microsoft Excel to Access to the Data Mining information. This time, we will explain how to work with Microsoft Visio.
2015-03-05
3,853 reads
In this chapter we will detect the Data Mining activity using SQL Server Profiler.
2015-02-09
3,051 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers