Featured Blog: SQL Server 2008: Partition-level lock escalation details and examples
Paul Randal of SQLskills takes a look at lock escalation in SQL Server 2008
Paul Randal of SQLskills takes a look at lock escalation in SQL Server 2008
In this video, Randy Dyess shows you how important SQL Server dependencies are and some of the faults with SQL Server 2005 with these. For example, SQL Server will allow you to create a stored procedure that points to a table that doesn't exist. He also shows you how this problem has been corrected in SQL Server 2008.
A simple UPSERT can reduce reads on tables. This in turn will increase the performance of a DB.
How can IT get along better with the rest of the business? Often a SQL Server DBA isn't in charge, but you can influence others and make everything work smoother with a little effort. Andy Warren gives you some tips and tricks that have worked well in the past.
Building a data warehouse usually isn't a small project, but somehow management sometimes sees it as something that can quickly eb done with a tool or two. Longtime DBA Janet Wong brings us a look at some of the problems you might face when getting ready to embark on this
type of project.
SQL Server 2008 has been delayed and Steve Jones thinks the entire process of building this version has been poorly handled.
This article, part 4 in a series, discusses how to use, publish, maintain and govern the enterprise architecture.
If we will get a new version of SQL Server every 3 years, how can we make the process smoother.
If we will get a new version of SQL Server every 3 years, how can we make the process smoother.
If we will get a new version of SQL Server every 3 years, how can we make the process smoother.
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