SQL Saturday #34 - Boston
Coming on Jan 30, to the Boston area, be sure to attend this SQL Saturday if you are nearby.
2010-01-27 (first published: 2010-01-20)
1,505 reads
Coming on Jan 30, to the Boston area, be sure to attend this SQL Saturday if you are nearby.
2010-01-27 (first published: 2010-01-20)
1,505 reads
2010-01-26
439 reads
This is a deep dive developer session that explores error handling in SQL Server. The session focuses on core error handling areas such as understandign the anatomy of errors, detecting errors in TSQL and best practices for error handling and defensive programming in Microsoft SQL Server. tuesday, 1/26, 8:00am EST
2010-01-26 (first published: 2010-01-21)
10,699 reads
If you are in the area, come to this great one day training event in Tampa, FL.
2010-01-19
1,159 reads
A new user group in Sweden. Read for more details.
2010-01-13
408 reads
Here is a challenge that takes you away from those repetitive boring type of queries that you write over and over again, several times a day. All of us, the database people, are familiar with thinking in set based manner as well as row by row style. Here is something that is very interesting where you might need to process records in a 'three-line-at-a-time' fashion.
2010-01-11
2,826 reads
Can you generate repeating digits in a Fibonacci series?
2009-12-28
2,168 reads
A sample chapter on clustering from Manning Publishing. Read it to learn a bit on clustering and preview this new book.
2009-12-18
1,598 reads
This challenge involves generating an organizational hierarchy and calculating the total orders created by each employee and his/her subordinates. It involves a number of challenges such as generating a resultset in the correct hierarchical form, calculating the orders created by each employee and his/her subordinates and finally calculating the total orders created by self and all the subordinates.
2009-12-14
2,432 reads
Can you generate a calendar with T-SQL? Take this month's challenge.
2009-11-30
3,924 reads
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
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
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