Tallahassee User Group meeting August 9th
For those of you in the Tallahassee, FL area on August 9th at 6:00 pm I will be speaking virtually for...
2011-07-21
764 reads
For those of you in the Tallahassee, FL area on August 9th at 6:00 pm I will be speaking virtually for...
2011-07-21
764 reads
The new “Denali” PowerPivot has a lot of fanatic new additions that I’ve really been looking forward to.Many of my...
2011-07-21
2,643 reads
There are a lot of fantastic new features in the latest CTP 3 release of PowerPivot, which you can download...
2011-07-20
2,508 reads
Tonight I took my first crack at getting SQL Server Denali up and running on my machine.From what I had...
2011-07-20
1,408 reads
Yesterday I was thrilled to find out that my session "Common Analysis Services Design Mistakes and How to Avoid Them"...
2011-06-16
686 reads
For many Analysis Services developers building dimensions with many attributes and hierarchies is something that comes as second nature to...
2011-06-13
5,881 reads
Wednesday I will be presenting for the PASS BI/DW group a session on Data Mining in Excel. This is a...
2011-05-24
1,187 reads
Yesterday was the first day of the SQL Rally conference in Orlando, FL.It was a great first day because I...
2011-05-12
814 reads
Imagine you have spent the last 9 months developing a sales Data Warehouse and an Analysis Services cube.Your end users...
2011-04-25
4,276 reads
Often when building dimensions there is a need to order you dimension attributes by something other than the NameColumn or...
2011-04-19
4,130 reads
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...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
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