Back Yourself Up
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
97 reads
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
97 reads
What makes SQL Server professionals stick together? Can we draw any conclusions from this?
2017-07-10
140 reads
Both options have their advantages and disadvantages. Neither is universally right for all situations. Understand the differences before picking the model that works for your situation.
2017-06-12
12,334 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
313 reads
One Way to Handle a Very Complex Database Project with Several Databases and Cross References
2015-05-19
12,126 reads
2013-07-26
613 reads
A table does not so much 'have' a clustered index as a table 'is' a clustered index.
2013-07-22
6,520 reads
An introduction to Universal Product Codes with code to help you use them in your database.
2013-02-28
6,612 reads
A table doesn't so much "have" a clustered index as a table "is" a clustered index.
2012-12-24
8,373 reads
Today we have a guest editorial from Hakim Ali. Today Akim talks about why holding back out of politeness in code reviews may be a self-defeating practice.
2012-08-06
358 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