Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mrees

  1. mrees

    Actuate 10 - undesirable multiple SQL SP calls when using parameters

    Morning all, Here's the setup: Actuate 10 SQL datasource, using stored procs Reports have cascading parameters and "stand alone" parameters We have noticed that when you first open the report, the parameter procs are called once but when you open up the parameters window after a report has...
  2. mrees

    localhost/reports vs localhost/reportserver

    Thanks for your response. Under IIS->Websites->Default Website I have both a Reports and ReportServer directory. I assume this is what you meant? I think I have configured the report manager in reporting services configuration. But this seems a bit tempramental and prone to hanging. Thanks...
  3. mrees

    localhost/reports vs localhost/reportserver

    Hi, Hope someone can help me out here. I have been tasked with distributing some reports using reporting services. I have never used RS before. This was installed before my time so I cannot comment on many aspects of that. When I try to access http://localhost/reports, IE just sits there, no...
  4. mrees

    Writing a record set to an Excel file

    Hello Using SQL Server 2K. I have a DTS package that uses a SQL task to build a result set in a global variable. This rowset is then output into a text file using an ActiveX task. while not objResults.EOF strRecord = ObjResults.GetString(2, -1, "~", "", "") objStream.WriteLine(strRecord)...
  5. mrees

    Display the Internet Toolbar

    Hi, Thanks for you reply. I hadn't considered exporting and it would appear to be the easy option BUT on checking it seems that using a TEXT format you don't get any toolbars, not even the export one. Could this be because the TEXT format does not need the ActiveX viewer to display the report...
  6. mrees

    Display the Internet Toolbar

    Okkkayyyy It seems that if I open the report through ePortfolio, I don't get the toolbars - but I do get them when I view it from the CMC. Tell me what I'm missing! mrees
  7. mrees

    Display the Internet Toolbar

    Morning all, CE9 + CR9 (Still [sad]) We have a report that is in a character separated value format which a client (outside of our organisation so scheduling to an unmanaged disk is not possible) want to be able to save locally somewhere after viewing. When the report is viewed the internet...
  8. mrees

    CE9 Event File create date won't change without long delay.

    Hi, This is probably more of a Windows question, but I think I would get a better answer here. We have 10 reports running from our test environment (SQL Server 2k) that should be triggered by an event file that the SQL sever creates, this is how it works on our live system (where there are...
  9. mrees

    Log File or something?

    An audit trail is just really a list of information that you think is necessary to be recorded. In your case you wanted to know when your report was printed. The suggestion I gave was to record each time the report was run, by adding a new record to your list (The audit trail) It may be...
  10. mrees

    Log File or something?

    Hi, Although you wouldn't know if a user has printed the report, you could see when it has been run. If you base the report on a stored procedure, you could write a record to an audit trail each time it is run to produce the report. Something like. CREATE PROC sMyReport AS --Add record to...
  11. mrees

    On Demand Sub Report - Lots of Them

    Bugger, meant second question - and my tags were wrong! soz mrees
  12. mrees

    On Demand Sub Report - Lots of Them

    Hi, In response to your first question, I would decide how many columns you can get away with in total to start, (and I would suggest a using a crosstab) and then use the select expert to restrict your data for that x number of coumns. You don't say what your data source is, but sometimes is...
  13. mrees

    Help with Update Query

    Ignore all of that - its rubbish Sorry! But I would try to remove the correlated subqueries. I may have another go if I get time! mrees
  14. mrees

    Help with Update Query

    This is a stab in the dark - but what about.. Update ALLPOL set POLH_AGENTTOTAL_PRIOR_Q = select sum(CSFD_QUARTER_DATA) from ALLCSFD join ALLPOL as P ON ALLCSFD.CSFDPOL = P.POLH_POLICY_SEQUENCE AND P.POLH_AGENT_ID=ALLPOL.POLH_AGENT_ID AND...

Part and Inventory Search

Back
Top