Beyond Managing To Middle Management
It's funny that many employees see moving into management as a way to stop actually doing work. In practice - if...
2008-11-09
242 reads
It's funny that many employees see moving into management as a way to stop actually doing work. In practice - if...
2008-11-09
242 reads
Today I'll see how many bloggers I can interest/irritate by discussing a quick list of what I think works and doesn't...
2008-11-06
433 reads
Yesterday I posted about deciding to throw in my hat as far as running for the board, today I'll add...
2008-11-05
438 reads
A couple weeks ago I wrote about trying to decide whether to run for the PASS board. I talked about...
2008-11-04
533 reads
I'm not trying to talk politics here, but I don't want to be so politically correct that I avoid important...
2008-11-03
450 reads
This question came up during lunch this past week, and it's a good question. I'll start with my stock 'It...
2008-11-02
550 reads
A month or so ago I posted Blog Review - Yours & Mine to see what I might get for feedback about...
2008-10-30
1,494 reads
This is an unpaid/unsolicited comment about a product now owned by Red Gate Software. Purely my opinions, and I'll try...
2008-10-29
1,594 reads
For the past few years I've been using Frontpage 2003 for basic HTML work, usually to write content for SQLServerCentral....
2008-10-28
1,351 reads
Yesterday I posted an overview of the event, today I want to go over some areas where we excelled, and...
2008-10-27
1,325 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