Thoughts on Mentoring - Part 2
It's always good to find a book or two on a subject when you want to be good at something....
2008-04-14
508 reads
It's always good to find a book or two on a subject when you want to be good at something....
2008-04-14
508 reads
Mentoring is something I think a lot of us wish for and that few of us find. Few businesses encourage...
2008-04-13
514 reads
Saw this in the MCP Flash today, if you register to be notified when the exams are live you get...
2008-04-11
314 reads
If you haven't visited yet, MS Connect replaces the old sqlwish email alias and provides - in theory! - a better way...
2008-04-09
435 reads
Well, it got me at least! Not long ago someone asked me about partitioned views and as I'm apt to...
2008-04-08
407 reads
I suspect few would argue that database mail in SQL 2005 is a huge improvement over the mail system in...
2008-04-07
301 reads
Absolutely worth watching.
http://blogs.sun.com/jonathan/entry/the_video
2008-04-07
514 reads
From the SQLSaturday event site:
AFTER EVENT PARTY ANNOUNCED! Our after event party will be held at 7 Bridges Grille beginning...
2008-04-07
561 reads
In SQL 2000 when you run sp_updatestats it's the equivalent of running UPDATE STATISTICS on each table, forcing the update...
2008-04-06
413 reads
I needed a KVM (keyboard-video-mouse) switch for home to let me switch between two machines, found the Trendnet 2 Port...
2008-04-03
324 reads
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...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
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