SSIS Denali Resolve References
One of the new features in SSIS Denali that I’m really excited about (Other than the ability to Undo ctrl-z)...
2010-11-15
1,402 reads
One of the new features in SSIS Denali that I’m really excited about (Other than the ability to Undo ctrl-z)...
2010-11-15
1,402 reads
The votes have all been tabulated and during PASS this week the top pre conference seminars were announced for SQL Rally.Thankfully...
2010-11-12
503 reads
The end has come! We've been told for several years the vNext of SQL Server will no longer support DTS...
2010-11-11
3,499 reads
Picked up this nice script from a client last week. Use this script below to create a Date Dimension for...
2010-11-08
1,128 reads
In a post a while back I wrote about how you can create conditional color formatting on the Analysis Services...
2010-11-04
2,938 reads
Pre Conference seminar voting is up now. Go make it happen! Here's the description of our session:
Title:
Business Intelligence Workshop
Speaker:Patrick LeBlanc,...
2010-10-26
908 reads
Okay SQL Community, I need your help! Patrick Leblanc, Adam Jorgensen, Mike Davis and myself have submitted a precon for...
2010-10-23
561 reads
Tuesday at 12:30 pm I will be presenting for SQL Lunch giving you an overview of some common DAX Expressions...
2010-10-22
998 reads
Recently I inherited a set of SSIS packages that did a pretty simple calculation for age.It used the following expression,...
2010-10-09
1,378 reads
Often when designing a Reporting Services with parameters you
may be required to display those parameter values on your report.This is...
2010-10-08
4,193 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