Data Mining Part 22: Analyze the Data Mining Data with Excel
This is the last article related to Data Mining in Excel. This last chapter will cover the Analyze section.
This is the last article related to Data Mining in Excel. This last chapter will cover the Analyze section.
Database drift is the difference between two database schemas. Today Steve Jones discusses the concept and wonders how often it happens.
The current popularity of the Salesforce software development platform has taken the industry by surprise. The current IT culture favours the esoteric, yet here is a development platform geared to the idea that anyone can use it: a populist language like BASIC. Does this threaten the careers of professional developers?
Learn how to invoke SSRS reports from an SSIS package after the data load is completed.
This week Steve Jones wonders if you're taking advantage of the changes in the T-SQL language.
It is easy to import Excel data into database tables via TSQL, using OLEDB, either by the OPENROWSET function or linking to the spreadsheet as a server. The problem is that there are certain things that aren't obvious that you need to know about.
Steve Jones completed a task this year that he's rarely completed in the past.
This article shows a step-by-step guide to move the distribution database to a new SQL Server instance.
Marcin Policht presents different methods that allow you to monitor the performance and characteristics of your PaaS databases, ensuring that they behave in a manner that matches your expectations.
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
BCA KCP Buaran Raya Hub.0851•8812•0691 Jl. Buaran Raya Blok A No. 100, RT.6/RW.dan 101,...
Ruko Puri Mutiara, Jl. Griya Utama B Blk. D No.1-2, Sunter Agung, Kec. Tj....
Telp/wa 085169998765 Jl. Ahmad Yani No.1, Magelang, Kec. Magelang Tengah, Kota Magelang, Jawa Tengah...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers