SQL PASS Virtualization VC Presentation Wrapup
Everyone, thank you for attending the SQL PASS Virtualization Virtual Chapter presentation entitled “SQL Server High Availability Options After Virtualization”...
2013-09-11
679 reads
Everyone, thank you for attending the SQL PASS Virtualization Virtual Chapter presentation entitled “SQL Server High Availability Options After Virtualization”...
2013-09-11
679 reads
Next Wednesday I will be delivering a session for the SQL PASS Virtualization virtual chapter entitled “SQL Server High Availability...
2013-09-06
521 reads
If you live life in the manner that I do, life is all about change and self-improvement. To me, life...
2013-09-03
781 reads
VMworld 2013 is this week in San Francisco, and some exciting details about the next version of the vSphere suite,...
2013-08-28
558 reads
Today I had the pleasure of speaking at the SQL Saturday #235 in New York City. Talk about an absolutely...
2013-08-17
699 reads
Today I spoke at the second St. Louis SQL Saturday - SQL Saturday #236 in St. Louis. This year it was...
2013-08-03
535 reads
Have you ever wanted to know how fast one of your core SQL Servers are running, or ever wanted to...
2013-07-29
1,463 reads
This year’s SQL Saturday #222 in Sacramento was a blast. This event was certainly the high point of my summer,...
2013-07-28
775 reads
SQL Saturday #222 in Sacramento, CA, is coming fast! This Saturday, July 27, I will be presenting a little pre-show...
2013-07-24
668 reads
Huge sandwich from recent trip to downtown Chicago
First, I want to acknowledge that I’ve been pretty quiet on here lately....
2013-07-07
723 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