Viewing 13 posts - 1 through 13 (of 13 total)
Yeah thanks Dan, got it going with a synonym and OPENQUERY
SELECT * FROM OPENQUERY(Sybase, 'select location from location') AS A INNER JOIN Branch AS B
ON A.location = B.BranchCode
December 14, 2011 at 9:34 am
Me 3. Any help??
December 14, 2011 at 8:57 am
It definitely was a datatype mismatch with the dates but I managed to figure it out. I had to write my query as an expression:
="SELECT SUM(Amount) AS Total
FROM test.records
WHERE...
December 6, 2011 at 1:06 pm
Hi Lowell, yes that goes through but returns 0 as expected.
December 5, 2011 at 12:38 pm
Hi Lowell, thanks for the response.
Yes, the parameters in the report are set to type date/time which is ANSI compatible. When I create a dataset in this report, the dataset...
December 5, 2011 at 12:29 pm
MyDoggieJessie, no I'm not using a linked server however I should set one up and try the query there! I'll give it a shot.
My query within the SSRS report is...
December 5, 2011 at 12:23 pm
Hi bteraberry, thank you, yes that is what I figured.
So now I need to convert a parameter, say @StartDate, to MySQL...Hmmm.
December 5, 2011 at 12:19 pm
SQLRNNR,
My query selects the sum of a column which includes a where clause 'WHERE date BETWEEN @StartDate and @EndDate'. That query returns 0 but when I take out the parameters...
December 5, 2011 at 12:16 pm
Does anyone know where to get the 64 bit Sybase client?
November 22, 2011 at 7:51 am
Okay, I definitely am a noob. 😛
It totally makes sense now. Thanks everyone!!!
November 3, 2011 at 1:32 pm
Thanks for all your responses guys. Thanks for the clarification Lynn, I understand now. That makes sense.
Now...how do I work around this.......hmmm....I need to include 'someguy' in the where clause....
November 3, 2011 at 1:27 pm
Hi Jared. The sum of NULLs actually do appear if I take out the following where clause:
WHERE ... AND (TimeTracking.UserName = 'someguy')
But when I insert that where clause back...
November 3, 2011 at 1:14 pm
Yes, you are correct. There will be rows in the Left Table but none on the right.
Basically, what I have is an auxiliary table called Calendar which contains rows of...
November 3, 2011 at 12:59 pm
Viewing 13 posts - 1 through 13 (of 13 total)