ARMED - Azure ARM VS Code extension
I have been working with ARM templates for a little while and have found it really annoying to test functions...
2017-12-06
31 reads
I have been working with ARM templates for a little while and have found it really annoying to test functions...
2017-12-06
31 reads
I have been working with ARM templates for a little while and have found it really annoying to test functions...
2017-12-06
12 reads
UPDATE: I haven't been keeping it up to date so deprecated it - if you find something like this useful moan at microsoft and get them to implement it!
I...
2017-12-02
27 reads
UPDATE: I haven’t been keeping it up to date so deprecated it - if you find something like this useful moan at microsoft and get them to implement it!
I...
2017-12-02
I keep having to refer to the virtual machine size page and the disks pricing page to work out how...
2017-12-02
35 reads
I keep having to refer to the virtual machine size page and the disks pricing page to work out how...
2017-12-02
359 reads
I keep having to refer to the virtual machine size page and the disks pricing page to work out how...
2017-12-02
19 reads
I keep having to refer to the virtual machine size page and the disks pricing page to work out how...
2017-12-02
42 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got an error message to say “The host cannot be...
2017-11-30
3 reads
I was setting up an availability group listener recently and when I tried to connect to the listener I got...
2017-11-30
635 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