Finding Checked Out Files in TFS
There may be an easier way, but this was a quick way to find ALL the checked out files in...
2014-06-24
1,379 reads
There may be an easier way, but this was a quick way to find ALL the checked out files in...
2014-06-24
1,379 reads
No Files For You is another Question Of The Day. I ended up making this one just a little more...
2014-06-24
474 reads
Bad Meetings or Meeting Badly is the editorial of the day today. Looking at it today, I wish I had...
2014-06-23
514 reads
Reading, Writing, and Riskmetic is another Question of the Day, this one about how to allow developers to understand performance...
2014-06-23
538 reads
Poecilonym Madness! is my latest question that tests your knowledge of creating/dropping tables, views, and synonyms. Here’s the fun part...
2014-06-20
603 reads
Next week will begin our weekly planning call, so ahead of that (and perhaps a bit later than I should...
2014-06-19
563 reads
Below is the chart Kendal Van Dyke maintains for us in Orlando showing year over year registration counts. Don’t I...
2014-06-19
499 reads
I’m on vacation this week, but enjoying some quiet time during the day to think a little, going back through...
2014-06-17
746 reads
I try to find good stories for editorials at SQLServerCentral and the one this week about Kitchen Duty seems to...
2014-06-17
583 reads
Notes from the trip:
Four hour drive between traffic and rain, about an hour longer than I would have liked. The...
2014-06-16
443 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