SQL PASS Summit just one week away!
Happy Halloween everyone!
I’m stoked that the SQL PASS Summit is just one week from now! You are already registered, have...
2012-10-31
1,243 reads
Happy Halloween everyone!
I’m stoked that the SQL PASS Summit is just one week from now! You are already registered, have...
2012-10-31
1,243 reads
This week I completed a six-part blog series (more like five plus one) on the path to virtualizing your business-critical...
2012-10-29 (first published: 2012-10-24)
2,356 reads
As a SQL Server professional, I consider it an absolute must to attend the SQL PASS Summit each year. Last...
2012-10-25
948 reads
Michael Webster from longwhiteclouds.com reported that VMware Global Support Services told him a few days ago that the Extended Oracle...
2012-10-24
675 reads
Just before SQL PASS Summit in November, House of Brick and I will be holding a free boot camp (update – link removed after event was...
2012-10-18
862 reads
Recently VMware announced at VMworld Europe that it will soon release a product called vCenter Multi Hypervisor Manager, supposedly in...
2012-10-18
619 reads
This month has been wild. I’ve been out of town quite a bit for work, and started the month with...
2012-10-15
805 reads
I will be speaking at SQL Saturday #145 in Nashville, TN to speak on one of my favorite topics – Virtualizing...
2012-10-10
755 reads
The Omaha SQL Server Users Group meeting for October is coming up this Tuesday, and the coordinators have prepared a...
2012-10-08
440 reads
Today I presented two sessions at SQL Saturday Lincoln (almost in my backyard!) – Virtualizing Business-Critical SQL Servers and Database Health...
2012-10-07
444 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