Data Mining Introduction Part 5: the Neural Network Algorithm
This is the 5th article about Data Mining with SQL Server. This chapter is about Neural Networks.
2013-05-22
8,993 reads
This is the 5th article about Data Mining with SQL Server. This chapter is about Neural Networks.
2013-05-22
8,993 reads
This is the 5th article about Data Mining with SQL Server. This chapter is about Neural Networks.
2013-05-22
8,480 reads
This chapter explains the Naïve Bayes algorithm. How does it works, what information is displayed.
2013-04-15
11,053 reads
This chapter explains the Naïve Bayes algorithm. How does it works, what information is displayed.
2013-04-15
10,696 reads
This is the part 3 of the Data Mining Series from Daniel Calbimonte. This article examines the cluster algorithm.
2013-03-12
13,375 reads
This is the part 3 of the Data Mining Series from Daniel Calbimonte. This article examines the cluster algorithm.
2013-03-12
12,689 reads
Sometimes we need to create backups using code. Sometimes we need to do it manually or automatically, programmatically using C#, VB, Powershell.
2012-08-14
7,614 reads
This article describes how to create user defined server roles and use stored procedures and queries related.
2012-05-25
4,575 reads
This article describe the problems about the migration of the databases and logins and the new feature contained databases
2012-05-22
10,868 reads
In this article I will run a SQL Server script to backup a database using C# in visual studio. For this purpose, I am going to use the sqlcmd.
2012-04-27
17,936 reads
By Ed Elliott
Running tSQLt unit tests is great from Visual Studio but my development workflow...
By James Serra
I remember a meeting where a client’s CEO leaned in and asked me, “So,...
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
Hello team Can anyone share popular azure SQL DBA certification exam code? and your...
Comments posted to this topic are about the item Faster Data Engineering with Python...
Comments posted to this topic are about the item Which Result II
I have this code in SQL Server 2022:
CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
exec('SELECT ProductName FROM product;')
END;
GO
exec etl.GettheProduct
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned? See possible answers