Database Weekly - June 2, 2008
A look back at the news from the week including Windows 7 and taking an unwired vacation.
A look back at the news from the week including Windows 7 and taking an unwired vacation.
As the number of different software/technologies increases exponentially, does specializing limit an IT professional's ability to move around? This editorial is being republished due to technical issues from last week.
Continuing on with his very popular series on monitoring your servers, David Bird takes a look at how you manage checking on multiple servers.
Is building software like building a house? Steve Jones digs into the comparison at the start of an editorial series looking at other professions.
Using the default SQL Server READ COMMITTED isolation level, my application sometimes falls victim to the dreaded "lost update" condition where two of my users edit the same row for update but the user who submits his/her change last overwrites changes made by the other user. Is there a good way to check for this and prevent it?
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
In previous versions of SQL Server, it has not been possible to pass a table variable, as a parameter, to a stored procedure. Microsoft introduces table-valued parameters, along with other features, in SQL Server 2008. This article illustrates the function and usage of table-valued parameters.
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
A look back at the news from the week including Windows 7 and taking an unwired vacation.
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