Viewing 15 posts - 571 through 585 (of 595 total)
Create a variable called FileName (or whatever you would like to call it) and set evaluate to expression as true.
Then you can define your dynamic filename in the expression, for...
November 11, 2011 at 6:18 am
Have a look here:
http://www.sql-tutorial.net/SQL-JOIN.asp
for joins and here:
http://msdn.microsoft.com/en-us/library/ms187751.aspx
for the MAX() function.
Both will help you to complete what I'm assuming is your homework.
November 7, 2011 at 6:41 am
Ok. The problem isn't with your Report Manager setup - that's what the first question was about. So it must be the report, unless I'm missing something big.
Post the .rdl...
October 23, 2011 at 9:30 am
Have you tried other reports? Do they behave in the same way?
If you could attach the .rdl (obviously edit it for business anonymity) then I'll take a look at that.
October 22, 2011 at 1:50 am
Which is what would happen if you had the visibility set via some kind of data input....
Did you check into any of the other things I suggested?
October 21, 2011 at 8:44 am
And the PDF export?
The only reason I ask is that if there is a problem with the Report Viewer settings then you would see the chart when you export it....
October 21, 2011 at 7:42 am
When you run the report and it is blank, if you export to excel or pdf does the report then appear in that format?
October 21, 2011 at 4:53 am
If you have all of the data for exchange rates per currency then it should be a matter of using MDX to create calculations from your base currency to get...
October 21, 2011 at 4:47 am
You're very welcome, I'm happy to help 🙂
Would you mind posting exactly how you fixed it (what settings you changed etc.)? This may help others with a similar problem.
October 21, 2011 at 2:10 am
Without knowing your specific environment (OS / Memory / Storage etc.) it's difficult to determine what you should look at.
There are general memory setting in AS which could be having...
October 20, 2011 at 5:05 am
A fairly simple solution could be written to do this involving SUBSTRING and CHARINDEX but that is provided the data will always be in the format of "firstname[space]middlename[space]lastname".
for example if...
September 12, 2011 at 6:13 am
robin 86662 (6/15/2011)
June 16, 2011 at 4:01 am
This is fairly convoluted and there may be a simpler way, but it will get you the result you are after:
CASE WHEN LEFT(CONVERT(CHAR,GETDATE(),101),2)<10 THEN
STUFF(RTRIM(CONVERT(CHAR, GETDATE(), 101)),1,1,'')
ELSE
RTRIM(CONVERT(CHAR, GETDATE(), 101))
END
+' '+STUFF(RIGHT(CONVERT(CHAR, GETDATE(),...
June 15, 2011 at 3:15 am
Ah I see. In which case I would put a data grid viewer before your UPDATE command and verify what exact data is going in. Take a few of these...
June 14, 2011 at 5:18 am
Hi Robin,
What is the exact error that you are seeing?
Just a shot in the dark, are the timestamps on each of your databases geographically different? This would explain why you...
June 14, 2011 at 3:56 am
Viewing 15 posts - 571 through 585 (of 595 total)