The Wise Old Man Part 2
In my previous post The Wise Old Man Part 1 I wrote about a great session I attended during SQL...
2008-10-30
1,579 reads
In my previous post The Wise Old Man Part 1 I wrote about a great session I attended during SQL...
2008-10-30
1,579 reads
During one of the sessions that I attended during SQL Saturday in Orlando I had the privilege of listening to...
2008-10-29
1,686 reads
This weekend I spoke at Seminole Community College with a session on Reporting Services 2008. If your interested you can...
2008-10-27
1,413 reads
Make sure you make it to the next SQL Saturday event that I will be speaking at October 25, 2008...
2008-09-29
1,298 reads
We had a great group of about 35 people last night at the JSSUG (Jacksonville SQL Server User Group) meeting....
2008-07-17
705 reads
I will be speaking at an upcoming JSSUG (Jacksonville SQL Server User Group) meeting Wednesday July 16th. This event will...
2008-07-07
511 reads
This is just a starting point for you to prepare for your interview so make sure not to limit yourself...
2008-05-19
4,063 reads
Here are your answers to the questions from last week You should get some variation of what I have given...
2008-05-19
2,732 reads
I have decided to make a short series of blogs about possible interview questions to help you prepare for an...
2008-05-19
3,009 reads
I wrote these questions thinking about what some basic t-sql statements that I would want to see if I were...
2008-05-10
3,809 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...
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...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
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