The RedMonk Programming Language Rankings: January 2014 #programming
The RedMonk Programming Language Rankings: January 2014
As long as we have been doing our programming language rankings here at RedMonk,...
2014-02-17
890 reads
The RedMonk Programming Language Rankings: January 2014
As long as we have been doing our programming language rankings here at RedMonk,...
2014-02-17
890 reads
A throwout bearing is a part of an automotive clutch system that temporarily disengages the engine from the manual transmission while shifting....
2014-02-17
427 reads
In this post, we’ll walk through the process of deploying an Apache Hadoop 2 cluster on the EC2 cloud service...
2014-02-16
1,661 reads
The baddest swamp buggies in the south!
Formed in 2009 the Million Dollar Buggy club was originally comprised of 10 members...
2014-02-16
645 reads
A few weeks ago I wrote a post about comparing the contents of entire tables in Power Query, and a...
2014-02-15
755 reads
Facebook graph is the primary way for external apps to talk with Facebook. This allows you to get all the...
2014-02-15
522 reads
A simple query in Hive reads the entire dataset even if we have where clause filter. This becomes a bottleneck...
2014-02-15
560 reads
The first time I had an Islay single malt, my mind was blown. In my first foray into the world...
2014-02-15
438 reads
When data entry is strictly defined, it is nice to have data validation list in place, so entries are uniform....
2014-02-14
683 reads
Three months ago, when the few paper calendars that remain on earth flipped over to 2013, ThoughtWorks, a 2,000-employee software...
2014-02-14
397 reads
Here’s a way to centralize management, rotate secrets conveniently without downtime, automate synchronization and...
This may or may not be helpful in the long term, but since I’m...
By Steve Jones
“I’m sick of hearing about Red Gate.” The first article in the book has...
Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...
I have read that the collation at the instance level cannot be changed. I...
hi our on prem STD implementation of SSAS currently occupies about 3.6 gig of...
In SQL Server 2022, I run this code:
CREATE SEQUENCE myseqtest START WITH 1 INCREMENT BY 1; GO CREATE TABLE NewMonthSales (SaleID INT , SecondID int , saleyear INT , salemonth TINYINT , currSales NUMERIC(10, 2)); GO INSERT dbo.NewMonthSales (SaleID, SecondID, saleyear, salemonth, currSales) SELECT NEXT VALUE FOR myseqtest , NEXT VALUE FOR myseqtest , ms.saleyear , ms.salemonth , ms.currMonthSales FROM dbo.MonthSales AS ms; GO SELECT * FROM dbo.NewMonthSales AS nmsAssume the dbo.MonthSales table exists. If I run this, what happens? See possible answers