Viewing 15 posts - 256 through 270 (of 388 total)
It's early in the morning (pre-coffee) but where do you construct the xml?
July 9, 2009 at 12:17 am
I really like this a lot, Oleg!
And Florian, a pity your script went largely unnoticed - you should have submitted it as an article!
Real shame about the 4000...
July 3, 2009 at 7:21 am
michael vessey (6/26/2009)
isnumeric(right(myfield,7))or if it's not always 7 digits
isnumeric(substring(myfield,3,7) )
Got to be a bit careful with isnumeric as ISNUMERIC('12345e1') returns 1
I think you can use something like
isnumeric(right(myfield,7) +'e1')
Regards,
David.
June 26, 2009 at 9:52 am
Thanks Mark,
That's an interesting approach certainly with merit. It got me thinking about an alternative which would "bubble" non nulls to the top, by linking to the previous row[/url]
Do...
June 26, 2009 at 2:45 am
Please correct me if I've misunderstood but....
Coalesce returns the first non-null value among its parameters (from first to last). Given that your second parameter is
not null (a space),...
June 26, 2009 at 12:32 am
twillcomp (6/11/2009)
For David McKinneyJust be wary when using a main procedure to prepare your temp tables
followed by sub procedures to populate the temp tables
Thanks for pointing this out and including...
June 11, 2009 at 5:31 am
Looks to me like you've pretty much covered the A-Z of the subject.
Well done!
I never realised, for instance, that temporary tables are still in scope to nested procedures. I'm...
June 10, 2009 at 12:33 am
mcl (5/18/2009)
Reading the article sparked off an idea but, as I'm relatively inexperienced in working with SQL server & XML, I'm...
May 18, 2009 at 7:44 am
Simon Taylor (5/12/2009)
May 12, 2009 at 12:53 pm
Paul White (5/11/2009)
David McKinney (5/11/2009)
I agree - it is highly dubious! But hopefully that doesn't make it without merit.
Hey David,
Point taken - and I agree it is a good...
May 12, 2009 at 12:21 am
nancy.lytle (5/11/2009)
Looks like I got it to work and oh goodness, it looks like it is going to be fun to play with!Thanks for everything,
Nancy
excellent! enjoy!
May 11, 2009 at 1:47 pm
Nancy,
It looks to me that you've not set the OperationType correctly in the XML task. (Your doing XSD validation instead of XSLT.)
I've attached a screenshot of how the xml...
May 11, 2009 at 9:57 am
Hi Nancy,
I'll try to check this out this evening and send you some feedback. (It's afternoon here.)
Regards,
David.
(Alternatively checkout MSXSL from the Microsoft downloads pages.)
May 11, 2009 at 8:16 am
We McKinney's have got to stick together! (I thought I was the only one in the SQL world!)
Thanks for your support.
(And yes user name is an obvious extension to...
May 11, 2009 at 7:18 am
Thanks for your comments.
I agree - it is highly dubious! But hopefully that doesn't make it without merit.
In Part II, I do talk a little (just a little) about...
May 11, 2009 at 6:27 am
Viewing 15 posts - 256 through 270 (of 388 total)