Viewing 15 posts - 16 through 30 (of 120 total)
That was a sample url. You will need to develop your own program. Do a Google search on "vb.net automate Outlook". Publish your vb.net program to a web...
April 11, 2014 at 12:05 pm
My guess is that you are hitting a limit on the body size using mailto. I do something similar to what you are attempting; however, I use a hyperlink...
April 11, 2014 at 5:23 am
Here is the create table and inserts. The desired output is in the original post. Thanks.
If Object_ID('tempdb..#Orders')Is Not Null
Drop Table #Orders;
Create Table #Orders
( ItemNoVarchar(15)
, DueDateDatetime
, ChamChar(1) )
Insert Into...
August 27, 2013 at 3:00 pm
Resetting Internet Explorer to default setting fixed it.
May 9, 2013 at 8:57 am
I always get best results when doing division using custom code. Here is an example:
Public Function CalcRatio(ByVal Numerator As Object, ByVal Denominator As object, ByVal DivZeroDefault As Object)...
November 29, 2012 at 5:32 am
I've read that web services can be called from T-SQL in a stored procedure. Perhaps you can put your error handling there?
November 26, 2012 at 3:58 am
Yes. I mean one stored procedure that combines data from your three databases. I use stored procedures almost exclusively in my reporting. You will need to use...
November 25, 2012 at 10:44 am
As an alternative, have you considered combining the data from the three databases in a stored procedure and using just one SSRS dataset?
November 24, 2012 at 5:55 am
Check if all reports are using a shared schedule.
November 6, 2012 at 4:44 am
Brian,
Your report path still does not look right. Try ReportServer?/System/Finance Reports/TestReport
I'm hardly an expert at this, but typically I use dimension attributes as parameters instead of fact table keys.
December 15, 2011 at 8:58 am
Brian,
The answer to your report parameter question is in the link your provided. Look at Figure 7 - Supply Report Parameters.
December 9, 2011 at 7:08 am
For server name enter just the name of the server without any path or aspx page.
For report path enter: ReportServer?/System/Finance Reports/Invoice
December 8, 2011 at 10:19 am
Thanks, but restarting the Distributed Transaction Coordinator did not end the processes. I resorted to a server reboot since the server is also running Reporting Services.
October 20, 2011 at 1:30 pm
Viewing 15 posts - 16 through 30 (of 120 total)