Hiring in IT and Relevance of Domain Experience
When choosing to hire someone, do you want experience or freshness? A few thoughts from someone that had to go through this recently.
2024-08-12
1,410 reads
When choosing to hire someone, do you want experience or freshness? A few thoughts from someone that had to go through this recently.
2024-08-12
1,410 reads
2022-08-26 (first published: 2017-08-08)
210 reads
2021-12-10 (first published: 2017-03-30)
245 reads
There are many amazing candidates in IT, but how many can give an amazing interview. I feel I can't, can you?
2021-03-04
298 reads
2020-12-23
283 reads
Do you consider multi-skills useful; or just one with mastery in it?
2019-01-21
138 reads
Does the tone of communication matters to you that much that it affects your work in some way?
2018-05-15
107 reads
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
102 reads
Have you ever given up on your brainchild? If yes, how did you deal with it?
2017-04-24
105 reads
By Steve Jones
This value is something that I still hear today: our best work is done...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
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...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
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