Viewing 15 posts - 661 through 675 (of 702 total)
Peter,
Thank you for the further explanation. I think I'm a lot closer to understanding what's happening now.
You ask:
Why do the conversion in T-SQL and not in SSIS (as...
June 19, 2008 at 9:01 am
With a similar problem, rather than change the datatype to unicode in my database (not really an option), I added a convert function to the OLE data source: CONVERT(nchar, Problem_column)...
June 18, 2008 at 7:49 pm
This is a good QOD in that it prompted a careful reading of the syntax of an unfamiliar (to me, anyway) feature. The keywords "DELAY", "TIME", and "TIMEOUT" all...
June 17, 2008 at 2:06 pm
You have your answer already -- DATEADD(m,6,fiscaldate) or DATEADD(m,7,fiscaldate) -- but goodness, is my curiosity piqued.
For fiscaldate values in January through June, the result will be a date...
June 16, 2008 at 5:37 pm
The reference given for Update.Write as part of the answer is very clear about this:
.WRITE ( expression, @Offset , @Length )
Specifies that a section of the value of...
June 16, 2008 at 5:16 pm
As an exercise, yes, you'd probably build your own conversion rates table. From there, you'll have lots of choices on correlating the data. If, as I suspect, this is a...
June 12, 2008 at 10:40 pm
Just my luck... I actually expected that any answer other than those bowing to superstition would be considered correct.
June 12, 2008 at 10:28 pm
It's relatively simple to run DTS packages under SQL2005 with legacy support. We decided to do that when we moved from 2000 to 2005 in order to keep the...
June 10, 2008 at 10:43 am
That link from Mahesh was not accessible through my company VPN. It's on a blacklist that returned this message:
"The URL you entered is categorized as Illegal Software and has...
June 10, 2008 at 9:58 am
Aleksandr,
The truncation happens in the concatenation of the hyphens to N'hello', step 2 in my previous post. It's truncated because the string 'hello' is cast as National characters, so...
May 27, 2008 at 11:57 am
1. The "N" prefix indicates "National" characters, that is, double-byte characters to support large-alphabet languages such as Japanese.
2. The concatenation of N'hello' to the repeated hyphens is where...
May 27, 2008 at 10:24 am
Michael,
If you do get stuck building this, an artilcle was just posted that addresses making the best of a bad situation.
Name Value Pair article on SQLServerCentral.com: http://www.sqlservercentral.com/articles/Database+Design/62804/
May 19, 2008 at 4:03 pm
Jacek,
Somewhere in the middle of the avatar wars (which did entertain, JM and RB) there may an answer to this, but I'll ask here anyway. Did you you intend...
May 19, 2008 at 3:53 pm
As you've found, it's nearly impossible to specify rules for every name. It may be better to use the rules to spot names that don't seem to fit the...
May 16, 2008 at 9:00 pm
James,
Thanks for the full picture. As a new user of SSIS, I'd be interested in the advantages of using the VariableDispenser approach as you did in your code....
May 14, 2008 at 3:07 pm
Viewing 15 posts - 661 through 675 (of 702 total)