Make Visual Studio Setup Slightly Faster
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
49 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
49 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the setup files.
The BITS service is used to download files...
2014-12-07
2 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
58 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
49 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
15 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place and you want to add Sql Server tests it...
2014-11-20
4 reads
When unit testing code there is a really powerful feature that is either called mocking or faking or sometimes using...
2014-11-18
43 reads
When unit testing code there is a really powerful feature that is either called mocking or faking or sometimes using...
2014-11-18
50 reads
When unit testing code there is a really powerful feature that is either called mocking or faking or sometimes using stubs and what these mean is creating objects that...
2014-11-18
7 reads
I recently had the chance honour to spend twenty minutes talking to Boris Hristov about testing with Sql Server for...
2014-11-02
60 reads
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...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
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