Viewing 15 posts - 1 through 15 (of 25 total)
I actually was fiddling with this, and came up with:
select DIVISION, (COUNT(DIVISION)) as DIVCOUNT
into #D1A
from #DIVISIONTABLE
group by DIVISION having COUNT(*) > 0
And it worked!
It looks like your solution would work,...
May 24, 2007 at 12:40 pm
The difference that I find is formatting. Peter's does the up and down output, whereas yours (Jason) is right to left (or left to right, depending). It's all on one...
April 6, 2007 at 8:36 pm
I'll try this too, to see if will be any easier to figure out, although I DID just figure out the other method (but I think my brain hurts, now,...
April 6, 2007 at 8:12 pm
So if I do a pass before all of this, into #temp1, for instance, that just has the values for the product dollars in it, how would that relate to...
April 6, 2007 at 7:47 pm
Maybe I'm NOT being dense. This is pretty hard to follow. I'll try to figure it out.
Thanks
April 6, 2007 at 2:17 pm
Thanks a lot. That worked.
February 13, 2007 at 8:25 pm
I was already far down the road of doing this without prompts, so I figured out how to do it, finally. My final approach was to put the variables (as...
January 25, 2007 at 5:15 pm
This is very good information, thanks. I actually didn't think one could prompt for input in a(n) SP. I will try to figure out how to change the DTS (but...
January 25, 2007 at 1:50 pm
If the prompting doesn't happen at the point that someone runs the DTS Package manually, then what is the point of setting up global variables at all? The user would...
January 25, 2007 at 12:54 pm
Maybe I'm confused. I thought that if you run the DTS Package manually, from Enterprise Manager, it should prompt you, but if you run it from dtsrun, and pass variables...
January 25, 2007 at 10:10 am
OK, I tried the sample, and here's the error message I get:
Error string: The specified DTS Package ('Name = 'gvTest'; ID.VersionID = {[not specified]}.{[not specified]}')...
January 24, 2007 at 5:20 pm
Not yet. I've been really busy this morning, but I have a window open with your example in it, so I just need to DO it. I'll post something when...
January 24, 2007 at 1:51 pm
I had them check, and it has been determined that they are on SP4, so THAT'S not the issue. I have tried just running the package as 'dtsrun /F c:\mailing.dts'...
January 24, 2007 at 10:05 am
They have a go live date of 2/3 for this project, and they don't want to rock the boat beforehand, so the guy said that he would probably do any...
January 22, 2007 at 10:43 am
I copied the string from dtsrunui, and put the 'answers' to my parameters into it, so any redundancy is what it expected, apparently.
I can try your suggestion, but I think...
January 22, 2007 at 10:21 am
Viewing 15 posts - 1 through 15 (of 25 total)