Viewing 9 posts - 241 through 249 (of 249 total)
Also watch out for the *= shorthand for LEFT OUTER JOIN. That has also been depricated.
July 28, 2010 at 2:11 pm
I have been trying this myself. Some research has revealed that it isn't possible. Seems that all types are database specific and cannot cross lines between them even...
July 19, 2010 at 10:54 am
I have been trying this myself. Some research has revealed that it isn't possible. Seems that all types are database specific and cannot cross lines between them even...
July 19, 2010 at 10:22 am
A little more research indicates that all types are DB specific and cannot cross DB boundaries.
This article gives some helpful alternatives: http://www.sommarskog.se/share_data.html#prockeyed
July 19, 2010 at 10:19 am
Thanks for the help. Based on your input and the need for user interaction at the beginning I came up with this:
Created a table type for the parameters:
CREATE...
July 16, 2010 at 12:30 pm
Sorry, miscommunicated what the parameters are for. We receive a file from our client and use SSIS to pull it into an intermediate table to process. The file...
July 16, 2010 at 10:44 am
I would do it like this:
@Collist = COALESCE( @Col1 + ',' + @Col2, @Col2, @Col1)
This will set @Collist to the first one of these that comes back without a NULL...
July 16, 2010 at 10:31 am
Yeah, I may hove to create a function or something to do the insert for the TVP. I think the person who runs this does a simple EXEC commanad...
July 16, 2010 at 10:24 am
Sounds good. Just wanted to be sure.
Thanks!
July 15, 2010 at 3:16 pm
Viewing 9 posts - 241 through 249 (of 249 total)