Prevent creating stored procedures with RECOMPILE hint – Policy Based Management is your friend !
I got motivated to write this post as there was a question on twitter which was like -
The user was...
2013-11-12
1,258 reads
I got motivated to write this post as there was a question on twitter which was like -
The user was...
2013-11-12
1,258 reads
SQLServer 2014 CTP2 came with an inbuilt tool called Memory Optimization Advisor which will help you in migrating your normal...
2013-10-23
1,208 reads
SQL Server 2014 CTP2(All new,shiny shiny !) availability was announced yesterday at #SQLPASS Summit.
Native backup encryption is one of the key...
2013-10-17
1,766 reads
Couple of months back(To be specific in June) Microsoft and Oracle announced their partnership to help enterprise customers embrace the...
2013-09-24
961 reads
Windows Azure Service Dashboard is an excellent way to know the health/availability of your Windows Azure Services.
You might always want...
2013-09-13
1,318 reads
Windows Azure Virtual Machines is a real game changer as it gives us ability to spin up VMs in no...
2013-09-09
1,364 reads
Care about RPO’s and RTO’s? Then you should be backing up your Windows AzureSQL Databases(Formerly SQLAzure).
Windows Azure SQL Database is...
2013-08-19
1,540 reads
I like to clean up things after I’m done with my testing and this morning I decided to clean up...
2013-07-11
1,985 reads
Starting SQL 2014 monitoring memory usage of the memory optimized objects is super important to ensure that your instance don’t...
2013-07-01
1,481 reads
You must be really busy spinning up VMs to test SQL Server 2014 CTP1 and Windows Server 2012 R2 preview.
If...
2013-06-26
1,613 reads
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