PASS Summit 2012 Recordings Available
Did you attend PASS Summit and miss out on some sessions because there were so many or you were busy...
2012-11-21
1,240 reads
Did you attend PASS Summit and miss out on some sessions because there were so many or you were busy...
2012-11-21
1,240 reads
Life is finally returning to normal after a great week in Seattle for PASS Summit 2012. The entire year is...
2012-11-23 (first published: 2012-11-13)
1,612 reads
Thanks to all who attended my webinar last Thursday on Building Dynamic Cube Reports. You can find my code
Recording:
http://pragmaticworks.com/LearningCenter/FreeTrainingWebinars/WebinarDetails.aspx?ResourceId=470
Code:
http://sdrv.ms/RqxbcF
There are...
2012-10-30
1,632 reads
Join me next week for a really fun presentation on building Dynamic SSRS
reports using Analysis Services cubes as a...
2012-10-18
1,596 reads
If you missed any of the great 24 hour of PASS sessions from September you
can now watch the recordings.
http://www.sqlpass.org/UserLogin.aspx?returnurl=%2fLearningCenter%2fSessionRecordings%2f24HoursFall2012.aspx
Details...
2012-10-12
1,072 reads
Several weeks ago I posted a quick survey on my blog that asked how you choose a session to attend...
2012-10-03
959 reads
Last week during my 24 Hours of PASS session on Choosing a Reporting Platform I fielded a question that appeared...
2012-09-26
1,294 reads
Tomorrow Brian Knight and I will kick off 24 hours of PASS with a session on Choosing a Microsoft Reporting...
2012-09-19
1,173 reads
Many of you have attended sessions by technical speakers at conferences and mini-conferences like SQL Saturday, SQL Rally, 24 Hours...
2012-09-12
1,092 reads
September is another busy month of speaking events for me and I thought I’d share them with you so maybe...
2012-08-29
1,719 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