Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
kendall.miller
Starting Member
1 Post |
Posted - 2012-10-24 : 11:15:13
|
I am using the Execute SQL Task Control Flow Item with CTE's, here is an example:WITH list AS (SELECT 'test' AS Name)SELECT Name FROM list; This works great in sql server data tools 2010, but only errors generate in BIDS 2008. Another Example:SELECT 'test' AS itemIn sql server data tools 2010 it works, but only errors in BIDS 2008. |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-10-24 : 11:41:46
|
BIDS 2008 editor is not so great in parsing some of the new features. You could put query in a procedure and call it from BIDS to avoid this------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|