Configure Report Manager to open Report Builder 2.0
Recently while at a client I was discussing the differences between Report Builder 1.0 and Report Builder 2.0. The discussion...
2010-01-08
1,738 reads
Recently while at a client I was discussing the differences between Report Builder 1.0 and Report Builder 2.0. The discussion...
2010-01-08
1,738 reads
Over the last few weeks I have focused most of my blog energy into writing a couple articles. So I...
2010-01-04
1,635 reads
Over the last few weeks I have focused most of my blog energy into writing a couple articles. So I...
2009-12-29
1,870 reads
For a little more than a year now I've been a part of the PASS BI SIG and have tried...
2009-12-18
429 reads
Often when designing a report you may find a need to concatenate values in an expression. For example, you want...
2009-12-11
1,388 reads
This is an answer to a forum question on www.bidn.com
Running SSIS on a 64-bit machine has several caveat that developers...
2009-12-11
4,747 reads
Running SSIS on a 64-bit machine has several caveat that developers need to be aware of. Tasks like the ActiveX...
2009-12-11
514 reads
In part one of this post I showed how you can use a report to run SQL Server Agent Jobs by...
2009-12-11
1,877 reads
This is part three in a series of blog posts that will help you build an arsenal of MDX calculations...
2009-12-09
1,503 reads
This is part four in the series of blog posts that will help in building a library of calculations you...
2009-12-07
2,809 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