Installing VMware vCenter 5.5 on Windows Server 2012R2
Recently I encountered a small glitch while trying to install VMware’s vCenter 5.5.0b Server on a new VM with Windows...
2014-02-03
1,304 reads
Recently I encountered a small glitch while trying to install VMware’s vCenter 5.5.0b Server on a new VM with Windows...
2014-02-03
1,304 reads
Today I woke up to find that Thomas LaRock (blog | twitter | linkedin) has added me to his SQL Server Blogger...
2014-01-31
1,214 reads
Andy Leonard (b | t | l | f), a good friend of mine from Linchpin People, has announced a new training class...
2014-01-29
1,399 reads
What a terrific week! I’m have a great start to 2014! Yesterday and today I had the opportunity to present...
2014-01-19
517 reads
Announcing a flash sale today from 10a-12p Central time for my upcoming SQL Saturday Nashvillepreconference training session ‘Virtualization for SQL...
2014-01-14
553 reads
For those of you with your mission-critical servers already virtualized on a VMware-based virtual infrastructure, are you using the VMware...
2014-01-08
1,756 reads
Today I presented a session entitled “SQL Server Virtualization 101” for the SQL PASSVirtualization Virtual Chapter. I had a great time...
2014-01-08
834 reads
I love technology predictions because they are usually so wildly inaccurate that at the end of the year it’s pretty...
2014-01-07 (first published: 2014-01-06)
2,571 reads
2013 was a year of incredible growth, change, and challenge for me. This last year has been an amazing roller coaster...
2014-01-02
621 reads
My next all-day SQL Saturday Pre-Conference training session entitled “Virtualization for SQL Server DBAs” will be held on January 17th...
2014-01-02
865 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