Error in File ~tmp81c59e23760a10.rpt: Invalid argument for database

When trying to run the report via Crystal Reports Server, we get the following error:
Error in File ~tmp81c59e23760a10.rpt: Invalid argument for database.
Opening the report in Crystal Reports 2008 and running a verify database, confirms that everything is working. Yet when we run it through Crystal Reports Server it errors every time.
We are using a Progress ODBC driver which works fine when running reports via Crystal Reports 2008
Can you please shed some light on this.
I have already checked to see if there was a service pack or any other hot fixes available.

Hi Brett,
I believe I have the same error. ie
Invalid Argument provided.
Error in File xxxxx {C8F4D455-6B45-4859-B1B0-3E77619E5AD0}.rpt:
Invalid argument for database."
Have you managed to resolve the issue yet?
We're running Crystal Reports 2008 Basic on MS SQL Server 2005.
The Crystal Report works fine, when run on the server (and/or in terminal server session), but if it is run from a desktop client, which connects to the server, it gives the error above.
So in my case, it must permissions or component related (ie something not loaded, that should be).
I found the following on the internet:
u201DIDataReader supports only one table by default
When you view a report that has tables with the data source set to
IDataReader for each one, and many of the tables are linked together, you
may see the following error message: "Invalid database argument." Calls
made to SetDataSource() from an IDataReader are supported only for
reports that contain one table.
Workaround
To use an IDataReader with multiple tables, create a report with one
command table that selects the necessary fields.u201C
From researching in SAP BOBJ Notes I found somethings to try, or look at, but can't quite tackle them yet. I'll let you know how it goes.
Best Regards,
George

Similar Messages

  • Report fails with " Invalid argument for database." error.

    Hi All,
    Several of my reports deployed on Crystal Reports Server 2008 server fails everyday with the following error.
    Error in File ~tmp121c5dc747685036.rpt: Invalid argument for database.
    The error is not consistent, if report A fails today, it is Report B the next day. When I reschedule the reports, they run just fine. They fail only when the daily schedules run at 2:00 AM in the morning. 100 + reports are run at this time and some of the reports that fail run many times with different parameters. Is this error due to scheduling reports many times or is it something else? Appreciate any help with this.
    Thanks
    Bin

    Hi,
    can you please check under <BOBJ installation directory>\BusinessObjects Enterprise 12.0\logging in the log files created by the crystal reports job server for additionaly error messages?
    Regards,
    Stratos
    PS: Do you run CRS 2008 V0 or V1?

  • Error in File UNKNOWN.RPT: The request could not be submitted for backgroun

    I receive: Error in File UNKNOWN.RPT: The request could not be submitted for background processing.
    The error is on a windows Server 2008 SP2 production server. The report generates fine if I run it from within Visual studio 2008 on the server but not through IIS. The Crystal Reports is the version that came with vs2008 (10.5).
    Initially I was getting unauthorized access errors so I granted full access to everyone for the bin and managed crystal report folders under program files. This fixed the unauthorized access problem but now I get the background processing error. I also tried to inpersonate an admin account with the same result. I tried to copy the crystal reports dll's to the bin folder for the project but that did not help either. I am running out of ideas. I did notice that a 16kb rpt file is generated in the Windows/temp folder every time I try to run the report.
    the crashing page is here Link:[http://futuretechgroup.com/cgi-bin/crystaltest.aspx]
    Here is the event log:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 5/24/2010 12:24:56 PM
    Event time (UTC): 5/24/2010 7:24:56 PM
    Event ID: 87ee3d9297fb409ea7b440b059a0f07d
    Event sequence: 4
    Event occurrence: 1
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/5172/ROOT-1-129192026961318172
        Trust level: Full
        Application Virtual Path: /
        Application Path: C:\inetpub\vhosts\futuretechgroup.com\httpdocs\
        Machine name: FTG2009
    Process information:
        Process ID: 3644
        Process name: w3wp.exe
        Account name: FTG2009\IWPD_1(yanoshftg)
    Exception information:
        Exception type: CrystalReportsException
        Exception message: Load report failed.
    Request information:
        Request URL: http://futuretechgroup.com/cgi-bin/crystaltest.aspx
        Request path: /cgi-bin/crystaltest.aspx
        User host address: 70.173.237.72
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: FTG2009\IWPD_1(yanoshftg)
    Thread information:
        Thread ID: 5
        Thread account name: FTG2009\IWPD_1(yanoshftg)
        Is impersonating: False
        Stack trace:    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       at cgi_bin_CrystalTest.CreateReport() in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 15
       at cgi_bin_CrystalTest.Page_Load(Object sender, EventArgs e) in C:\inetpub\vhosts\futuretechgroup.com\httpdocs\cgi-bin\CrystalTest.aspx.vb:line 9
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    1. The OS is 32bit
    2. Yes. The C drive is the primary drive
    3. For the sake of simplicity and to troubleshoot the sample code has no datasource just 'Hello' in the report header. The Actual work order report that I need has ADO as datasource and it builds a PDF report without any problems when I run the page from VS2008 (development server) so I think the dll's are where thay are supposed to be. The c:\windows\assembly folder has about 25 CrystalDecisions files (10.5.37).
    Do I still need to create a deployment package even though I have everything else working?
    Below is the code I am using to create the report
        Sub CreateReport()
            Dim myReport As New ReportDocument
            'Try
            myReport.Load(Server.MapPath("CrystalReport.rpt"))
            'Catch ex As Exception
            'MsgBox(ex.InnerException.ToString)
            'End Try
            Dim g As Guid = Guid.NewGuid
            Dim woPath As String = "../FileTemp/" & g.ToString & ".pdf"
            'Try
            Dim CrExportOptions As ExportOptions
            Dim CrDiskFileDestinationOptions As New  _
            DiskFileDestinationOptions()
            Dim CrFormatTypeOptions As New PdfRtfWordFormatOptions()
            CrDiskFileDestinationOptions.DiskFileName = _
                                        Server.MapPath(woPath)
            CrExportOptions = myReport.ExportOptions
            With CrExportOptions
                .ExportDestinationType = ExportDestinationType.DiskFile
                .ExportFormatType = ExportFormatType.PortableDocFormat
                .DestinationOptions = CrDiskFileDestinationOptions
                .FormatOptions = CrFormatTypeOptions
            End With
            myReport.Export()
            'Catch ex As Exception
            'MsgBox(ex.ToString)
            'End Try
            Response.Redirect(woPath)
        End Sub

  • Error in File UNKNOWN.RPT  (Crystal for VS 2008)

    I have read and implemented nearly every suggested solution to solve this riddle of a Crystal Error I am stumped with.  Of course, on my dev box the report runs perfectly, as it should.  However, if I deploy my simple report web project to my client's Windows 2003 Standard Server, running IIS 6, I get this error.  I have literally implemented, or attempted to implement every single suggestion Google users have to offer, including adding security for nearly every user that has ever existed, to nearly every folder that has ever existed.  I have uninstalled/reinstalled/upgraded from Crystal for VS 2008, up to Crystal 12, down to Crystal 10.....and the same exact error appears.
    <br><br>
    Here is what my report app consists of:
    1. A single Crystal Report for VS 2008, in a reports folder (which I have granted full control permissions to everybody and my mother, along with permissions to Windows/Temp)
    2. That report, when called from the code behind, loads the report and immediately exports the report to a stream, so I can render that stream to a pdf viewer for the user.  (yes, very simple)
    3. (I do pass load a dataset that is passed into the report too)
    <br><br>
    What happens on the server when the report is referenced/ran<br>
    1. A Crystal .rpt file is geneated in the Windows/Temp folder<br>
    2. The frustrating error appears on the screen<br>
    <br><br>
    I have read through all BO suggested fixes for this, and nothing.<br>
    I have implemented all types of permissions changes, and nothing.<br>
    I have checked then rechecked the registry settings (even though everything happens on the C: drive), and nothing<br>
    I have reinstalled different versions/runtimes etc...and am now back to the original Crystal for VS 2008, and nothing<br>
    <br><br>
    My only total confusion, is that this report runs fine on my new Windows 2003 server.  The only difference between my server and my client's server, is that my client's server also has Helm installed.  That's it.
    <br><br>
    What is next?  Is there any other solution I have not tried?
    <br><br><br>
    Actual Error Message:<br>
    Error in File UNKNOWN.RPT:<br>
    The request could not be submitted for background processing. <br>
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. <br>
    <br>
    Exception Details: System.Runtime.InteropServices.COMException: Error in File UNKNOWN.RPT:
    The request could not be submitted for background processing.
    <br><br>
    Source Error:
    <br><br>
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    <br><br>
    Stack Trace:
    <br><br>
    [COMException (0x800002ad): Error in File UNKNOWN.RPT:
    The request could not be submitted for background processing.]
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +95
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +271
    <br>
    [CrystalReportsException: Load report failed.]
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +333
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +894
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod) +85
       Reports.ViewQuoteReport.Page_Load(Object sender, EventArgs e) in C:\inetpub\wwwroot\AutoID\Reports\ViewQuoteReport.aspx.vb:30
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +50
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    Version Information: Microsoft .NET Framework Version:2.0.50727.3603; ASP.NET Version:2.0.50727.3082
    Edited by: ohjonny on Feb 2, 2010 7:29 AM
    Edited by: ohjonny on Feb 2, 2010 7:30 AM

    I would pin this on the Helm (e.g.; works without, does not work with...). Couple of things you can try:
    1) Call who ever you got your particular Helm from and see if they have any ideas
    2) Use Process Monitor to see if it tells you what files / folders / reg entries are not being accessed. ProcMon is here:
    http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx
    Ludek

  • IWork export to Office error "The file format is invalid" in pages, keynote and numbers.

    I am running iWork 09 (latest versions in all cases)*. When I try to export files from all three of the applications Pages, Keynote and Numbers into the relevant Office formats, I get the error "The file format is invalid." It works fine with PDF or RTF export.
    I am able to open the same files in the iPad versions of thess iWork apps, and then export them. While this workaround will do for now, I'd like to be able to just export correctly.
    Anyone have any suggestions on what might be wrong?
    Thanks,
    Iarla
    * on a MacBook Pro '07, running Lion 10.7.1.

    Yes, this worked a treat, thanks very much! *
    Iarla
    * Note that I needed to manually remove iWorks as the For_iWork:iWork '09:iWork9Update5.dmg.zip file wouldn't work on the latest version of iWorks. This involved deleting the iWork folders in the Applications and Library directories.

  • I am getting an error [Microsoft][ODBC Driver Manager] invalid argument val

    My code is :
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.Hashtable.*;
    import java.sql.*;
    public class LoginServlet extends HttpServlet
         Connection con;
         PreparedStatement ps;
         HttpSession session;
    public void init(ServletConfig sc) throws ServletException
    try
         super.init(sc);
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         }catch(ClassNotFoundException e)
    {System.out.println("SQLException"+e.getMessage());}
    try
         con=DriverManager.getConnection("jdbc:odbc:aaa","scott","tiger");
    }catch(SQLException e)
         System.out.println("SQLException caught" +e.getMessage());
    public void service(HttpServletRequest req, HttpServletResponse res)
         res.setContentType("text/html");
         try
         String ulogin=req.getParameter("login").trim();
         String upass=req.getParameter("pass").trim();
         ps=con.prepareStatement("select pass from Userdetails where login='"+ulogin+"'");
         session=req.getSession(true);
         session.putValue("n1",ulogin);
         ps.setString(1,upass);
         ResultSet rs=ps.executeQuery();
         if(rs.next())
              if(upass.equals(rs.getString(1)))
              res.sendRedirect("http://localhost:8080/Welcome.html");
              session.putValue("login",ulogin);
              else
              PrintWriter pw=res.getWriter();
              pw.println("Sorry your password is incorrect,Reenter your password
    <html><center>");
              pw.println(" <form input type=password name=pass>");
              pw.println("<input type=hidden name=login value="+ulogin+">");
              pw.println("<input type=submit value=submit>");
              pw.println("</form></center></html>");
         else
         System.out.println("your are not a registered user,please register");
         res.sendRedirect("http://localhost:8080/Register.html");
         rs.close();
         catch(Exception e)
              System.out.println(e);
    When i compile, it is well but when i run through displaying my html and passing the data to test,then i am getting an error [Microsoft][ODBC Driver Manager]invalid argument value,
    I was set all my DSN correctly,the same pieve of code worked in another program but now i am getting an error.can any one clear this.
    Thanks in advance

    You have created a PreparedStatement with zero parameters in this statement:
    ps=con.prepareStatement("select pass from Userdetails where login='"+ulogin+"'");so "ps.setString(1, ulogin)" fails because there is no place to put parameter 1. Try this instead:
    ps=con.prepareStatement("select pass from Userdetails where login=?");and your program will work better. Better still, create the PreparedStatement in your init() method, there's no reason for creating it more than once.

  • Error: 544 Error in File UNKNOWN.RPT

    I have an application that is still running Crystal 8.5 Reports.
    I periodically get the following error:
    Error: 544 error in file unknown.rpt.
    Access to report file denied. Another program may be using it.
    Open print job <PEOpenPrintJob>.
    There does not seem to be any consistency to when it happens.
    The reports reside on a server and the runtime application uses a.rpt on a shared directory.
    I can identify the last user to successfully print the report, have them logout of the application and the error goes away for a while. Different users can continue to print using the same .rpt. Then the problem comes back a little while later.
    It only appears to happen to one of the reports
    If I reboot the server the problem goes away for a couple of days. Then it comes back again.
    I have verified and reverified the report and all seems to be OK.
    Any suggestions are appreciated.
    Thanks,
    Leonard

    Thanks Don,
    I'm sure that is the problem.
    I am using Delphi 7 and creating the Crpe Object  during runtime by using the procedure to follow.
    Can you tell me how I would set the AsTempCopy option during runtime?
    Also, my entire application is using crpe32.dll to run reports. Are you saying I can no longer do this?
    We have purchased and tested crystal XI with my application I have just put off implementation in favor of other priority projects. Are there many enhancements to Crystal 2008 or can I save on the upgrade right now and implement XI?
    procedure TfrmPOPrint.btnPrintClick(Sender: TObject);
    var x: integer;
        cr: TCrpe;
    begin
      inherited;
      cr := TCrpe.Create(nil);
      cr.WindowButtonBar.PrintSetupBtn := True;
      cr.OnWindowClose := crWindowClose;
      if (Sender as TButton).Tag = 0 then
          cr.Output := toPrinter
      else
          cr.Output := toWindow;
      try
        cr.ReportName := '';
        cr.ReportName := fcrReportPath + fcrReportName;
        x:=0;
        while x < cr.ParamFields.Count do
        begin
          if (UpperCase((cr.ParamFields[x].Name)) = 'USERNAME')then
              cr.ParamFields[x].CurrentValue := Username;
          inc(x);
        end;
        cr.execute;
      finally
        cr.Free
      end;
    end;

  • I'm trying to open a word file on my iMac and it keeps saying Import error: the file format is invalid. Why?

    I exported a file on my imac as a word document but now I can't open it.  It says Import error: The file format is invalid.

    If no on this forum can help you then I would recommend reposting on the Office for Mac Product Forums.

  • 20544,"Error in File UNKNOWN.RPT:"

    Post Author: SaurabhM
    CA Forum: Crystal Reports
    Hi,
    20544,"Error in File UNKNOWN.RPT:Access to report file denied. Another program may be using it."
    I am getting this particular error after 20 instance of my report opens up.
    The crystal report verision i m using is 8.5 & i m using ocx control for the same .the front end is VBA excel.
    If anybody have any idea about rectification of this error pls do share.
    Thanks in advance.
    SauabhM

    Hi, 
    I haven't gotten this message creating a report but I have gotten it trying to publish to Crystal Enterprise.  I found out the version of Crystal I was using was older than Crystal Enterprise.  After I installed the service pack onto my machine the message went away. 
    I only got the message with reports using parameters from the repository.  New parameters without LOVs were fine. 
    Good luck,
    Brian

  • I had to replace the hard drive on my computer.  I am now trying to download Adobe Photoshop CS6, previously purchased.  I get an error that files are missing after waiting for the whole download.  I have Windows7

    I had to replace the hard drive on my computer.  I am now trying to download Adobe Photoshop CS6, previously purchased.  I get an error that files are missing after waiting for the whole download.  I have Windows7

    The error msg said that the file archive part of Adobe photoshop CS6 is missing and that I need all parts in the same folder.

  • CR: Error in File ~tmp2be86bbf9f5e260.rpt: Database Connector Error

    dear all, this has finally got the better of me.
    i have been successfully scheduling a set of reports each month, until now. they all come back with the following error, each with a different ~tmp.rpt file
    Error in File ~tmp2be86bbf9f5e260.rpt: Database Connector Error
    each report communicates with an SAP ECC system. the user is fine, i have even tried my username to connect to sap, and same error occurs.
    no runtime errors in sap.
    the actual reports can be opened with crystal reports, and refreshed to show data without any problem.
    could this be an integration issue. i checked by removing the sap role, and adding it back without any issues.
    i have also cloned the CrystalReportsJobServer and tried to schedule with this one, same thing happens
    here are the instance details
    Title: Inv Count Cars 
    Document Type: Crystal Report 
    Status Failed 
    External Destination: None 
    Owner: ABC~400/GSMITH 
    Server Used: ABSAP02.CrystalReportsJobServer 
    PID: 11240 
    Folder Path: Reports/ 
    Remote Instance: No 
    Creation Time: 1/09/2011 14:59 
    Expiry: 1/09/2021 14:59 
    Start Time: 1/09/2011 14:59 
    End Time: 1/09/2011 14:59 
    Printer: None 
    Formats: Crystal Reports 
    Parameters: null; chrysler 
    Error Message: Error in File ~tmp2be86bbf9f5e260.rpt: Database Connector Error 
    could this be an integration ?
    i would very much appreciate anyones help
    thanks
    g
    Edited by: Glen Spalding on Sep 1, 2011 7:27 AM

    all servers up and running without any problems
    ODBC database connection works fine
    here a list i have made, so i can remember what i have done
    the issue is on the production box, and the dev box works fine.
    1. checked sap user, ok
    2. checked individual reports, ok
    3. checked dev environment, ok
    4. checked production IFRS & OFRS, ok
    5. checked production report on dev environment, ok
    6. checked working dev report on production environment, failed
    7. u201Crepairu201D of installation kit
    8. CRYSTALREPORTJBBSERVER failing
    9. cloned server, server failed
    10. tried rogue sap user/password on dev environment, returned different error
    11. bounced production, same problem, failed
    12. checked OBDC connection
    13. checked new SIA with new Job Server, still same thing, failed
    14. No Windows Events
    15. SAP note raised (0000724225 2011)
    16. BOBI Server Trace files nothing obvious
    17. tried with report sample to different backend, and CrystalReportsJobServer, ok
    18. brand new crystal reports with different user, failed
    19. noticed in trace file error 707 with JobScheduleChild process

  • You have specified invalid arguments for the program

    Can someone please correct this command line for me.
    i always have errror like this
    $FNDCPPUR apps/apps 0 Y ENTITY=ALL AGE=10
    You have specified invalid arguments for the program
    and nothing happens
    Thanks in advance!

    To submit the concurrent program from the OS use CONCSUB.
    Refer to the following notes for CONCSUB syntax:
    Note: 457519.1 - How to Submit a Concurrent Request Using CONCSUB Syntax
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=457519.1
    Note: 146856.1 - How to Run a Concurrent Job through Operating System
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=146856.1

  • DRM-79819: Encryption error: Config file encryption is not valid for this m

    Hi ALL,
    Suddenly we got this error while running an export via batch utility. any ideas?
    Error: DRM-79819: Encryption error: Config file encryption is not valid for this machine.

    This could be an issue with your drm-config.xml file, the file that stores the DRM configuration information defined in the DRM Console. If a drm-config.xml was restored from an old backup or copied from another machine, this could well be the issue.
    In this case, you can run the DRM Console to update the file and correct it. You may see a one-time error reported when the DRM Console starts up, but the Console app should correct the file automatically after reporting the error to the user.
    If this does not resolve your issue, review the Windows App Event Log, to determine which DRM Server process(es) are also reporting this error (to narrow down any other potential issues with a config file for one of the DRM Server executables). I am guessing this error was observed in just the DRM Batch client, but related Event Log should also be present in the App Event Log.
    HTH.
    *** An additional note, if your issue proves to be the one above, you may need re-enter passwords on your defined Database Connections for defined DRM Apps. Try just re-running the DRM Console and re-saving the config initially, but be aware this may be a required additional step, re-entering the DB passwords after the updated encryption has been applied to the stored drm-config.xml file.
    Edited by: 680314 on Jan 19, 2013 11:52 AM

  • Crystal Reports exception: "failed to load database information" error in file guid.rpt file

    Please also see attachment (same info as below).
    Background
    This code works in windows XP (32 bit), using/complied VS2005 with no problems.
    Please contact:
    Hamid Deljoo at work 416-867-8977 (8am to 4pm EST)
    Problem is:
    We are migrating this code from XP to windows 7 (using win7 64bit for development to be deployed on win7 PCs 64bit).
    When trying to display a crystal report (.rpt) an exception is raised.
    Exception info is:
    CrystalDecisions.CrystalReports.Engine.DataSourceException was unhandled by user code
      Message=Failed to load database information.
    Error in File wbstats {CC56070D-0873-4815-BAD5-0DA0FBAEDCB6}.rpt:
    Failed to load database information.
    Source=CrystalDecisions.ReportAppServer.DataSetConversion
      StackTrace:
          at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)
          at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
          at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
          at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
          at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options)
          at net.bmogc.cas.ui.ReportViewer.LoadStatsReport(String warmBodyCode) in c:\Projects\Juniper\CAS_.NET2.0_Win7_64bit\CASApplication\CASNet\ReportViewer.cs:line 739
          at net.bmogc.cas.ui.WarmBodyManage.Stats() in c:\Projects\Juniper\CAS_.NET2.0_Win7_64bit\CASApplication\CASNet\WarmBodyManage.cs:line 873
          at net.bmogc.cas.ui.WarmBodyManage.CASAuthgation_ToolStripItem_Click(Object sender, EventArgs e) in c:\Projects\Juniper\CAS_.NET2.0_Win7_64bit\CASApplication\CASNet\WarmBodyManage.cs:line 593
          at net.bmogc.cas.ui.CASAuthgation.<>c__DisplayClass15.<CreateToolStripItem>b__14(Object sender, EventArgs e) in c:\Projects\Juniper\CAS_.NET2.0_Win7_64bit\CASApplication\CASNet\Common\CASAuthgation.cs:line 1242
          at System.Windows.Forms.ToolStripItem.RaiseEvent(Object key, EventArgs e)
          at System.Windows.Forms.ToolStripItem.HandleClick(EventArgs e)
          at System.Windows.Forms.ToolStripItem.HandleMouseUp(MouseEventArgs e)
          at System.Windows.Forms.ToolStrip.OnMouseUp(MouseEventArgs mea)
          at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
          at System.Windows.Forms.Control.WndProc(Message& m)
          at System.Windows.Forms.ToolStrip.WndProc(Message& m)
          at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
          at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
      InnerException: System.Runtime.InteropServices.COMException
          Message=Failed to load database information.
    Error in File wbstats {CC56070D-0873-4815-BAD5-0DA0FBAEDCB6}.rpt:
    Failed to load database information.
          Source=""
          ErrorCode=-2147482931
          StackTrace:
                at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)
                at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
          InnerException:
    Background info is:
    Vs2013 (update 3, latest version) is used.
    Installed:  Crystal Reports, Support Pack 10 (v. 13.0.10.1385), using 64 bit
    VS2013 build settings.

    What database are you using?
    What database client?
    How are you connecting to the database (ODBC, OLE DB, etc.)?
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error During Installation: ORA-02180: invalid option for CREATE TABLESPACE

    Hi all,
    This is our enviroment,
    Windows 2000 Service Pack 4
    We are installing SAP R/3 Enterprise 4.7 Ext. 200 SR1
    First we installed:
    Oracle: 9.2
    Patch: 9.2.0.7
    SAP Central Instance
    Now we are installing the DB Instance, but it gives this error:
    INFO 2007-11-22 16:58:20
    Working directory changed to C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\ORA\NUC\DB.
    ERROR 2007-11-22 16:58:21
    CJS-00084  SQL statement or script failed.DIAGNOSIS: Error message: ORA-02180: invalid option for CREATE TABLESPACE
    We are in the step 19 of 34
    Create Tablespaces
    Please some tips.
    Regards,
    Erick

    Hi! Thanks a lot for the reply.
    This is our <b>ora_sql_results.log</b>
    ================================================================================
    2007-11-23, 07:31:09 SAPINST ORACLE start logging for
    connect  /  as sysdba ;
    set newpage 0
    set space 0
    set pagesize 0
    set linesize 32767
    set markup HTML off
    set heading off
    set verify off
    set feedback off
    set trimspool on
    set sqlprompt SQL>
    set termout on
    set verify off
    set echo off
    spool ora_query3_tmp0_1.res
    SELECT STATUS FROM V$INSTANCE;
    spool off
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 9.2.0.7.0 - Production on Fri Nov 23 07:31:09 2007
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected.
    OPEN
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.7.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.7.0 - Production
    SAPINST: End of output of SQL executing program D:\oracle\TVD\920/bin/sqlplus.
    2007-11-23, 07:31:10 SAPINST ORACLE stop logging
    ================================================================================
    2007-11-23, 07:31:10 SAPINST ORACLE start logging for
    connect  /  as sysdba ;
    CREATE TABLESPACE PSAP@SCHEMAID@ DATAFILE 'E:\oracle\TVD\sapdata4\psap@schemaid@_1\psap@[email protected]' SIZE 2000M  REUSE  AUTOEXTEND  ON NEXT 20M MAXSIZE 10000M  LOGGING ONLINE PERMANENT  EXTENT MANAGEMENT  LOCAL  AUTOALLOCATE  SEGMENT SPACE MANAGEMENT AUTO ;
    exit;
    Output of SQL executing program:
    SQL*Plus: Release 9.2.0.7.0 - Production on Fri Nov 23 07:31:10 2007
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected.
    CREATE TABLESPACE PSAP@SCHEMAID@ DATAFILE 'E:\oracle\TVD\sapdata4\psap@schemaid@_1\psap@[email protected]' SIZE 2000M  REUSE  AUTOEXTEND     ON NEXT 20M MAXSIZE 10000M  LOGGING ONLINE PERMANENT  EXTENT MANAGEMENT  LOCAL     AUTOALLOCATE  SEGMENT SPACE MANAGEMENT AUTO
    ERROR at line 1:
    ORA-02180: invalid option for CREATE TABLESPACE
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.7.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.7.0 - Production
    SAPINST: End of output of SQL executing program D:\oracle\TVD\920/bin/sqlplus.
    SAPINST found errors.
    SAPINST The current process environment may be found in sapinst_ora_environment.log.
    2007-11-23, 07:31:10 SAPINST ORACLE stop logging
    And this is <b>our alert_SID.log</b>
    Dump file d:\oracle\tvd\saptrace\background\alert_tvd.log
    Thu Nov 22 16:27:45 2007
    ORACLE V9.2.0.7.0 - Production vsnsta=0
    vsnsql=12 vsnxtr=3
    Windows 2000 Version 5.0 Service Pack 4, CPU type 586
    Thu Nov 22 16:27:45 2007
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    SCN scheme 2
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 9.2.0.7.0.
    System parameters with non-default values:
      processes                = 80
      sessions                 = 96
      shared_pool_size         = 251658240
      sga_max_size             = 546906620
      shared_pool_reserved_size= 24363663
      enqueue_resources        = 8000
      control_files            = E:\oracle\TVD\origlogA\cntrl\cntrlTVD.dbf, E:\oracle\TVD\sapdata1\system_1\cntrl\cntrlTVD.dbf, D:\oracle\TVD\saparch\cntrl\cntrlTVD.dbf
      db_block_size            = 8192
      db_cache_size            = 251658240
      compatible               = 9.2.0
      log_archive_start        = TRUE
      log_archive_dest         = D:\oracle\TVD\oraarch\TVDarch
      log_buffer               = 1048576
      log_checkpoint_interval  = 0
      db_files                 = 254
      fast_start_mttr_target   = 900
      log_checkpoints_to_alert = TRUE
      control_file_record_keep_time= 30
      dml_locks                = 4000
      transaction_auditing     = FALSE
      undo_management          = AUTO
      undo_tablespace          = PSAPUNDO
      undo_retention           = 43200
      remote_os_authent        = TRUE
      hash_join_enabled        = FALSE
      background_dump_dest     = D:\oracle\TVD\saptrace\background
      user_dump_dest           = D:\oracle\TVD\saptrace\usertrace
      core_dump_dest           = D:\oracle\TVD\saptrace\background
      optimizer_features_enable= 9.2.0
      sort_area_size           = 2097152
      sort_area_retained_size  = 0
      db_name                  = TVD
      open_cursors             = 800
      pga_aggregate_target     = 324848844
      workarea_size_policy     = AUTO
      statistics_level         = typical
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    Thu Nov 22 16:27:48 2007
    ARCH: STARTING ARCH PROCESSES
    ARC0 started with pid=8
    ARC1 started with pid=9
    Thu Nov 22 16:27:48 2007
    ARC0: Archival started
    Thu Nov 22 16:27:48 2007
    ARCH: STARTING ARCH PROCESSES COMPLETE
    Thu Nov 22 16:27:48 2007
    ARC1: Archival started
    Thu Nov 22 16:27:48 2007
    ARC0: Becoming the 'no FAL' ARCH
    Thu Nov 22 16:27:48 2007
    ARC1: Becoming the heartbeat ARCH
    Thu Nov 22 16:27:48 2007
    ARC0: Becoming the 'no FAL' ARCHARC0: Thread not mounted
    Thu Nov 22 16:27:48 2007
    ARC1: Becoming the heartbeat ARCHARC1: Thread not mounted
    Thu Nov 22 16:27:49 2007
    alter database mount exclusive
    Thu Nov 22 16:27:49 2007
    ORA-00202: controlfile: 'E:\oracle\TVD\origlogA\cntrl\cntrlTVD.dbf'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Thu Nov 22 16:27:50 2007
    ORA-205 signalled during: alter database mount exclusive...
    Shutting down instance (abort)
    License high water mark = 1
    Instance terminated by USER, pid = 1768
    Thu Nov 22 16:28:05 2007
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    SCN scheme 2
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 9.2.0.7.0.
    System parameters with non-default values:
      processes                = 80
      sessions                 = 96
      shared_pool_size         = 251658240
      sga_max_size             = 546906620
      shared_pool_reserved_size= 24363663
      enqueue_resources        = 8000
      control_files            = E:\oracle\TVD\origlogA\cntrl\cntrlTVD.dbf, E:\oracle\TVD\sapdata1\system_1\cntrl\cntrlTVD.dbf, D:\oracle\TVD\saparch\cntrl\cntrlTVD.dbf
      db_block_size            = 8192
      db_cache_size            = 251658240
      compatible               = 9.2.0
      log_archive_start        = TRUE
      log_archive_dest         = D:\oracle\TVD\oraarch\TVDarch
      log_buffer               = 1048576
      log_checkpoint_interval  = 0
      db_files                 = 254
      fast_start_mttr_target   = 900
      log_checkpoints_to_alert = TRUE
      control_file_record_keep_time= 30
      dml_locks                = 4000
      transaction_auditing     = FALSE
      undo_management          = AUTO
      undo_tablespace          = PSAPUNDO
      undo_retention           = 43200
      remote_os_authent        = TRUE
      hash_join_enabled        = FALSE
      background_dump_dest     = D:\oracle\TVD\saptrace\background
      user_dump_dest           = D:\oracle\TVD\saptrace\usertrace
      core_dump_dest           = D:\oracle\TVD\saptrace\background
      optimizer_features_enable= 9.2.0
      sort_area_size           = 2097152
      sort_area_retained_size  = 0
      db_name                  = TVD
      open_cursors             = 800
      pga_aggregate_target     = 324848844
      workarea_size_policy     = AUTO
      statistics_level         = typical
    PMON started with pid=2
    DBW0 started with pid=3
    LGWR started with pid=4
    CKPT started with pid=5
    SMON started with pid=6
    RECO started with pid=7
    Thu Nov 22 16:28:08 2007
    ARCH: STARTING ARCH PROCESSES
    ARC0 started with pid=8
    ARC0: Archival started
    ARC1 started with pid=9
    Thu Nov 22 16:28:08 2007
    ARCH: STARTING ARCH PROCESSES COMPLETE
    Thu Nov 22 16:28:08 2007
    ARC0: Becoming the 'no FAL' ARCH
    ARC0: Becoming the 'no FAL' ARCHARC0: Thread not mounted
    Thu Nov 22 16:28:09 2007
    ARC1: Archival started
    Thu Nov 22 16:28:09 2007
    ARC1: Becoming the heartbeat ARCH
    ARC1: Becoming the heartbeat ARCHARC1: Thread not mounted
    Thu Nov 22 16:28:11 2007
    CREATE DATABASE TVD CONTROLFILE REUSE  MAXLOGFILES 255 MAXLOGMEMBERS 3 MAXLOGHISTORY 1000 MAXDATAFILES 254 MAXINSTANCES 50 NOARCHIVELOG CHARACTER SET WE8DEC NATIONAL CHARACTER SET UTF8 DATAFILE 'E:\oracle\TVD\sapdata1\system_1\system.data1' SIZE 550M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M EXTENT MANAGEMENT LOCAL DEFAULT TEMPORARY TABLESPACE PSAPTEMP TEMPFILE 'E:\oracle\TVD\sapdata3\temp_1\temp.data1' SIZE 540M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M UNDO TABLESPACE PSAPUNDO DATAFILE 'E:\oracle\TVD\sapdata2\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    LOGFILE GROUP 1 ('E:
    oracle/TVD/origlogA/log_g11m1.dbf',
    'D:
    oracle/TVD/mirrlogA/log_g11m2.dbf') SIZE 50M  REUSE ,
    GROUP 2 ('E:
    oracle/TVD/origlogB/log_g12m1.dbf',
    'D:
    oracle/TVD/mirrlogB/log_g12m2.dbf') SIZE 50M  REUSE ,
    GROUP 3 ('E:
    oracle/TVD/origlogA/log_g13m1.dbf',
    'D:
    oracle/TVD/mirrlogA/log_g13m2.dbf') SIZE 50M  REUSE ,
    GROUP 4 ('E:
    oracle/TVD/origlogB/log_g14m1.dbf',
    'D:
    oracle/TVD/mirrlogB/log_g14m2.dbf') SIZE 50M  REUSE
    Thu Nov 22 16:28:12 2007
    Database mounted in Exclusive Mode.
    Thu Nov 22 16:28:29 2007
    Successful mount of redo thread 1, with mount id 1434613531
    Assigning activation ID 1434613531 (0x5582771b)
    Thread 1 opened at log sequence 1
    Thu Nov 22 16:28:30 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:28:31 2007
      Current log# 1 seq# 1 mem# 0: E:\ORACLE\TVD\ORIGLOGA\LOG_G11M1.DBF
      Current log# 1 seq# 1 mem# 1: D:\ORACLE\TVD\MIRRLOGA\LOG_G11M2.DBF
    Successful open of redo thread 1
    Thu Nov 22 16:28:31 2007
    ARC0: Media recovery disabled
    Thu Nov 22 16:28:31 2007
    SMON: enabling cache recovery
    Thu Nov 22 16:28:32 2007
    WARNING: Default passwords for SYS and SYSTEM will be used.
             Please change the passwords.
    Thu Nov 22 16:28:32 2007
    create tablespace SYSTEM datafile  'E:\oracle\TVD\sapdata1\system_1\system.data1' SIZE 550M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
      EXTENT MANAGEMENT LOCAL online
    Thu Nov 22 16:28:51 2007
    Completed: create tablespace SYSTEM datafile  'E:\oracle\TVD\
    Thu Nov 22 16:28:51 2007
    create rollback segment SYSTEM tablespace SYSTEM
      storage (initial 50K next 50K)
    Completed: create rollback segment SYSTEM tablespace SYSTEM
    Thu Nov 22 16:29:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:29:10 2007
    CREATE UNDO TABLESPACE PSAPUNDO DATAFILE  'E:\oracle\TVD\sapdata2\undo_1\undo.data1' SIZE 700M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Thu Nov 22 16:29:35 2007
    Successfully onlined Undo Tablespace 1.
    Completed: CREATE UNDO TABLESPACE PSAPUNDO DATAFILE  'E:\orac
    Thu Nov 22 16:29:36 2007
    CREATE TEMPORARY TABLESPACE PSAPTEMP TEMPFILE  'E:\oracle\TVD\sapdata3\temp_1\temp.data1' SIZE 540M REUSE AUTOEXTEND ON NEXT 20M MAXSIZE 10000M
    Completed: CREATE TEMPORARY TABLESPACE PSAPTEMP TEMPFILE  'E:
    Thu Nov 22 16:29:36 2007
    ALTER DATABASE DEFAULT TEMPORARY TABLESPACE PSAPTEMP
    Completed: ALTER DATABASE DEFAULT TEMPORARY TABLESPACE PSAPTE
    Thu Nov 22 16:29:39 2007
    SMON: enabling tx recovery
    Thu Nov 22 16:29:39 2007
    Beginning local checkpoint up to RBA [0x1.538b.10], SCN: 0x0000.000019d9
    Completed checkpoint up to RBA [0x1.538b.10], SCN: 0x0000.000019d9
    kwqplbsc: open notifier exception err 604
    replication_dependency_tracking turned off (no async multimaster replication found)
    Completed: CREATE DATABASE TVD CONTROLFILE REUSE  MAXLOGFILES
    Thu Nov 22 16:30:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:31:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:31:28 2007
    Beginning log switch checkpoint up to RBA [0x2.2.10], SCN: 0x0000.00006489
    Thread 1 advanced to log sequence 2
    Thu Nov 22 16:31:28 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:31:29 2007
      Current log# 2 seq# 2 mem# 0: E:\ORACLE\TVD\ORIGLOGB\LOG_G12M1.DBF
      Current log# 2 seq# 2 mem# 1: D:\ORACLE\TVD\MIRRLOGB\LOG_G12M2.DBF
    Thu Nov 22 16:32:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:33:08 2007
    ARC0: Media recovery disabled
    Thu Nov 22 16:33:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:33:16 2007
    Completed checkpoint up to RBA [0x2.2.10], SCN: 0x0000.00006489
    Thu Nov 22 16:33:26 2007
    Beginning log switch checkpoint up to RBA [0x3.2.10], SCN: 0x0000.00009227
    Thread 1 advanced to log sequence 3
    Thu Nov 22 16:33:26 2007
    ARC0: Media recovery disabled
    Thu Nov 22 16:33:26 2007
      Current log# 3 seq# 3 mem# 0: E:\ORACLE\TVD\ORIGLOGA\LOG_G13M1.DBF
      Current log# 3 seq# 3 mem# 1: D:\ORACLE\TVD\MIRRLOGA\LOG_G13M2.DBF
    Thu Nov 22 16:34:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:35:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:35:19 2007
    Completed checkpoint up to RBA [0x3.2.10], SCN: 0x0000.00009227
    Thu Nov 22 16:35:28 2007
    Beginning log switch checkpoint up to RBA [0x4.2.10], SCN: 0x0000.0000b0ac
    Thread 1 advanced to log sequence 4
      Current log# 4 seq# 4 mem# 0: E:\ORACLE\TVD\ORIGLOGB\LOG_G14M1.DBF
    Thu Nov 22 16:35:28 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:35:28 2007
      Current log# 4 seq# 4 mem# 1: D:\ORACLE\TVD\MIRRLOGB\LOG_G14M2.DBF
    Thu Nov 22 16:36:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:37:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:38:08 2007
    ARC0: Media recovery disabled
    Thu Nov 22 16:38:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:38:51 2007
    Completed checkpoint up to RBA [0x4.2.10], SCN: 0x0000.0000b0ac
    Thu Nov 22 16:38:59 2007
    Beginning log switch checkpoint up to RBA [0x5.2.10], SCN: 0x0000.0000e12b
    Thread 1 advanced to log sequence 5
    Thu Nov 22 16:38:59 2007
      Current log# 1 seq# 5 mem# 0: E:\ORACLE\TVD\ORIGLOGA\LOG_G11M1.DBF
      Current log# 1 seq# 5 mem# 1: D:\ORACLE\TVD\MIRRLOGA\LOG_G11M2.DBF
    Thu Nov 22 16:39:00 2007
    ARC0: Media recovery disabled
    Thu Nov 22 16:39:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:40:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:41:08 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:41:09 2007
    Completed checkpoint up to RBA [0x5.2.10], SCN: 0x0000.0000e12b
    Thu Nov 22 16:41:18 2007
    Beginning log switch checkpoint up to RBA [0x6.2.10], SCN: 0x0000.0000ee94
    Thread 1 advanced to log sequence 6
      Current log# 2 seq# 6 mem# 0: E:\ORACLE\TVD\ORIGLOGB\LOG_G12M1.DBF
      Current log# 2 seq# 6 mem# 1: D:\ORACLE\TVD\MIRRLOGB\LOG_G12M2.DBF
    Thu Nov 22 16:41:18 2007
    ARC1: Media recovery disabled
    Thu Nov 22 16:42:08 2007
    Fri Nov 23 07:38:10 2007
    ARC1: Media recovery disabled
    Regards,
    Erick

Maybe you are looking for

  • Location for login.aspx code behind?

    I added a Login.aspx.cs file in the Server Project with some code in Page_Load() I need to implement, and edited the first line of login.aspx this way: <%@ Page Language="C#" CodeBehind="Login.aspx.cs" Inherits="Microsoft.LightSwitch.Security.ServerG

  • Snow Leopard and Appleworks

    I have several scrips I use that access Appleworks. Since installing Snow Leopard, Apple Script crashes when I try to run any of them. When I first opened AppleWorks after the OS update, it told me I had to install "Rosetta," which I did and AW now o

  • Can't continue iphone upgrade due to forgotten icloud user id and password

    can't continue phone upgrade due to unknown icloud user name and password

  • Sales from vendor consignement stock

    Is it possible to configure sales item catogory and schedule line to automatic withdraw stock from vendor consignement stock? I will assume that the special stock vendor consignement must be assigned to the item category, but there are no standard it

  • Why does firefox put hotmail on the edge of the page and keep losing installed addons?

    I have recently been trying out various addons and then deleting those I found unsatisfactory. I finally just kept Adblock Plus. I have also adjusted the settings for Mozilla. As a consequence Mozilla keeps putting my hotmail on the lefthand edge of