Viewing 15 posts - 5,566 through 5,580 (of 9,643 total)
GSquared (3/20/2009)
March 20, 2009 at 2:15 pm
I think the only way you could fix this is to force a page break after a certain # of rows as the table will grow based on teh #...
March 20, 2009 at 10:38 am
They look okay to me as far as coding goes. In addition to the articles GSquared posted you may want to check out this one[/url] too.
I do have a...
March 20, 2009 at 10:11 am
Hey, I think I almost understand it now. It's an xml doc without tags and since the XML is returned in one column you now have a delimited list.
Makes...
March 19, 2009 at 1:08 pm
Lynn Pettis (3/19/2009)
March 19, 2009 at 12:31 pm
Lynn Pettis (3/19/2009)
March 19, 2009 at 12:12 pm
Here's an example that shows how ownership chaining works in addition to the link Matt provided:
-- drop objects if they exits
IF OBJECT_ID('test.test_table') IS NOT NULL
...
March 19, 2009 at 12:08 pm
hughesj23 (3/19/2009)
That works perfectly. So easy, that the question now seems even more silly. LOLThank you, Jack!
No problem. And a question only seems silly once you know the...
March 19, 2009 at 10:20 am
Try this (no guarantees):
Iif(FlagCol = "Flag",Nothing,AmtCol)
March 19, 2009 at 10:07 am
If you mean something like this:
Update table
Set columnA = Sum(columnB)
Group By
columnC
Then No.
Can you give some more information on what...
March 19, 2009 at 10:04 am
You should definitely try the solution proposed by GSquared it will scale and perform much better than a loop.
If you don't have a numbers table you can create a CTE...
March 19, 2009 at 9:38 am
It can be done in SSIS, but you have to use a Script Component to do it. Within the Script Component you would use the Split function which creates...
March 19, 2009 at 8:34 am
Greg Snidow (3/18/2009)
March 18, 2009 at 1:21 pm
Lynn Pettis (3/18/2009)
March 18, 2009 at 1:19 pm
Michael Valentine Jones (3/18/2009)
I...
March 18, 2009 at 1:16 pm
Viewing 15 posts - 5,566 through 5,580 (of 9,643 total)