Viewing 15 posts - 391 through 405 (of 417 total)
Did you ever figure this out? I might have recently done something similar, but its been over a month since this post.
October 20, 2009 at 1:15 pm
I may have misread the subquery join.
Can you find if it is ever possible for the subquery to return multiple rows? even though it doesn't for the example?
October 20, 2009 at 1:03 pm
Does this return anything?
SELECT T3.Val1
FROMTable3 AS T3
INNERJOIN Table4 AS T4 ON T4.SomeID=T3.SomeID
WHERET3.Val2 = 1
GROUPBY T3.Val1
HAVING COUNT(*) > 1
and does it work if you change your subquery...
October 20, 2009 at 12:21 pm
The argument that has worked at my company is that spreadsheet use means we store the same information in many places, which means we do not use standard names and...
August 17, 2009 at 9:10 am
We switched from Crystal to SSRS mainly because of cost. We just had the freebie five license web server for Crystal which meant when 5 people were viewing reports, nobody...
August 4, 2009 at 8:52 am
Have you checked that the value of @BSTVal is being set correctly in both cases?
I assume prcBSTOn is a proc, the code for which is not listed.
June 17, 2009 at 8:25 am
duda (3/26/2009)
I have a problem in proclarity front end application. It does not calculate the subtotals correctly in some of the columns. See example below:
...
April 24, 2009 at 11:29 am
I have no idea why it works one way and not the other, but why not solve the truncation?
Maybe irrelevant, but SSIS defaults char fields to a length of 50....
November 26, 2008 at 8:43 am
This doesn't help, but this is the reason I believe that excel is the devil.
Excel 2007 does a much better job of handling text values that resemble numbers, but I...
September 25, 2008 at 7:55 am
One of my cleanup tasks was not working because I had the file suffix as .bak including the dot.
September 3, 2008 at 8:04 am
If I posed this question "should I sweep my driveway with a toothbrush or a hairbrush?' would it be more helpful to tell me to use a broom or the...
August 20, 2008 at 7:20 am
Will this work?
CASE WHEN TotalTests >2 THEN '3PLUS' ELSE '2MINUS' END AS Tests2
Or do you need two additional columns:
CASE WHEN TotalTests <= 2 THEN 1 ELSE 0 END AS...
July 28, 2008 at 9:52 am
Are they both running on the same box? If not then you may have to set up kerberos. It sounds simple, but never works on our network.
July 3, 2008 at 9:24 am
What machine are you running the package from? I think you have to be on the server to use bulk insert in SSIS. That's how I got it to work,...
June 17, 2008 at 7:03 am
I found this article useful:
I had some columns with incompatible data types, so I ended up using SSIS to query oracle and convert some columns, then import into...
May 12, 2008 at 8:16 am
Viewing 15 posts - 391 through 405 (of 417 total)