TGI SQL Friday - Weekly Roundup Friday 19th August 2016
Its been a lovely week here in the UK as we approach the end of August. Sun has been out,...
2016-08-19
424 reads
Its been a lovely week here in the UK as we approach the end of August. Sun has been out,...
2016-08-19
424 reads
This weeks great value IT training deals are in. This being SQL Server blog I would like to draw your...
2016-08-17
383 reads
It is that time of year when the Scandinavia holds its SQL Saturday events and once gain I have been...
2016-08-16
317 reads
This is an interesting question. Lets look at couple of definitions starting with Wikipedia’s definition
“Enterprise architecture (EA) is "a well-defined...
2016-08-15
499 reads
This week has seen the launch of my new SQL Server newsletter in conjunction with Learning Tree. If you would...
2016-08-12
358 reads
As many of you know I have been delivering Learning Tree training courses since way back in 2010. Combing training...
2016-08-10
429 reads
It’s that time of the week when the Great Value IT training page gets its weekly update and this week...
2016-08-09
374 reads
My post the top 3 books for becoming TOGAF certified punlished last week looked at books on preparing for the...
2016-08-08
429 reads
Its that time of the week when get the latest Learning Tree courses that have been available for £750 plus...
2016-08-03
332 reads
I often get asked what books are useful for preparing for the TOGAF certification exam. The resources are generally from...
2016-08-01
973 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