Putting the ORM debate to bed
Hopefully this should put the ORM debate to bed, either use an ORM or don't but please don't access tables...
2015-05-20
544 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don't but please don't access tables...
2015-05-20
544 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don’t but please don’t access tables...
2015-05-20
52 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don’t but please don’t access tables...
2015-05-20
39 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don't but please don't access tables directly…
There are obviously reasons behind all of this but...
2015-05-20
1 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-05-07 (first published: 2015-04-27)
7,531 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated "compare...
2015-04-27
576 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
56 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
66 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare & deploy” way.
Manual The manual way is where you...
2015-04-27
2 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-04-27
43 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