Where Are Your Data Leaks?
It has been almost impossible to avoid reading about the numerous large-scale data breaches reported on a seemingly daily basis....
2018-10-02 (first published: 2018-09-25)
1,951 reads
It has been almost impossible to avoid reading about the numerous large-scale data breaches reported on a seemingly daily basis....
2018-10-02 (first published: 2018-09-25)
1,951 reads
I am honored to have been selected to be a presenter at this year’s PASS Summit coming up this November....
2018-06-06
289 reads
Temp tables are very handy when you have the need to store and manipulate an interim result set during ETL...
2018-05-29
456 reads
Encapsulating business logic into data movement and presentation is a critical part of a stable information management strategy. Too often,...
2018-05-17
296 reads
If data is the new oil, then the web is the world’s biggest gas station. Every day a few billion people...
2018-05-08
267 reads
One of the most underutilized assets in SQL Server Management Studio is the SSMS project. Within Management Studio, one can...
2017-12-22
542 reads
When I first moved to the city where I now live, I found an oil change place just a couple...
2017-12-21
380 reads
Since I started working as a data professional some 15 years ago, I’ve had an enjoyable and successful career. I...
2017-12-20
341 reads
It wasn’t so long ago that the first day of the month was the most common trigger event for updating...
2017-12-19
394 reads
We’re all creatures of habit, and work more efficiently when we know exactly where to find the tools we need....
2017-12-18
336 reads
Do you know if your SQL Server is really running at its best? To...
You can find the slides of my session on the €100 DWH in Azure...
By Steve Jones
This value is something that I still hear today: our best work is done...
Hi everyone I am writing an SP where there is logic inside the SP...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers