Building Reports, 2.0 Style
I’m getting my first taste of the new SQL Report Builder 2.0, and so far I’m enjoying the upgrade. Report...
2009-03-08
2,384 reads
I’m getting my first taste of the new SQL Report Builder 2.0, and so far I’m enjoying the upgrade. Report...
2009-03-08
2,384 reads
During the month of February, I participated in the Get Fit in February challenge last month. Along with a few...
2009-03-04
623 reads
Like most everyone who works hard in our industry, I’ve run into more than a few conflicts trying to balance...
2009-02-25
1,588 reads
When I talk to other SQL Server professionals, I’m often surprised at how many do not have any involvement in...
2009-02-17
1,223 reads
I was tagged by Grant Fritchey (aka Scary DBA) in the latest get-to-know-you question. This one asks, “What do you...
2009-02-11
2,233 reads
I’m on Day Two of the Get Fit in February Developer Challenge. This month-long competition boasts around 200 participants who...
2009-02-02
647 reads
I’ve seen a good deal of coverage recently that is geared toward those who have recently begun a career as...
2009-02-01
848 reads
For those who were in my session on SSIS Scripting at SQL Saturday Tampa last weekend, I have posted the...
2009-01-26
1,361 reads
I’m sitting in the Tampa airport waiting for a flight back home from SQL Saturday 10 in Tampa. There was...
2009-01-25
1,673 reads
I got the opportunity to participate in the We Are Microsoft Charity Challenge (under the umbrella of GiveCamp) in Dallas...
2009-01-19
693 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