Viewing 15 posts - 6,151 through 6,165 (of 6,486 total)
Loner (10/7/2007)No team can build a data warehouse or any system in seven days unless the company have a thousand developers. But even the company hires a thousand developers,...
October 8, 2007 at 10:21 am
Did the default database setting cause a change of scope? Meaning - the "old" way had you connecting into a specific instance, and the new one might not, or...
October 8, 2007 at 10:03 am
SSMS is trying to connect using named pipes - but you haven't enabled named pipes (Surface configuration shows TCPIP only enabled). So there seems to be a client config...
October 8, 2007 at 8:32 am
It's a reasonably straightforward thing to do in T-SQL, so can that be coded easily into a SSIS package? sure. You're not giving any specifics, but I can give...
October 8, 2007 at 7:52 am
And - just for giggles - what's the name it's trying to connect to in the OLAP step?
October 8, 2007 at 7:25 am
one sec - you want only want TOTALS greater than zero? or only add up the positive lineitems?
If you only want positive totals, that's a little different - that's a...
October 5, 2007 at 4:19 pm
Don't get me wrong - the Outlook client install is usually the most straightforward way to do this. It's just that once the client is installed, the ONLY part...
October 5, 2007 at 4:16 pm
Two quick methods. The second one only if you need the negative total as well....
Method #1 - "include only credits"
select visit_ID, sum(pmt_amt) from [yourtablename] where pmt_amt>=0 GROUP BY...
October 5, 2007 at 3:47 pm
peterzeke (10/5/2007)
So next time the toilet gets clogged, rather than assume it will take 20 minutes to plunge it out, I put some bigger numbers around the job, say 3...
October 5, 2007 at 3:40 pm
Your inner query isn't related to the outer query in any way, and you have 3 columns instead of one in the sub-query.
You need to use something like this (the...
October 5, 2007 at 12:20 pm
It's not so much setting up Outlook as it is setting up the MAPI mail account on the machine (in the Control Panel, Mail area).
In other words - I don't...
October 5, 2007 at 7:51 am
The main purpose of partitioning is to try to spead out the work across multiple disk sets threads and processors to speed things up. The best performance is when...
October 5, 2007 at 7:48 am
Well - trying to compare a local connection to one going through a firewall isn't exactly apples to apples. There are a lot more moving parts in an "over...
October 5, 2007 at 6:57 am
No reason you couldn't. Remember - bcp runs from a command prompt, so you can "parameterize" that any way you wish. If you were to enclose that in...
October 4, 2007 at 4:03 pm
[rant]
That's some of the worst auto-generated code I've ever seen. That makes trying to clip your toenails with a chainsaw not look so stupid. Whoever built the system...
October 4, 2007 at 3:50 pm
Viewing 15 posts - 6,151 through 6,165 (of 6,486 total)