Database Read Error: Please check C:\PRBADDATA.TXT

Hi experts,
Anyone of you knows why I am getting the next error Message when I try to log into Primavera through Citrix?. Also, someone could explain to me what is the function of the PRDADDATA.TXT file?
+-- Error Message --+
Database Read Error: Please check C:\PRBADDATA.TXT
-- Application Exception--
TCVirtualTable.RefreshAppend: TASK: TCCustomVirtualRow.GetValueList: NullRow has not values -> Data saved to c:\PRBADDATA.TXT
I really appreciate any insight.

You need to grant the windows user to be able to write the PRBADDATA.TXT in the C drive.

Similar Messages

  • Database read error

    Hello,
    I have created a standalone schedule.
    As I am new, I wanted to back-up, I have clicked on send project and send a e-mail to myself as it does not have any save button like traditional apps.
    After that, I have noticed that the e-mail I have sent to myself is too small. Anyway, I clicked on send profolio and clicked all, after that something happened and now I cannot open my project.
    When I click on Primavera and enter my password with referring to my 50 mb database in Documents, it says "Database read error Please Check C /PRBADDATA.TXT.
    After hitting okay, it says Exception EConvertError in module PM.exe at ....bla bla....not a valid floating point value --> Data saved to c:\PRBADDATA.TXT
    What should I do? In one post, someone says write these codes to your SQL. But I do not use any SQL app, I use standalone, with SQLite, so I do not need to deal with it.
    Thank you for your hels.

    You need to grant the windows user to be able to write the PRBADDATA.TXT in the C drive.

  • On iTunes while downloading a movie it say error please check that the connection to the network is active and try again what does this mean i have an internet connection !!!

    Help
    I dont understand when i download a movie or tv series on my mac book air i get this error message after buying it! its iTunes while downloading a movie it say error please check that the connection to the network is active and try again what does this mean i have an internet connection !!!

    Hello.
    Certain types of software can affect the way a computer sends and receives information from the Internet. This article may help you resolve the issue:
    Information about error -50 and downloading videos
    http://support.apple.com/kb/TS1583
    If it did not work, contact iTunes Store via (http://www.apple.com/support/itunes/store/) and/or Apple Tech Support via 1-800-275-2273.

  • Network Error, Please Check The Network!

    "Network Error, Please Check The Network!" - I get this error message on the bottom of my screen at least a few times a day when all of my service drops, not just data. I've seen my service go from full 4G coverage one second to absolutely nothing the next, without moving and outside. Sometimes it comes back after a minute or two, other times I have to shut the phone off and pull the battery. I thought it may have been the SIM card but I had that replaced and nothing has changed. I've seen other people describing similar things happening to them as well. I've brought it in 2 times in the last 2 weeks because it was getting unbearable and both times none of the reps could explain why this is happening. I'm wondering if I have a bad device or if this is a widespread issue, and if anyone had this issue and found a fix for it.

    I was having this problem as well.  Tried hard reset, Verizon messed with phone remotely, etc...Ended up sending me a replacement phone. You may have to go through the steps and let the problem not be fixed, but I would call the 800 number from a land line and get the ball rolling.  Mine was also doing weird things like freezing up when I tried to make a call.  It would never make it to the screen with the dialer.  It would just freeze up and go to the home screen.  It ran slow and lagged real bad as if it was deciding if it wanted to work or not.  Regardless, Verizon was great and when the usual steps could not fix it they replaced it.  Mine is a droid razr (original).

  • When i try to go onto my FaceTime it comes up error please check mobile connection what does this mean???

    When i try to go onto my FaceTime it comes up error please check mobile connection what does this mean???

    See if this article helps: FaceTime, Game Center, Messages: Troubleshooting sign in issues - Apple Support

  • We are using jni.h but its getting errors, please check it this

    We are using jni.h but its getting errors, please check it this
    Calling from a .dll using Java and JNI - by Borland Developer Support Staff
    Abstract:Basic JNI example: making a Win32 API call
    Making Native Windows API calls from within a Java Application
    One of the main points of Java is to be completely platform independent. However, sometimes it will occur that the developer of an
    application will know that his or her application is only going to be run on a specific platform, for example, Win32.
    NOTE: This example assumes that you are using JDK 1.2 or later.
    Below are the steps for writing a Java application that makes a Win32 API call. The application generates a Swing Jframe and makes it
    system modal, or gives it the �Always On Top� functionality, similar to that of the Windows NT Task Manager.
    Steps to follow:
    1. Write the Java code for the application
    2. Run javah.exe on your .class file to generate a C header file
    3. write the implementation of your native methods
    4. create the shared library
    5. run the application
    1. Write the Java code for the application
    import java.awt.*;
    import sun.awt.*;
    import sun.awt.windows.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Frame1 extends JFrame {
    int windowHWND = 0;
    JButton jButton1 = new JButton();
    public Frame1() {
    //windowHWND = this.getHwnd();
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    public int getHwnd() {
    DrawingSurfaceInfo w = (DrawingSurfaceInfo) ((DrawingSurface) getPeer()).getDrawingSurfaceInfo();
    w.lock();
    WDrawingSurfaceInfo win32 = (WDrawingSurfaceInfo) w;
    int hwnd = win32.getHWnd();
    w.unlock();
    return hwnd;
    static {
    System.loadLibrary("windowOnTop");
    public static native void WindowAlwaysOnTop(int hwnd, boolean flag);
    public static void main(String[] args) {
    Frame1 frame11 = new Frame1();
    frame11.setSize(400,400);
    frame11.setVisible(true);
    private void jbInit() throws Exception {
    jButton1.setText("jButton1");
    this.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowOpened(WindowEvent e) {
    this_windowOpened(e);
    public void windowClosing(WindowEvent e) {
    this_windowClosing(e);
    this.getContentPane().add(jButton1, BorderLayout.NORTH);
    void this_windowOpened(WindowEvent e) {
    windowHWND = this.getHwnd();
    System.out.println("the value is: " + this.getHwnd());
    this.WindowAlwaysOnTop(windowHWND, true);
    void this_windowClosing(WindowEvent e) {
    System.exit(0);
    Once the code is written, compile it with Jbuilder or the command line javac.exe tool which will result in a generated .class file. You will use
    this .class file in the next step.
    2. Run javah.exe on your .class file to generate a C header file
    The following line represents the basic syntax for running javah.exe:
    javah Frame1
    where Frame1 is the name of the argument class.
    When you run javah.exe, it will generate a header file by the same name as your implementation but with a .h file extension. For this
    example the .h file that was generated from the above Java code will be emitted being that it is quite large.
    NOTE: Make sure that when you run javah.exe, it is the javah.exe that came with the same JDK that you will be compiling with as there may
    be some issues with using a version of javah.exe that is different from that of the JDK you are using to compile.
    3. write the implementation of your native methods
    Now that you have your Java source and your C header file, it is time to write the implementation of your native methods.
    Following is the C code that corresponds to the native methods declared in the Java code listed in step 1:
    #include "jni.h"
    #include "Frame1.h"
    #include <stdio.h>
    #include<windows.h>
    JNIEXPORT void JNICALL Java_Frame1_WindowAlwaysOnTop(JNIEnv *env, jclass obj, jint hwnd, jboolean flag)
    if (flag)
    SetWindowPos((HWND) hwnd,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    else
    SetWindowPos((HWND) hwnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    return;
    You will notice several things: one is that the function signature has �Java_Frame1_� preceeding the name of the function. If there was a
    package statement in the Java source, it would appear after ��Frame1_� in the function signature.
    Second, you will notice the #include �jni.h�. Normally this would be #include<jni.h>, depending on how you have your libraries set up within
    your C compiler.
    4. create the shared library
    Now you are ready to create the shared library. Using your C compiler, create a .dll file with the code from the C implementation file. Refer
    to the doccumentation of the C compiler for details on creating a .dll file.
    For those interested in using Borland C++ Builder:
    If you have got it installed, you could use Borland C++ Builder 3 or C++ Builder 4 to create your DLL file. If this is the case, you would use
    File | New... | DLL C++ Builder will then generate some code for you, and you will just need to add your implementation code to the code
    which was generated.
    Remember in the Java code in step one there is a line:
    static {
    System.loadLibrary("windowOnTop");
    �windowOnTop� is the name of the .dll file. You can name it whatever you want, just make sure that you specify the appropriate name when
    loading the library.
    5. run the application
    Finally you are ready to run the application. From the command line use java.exe and as the argument specify the name of the class that
    you compiled in step one. Once the system loads your DLL, the window that the VM creates should mimic the �Always On Top�
    functionality.
    We are getting errors like this
    �Compiling JNI.H:
    Error JNI_MD.H 23: , expected
    Error JNI.H 115: Declaration missing
    Error JNI.H 200: ) expected
    Error JNI.H 202: ) expected

    #include "jni.h"
    #include "Frame1.h"
    #include <stdio.h>
    #include<windows.h>
    JNIEXPORT void JNICALL Java_Frame1_WindowAlwaysOnTop(JNIEnv *env, jclass obj, jint hwnd, jboolean flag)
    if (flag)
    SetWindowPos((HWND) hwnd,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    else
    SetWindowPos((HWND) hwnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    return;
    We are getting errors like this
    �Compiling JNI.H:
    Error JNI_MD.H 23: , expected
    Error JNI.H 115: Declaration missing
    Error JNI.H 200: ) expected
    Error JNI.H 202: ) expected

  • Facetime error please check your network connection

    Hi Everyone,
    Can anyone assist me with Facetime,,, presently i am in india when i try to log in Facetime it gives me error facetime error please check your network connection but wen i check the network its fine der is no issue..
    can you please help me.

    Post in the Facetime for Mac community

  • ResultSet AS datasource:Unexpected database connector error, Please Help?

    Dear all;
    I try to use a ResultSet as datasource in Crystal Reports,But an Exception Happend;
    First i execute the SQL Statment to get ResultSet Object called rs then try the following code:
    String tableAlias = reportClientDocument.getDatabaseController().getDatabase().getTables().getTable(0).getAlias();
    reportClientDocument.getDatabaseController().setDataSource(rs,tableAlias,"resultsetTable");
    This is the Exception;
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Unexpected database connector error---- Error code:-2147467259 Error code name:failed
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.if(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.a(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter$2.call(Unknown Source)
         at com.crystaldecisions.reports.common.ThreadGuard.syncExecute(Unknown Source)
    Please help me to solve this exception

    I need to execute the SQL Query thruogh java becouse there is some parameters must be in the SQL Query...and i have not permission to add views or stored procedure in database
    this is my query:
    String sqlquery = "SELECT "
                        + "TO_CHAR(TO_DATE('1970-01-01', 'yyyy-mm-dd') + Command.CREATIONTIME / 86400000, 'mm/dd/yyyy') as CREATIONDATE"
                        + ", COUNT(*) as TICKETCOUNT "
                        + "FROM ALARMTICKET Command "
                        + "WHERE "
                        + "to_date(TO_CHAR(TO_DATE('1970-01-01', 'yyyy-mm-dd') + Command.CREATIONTIME / 86400000, 'mm/dd/yyyy'),'mm/dd/yyyy') "
                        + "between "
                        + "'"
                        + dateFormater.format(date1)
                        + "' "
                        + "AND "
                        + "'"
                        + dateFormater.format(date2)
                        + "' "
                        + "group by TO_CHAR(TO_DATE('1970-01-01', 'yyyy-mm-dd') + Command.CREATIONTIME / 86400000, 'mm/dd/yyyy') "
                        + "order by TO_CHAR(TO_DATE('1970-01-01', 'yyyy-mm-dd') + Command.CREATIONTIME / 86400000, 'mm/dd/yyyy')";
    date1 and date2 are my variables.....

  • SharePoint PPS 2013 Dashboard Designer error "Please check the data source for any unsaved changes and click on Test Data Source button"

    Hi,
    I am getting below error in SharePoint PPS 2013 Dashboard Designer. While create the Analysis Service by using "PROVIDER="MSOLAP";DATA SOURCE="http://testpivot2013:9090/Source%20Documents/TestSSource.xlsx"
    "An error occurred connecting to this data source. Please check the data source for any unsaved changes and click on Test Data Source button to confirm connection to the data source. "
    I have checked all the Sites and done all the steps also. But still getting the error.Its frustrating like anything. Everything is configured correctly but still getting this error.
    Thanks in advance.
    Poomani Sankaran

    Hi Poomani,
    Thanks for posting your issue,
    you must have to Install SQL Server 2012 ADOMD.Net  on your machine and find the browse the below mentioned URL to create SharePoint Dashboard with Analysis service step by step.
    http://www.c-sharpcorner.com/UploadFile/a9d961/create-an-analysis-service-data-source-connection-using-shar/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Blu ray burn error "please check boot volume space"

    Hi, every time I use Compressor 3.5.3 to burn a BD (on LaCie BD drive), I get the error "Finishing: could not create the DVD (Please check to see if your boot volume has sufficient space)". However, my boot harddisk has over 200 GB free space.
    Any suggestions?

    Hi
    I have had exactly the same issue. I have got a work around (below) but have not got a fix if anyone can shed any light on it.
    It seems to be something to do with the preferences getting messed up but for us it's only is an issue if we try to burn to a dual layer blu-ray. From what I understand when you start the share process it determines the capacity of the output media (blu-ray disk) and updates the preferences accordingly, the dual layer disk MUST be in the drive ready before starting the share process otherwise FC assumes it's a single layer. What seems to happen is FC doesn't update the preferences to dual layer which causes the burn process to bomb out as described. The workaround we have found is to nuke the preferences before we try and run a dual layer share.
    Final Cut Pro - Trash Preferences
    FCP 7.0x
    Go to your Home directory then inside it to: Library > Preferences
    Drag com.apple.FinalCutPro.plist to the trash
    Scroll down to the Final Cut Pro User Data folder
    Drag Final Cut Pro 7.0 Prefs to the trash
    Drag Final Cut Pro Obj Cache to the trash
    Drag Final Cut Pro Prof Cache to the trash
    Empty the trash

  • I have downloaded Disney HD tv to my sons ipod touch, but when he goes to watch it on his ipod we get the following error "Please check your connection and restart the application" or cannot connect to server". How can I fix this?

    I have downloaded Disney HD tv shows to my son ipod touch, but when he goes to to watch it we get the following error message " or "cannot connect to the server" How can we fix this?  Thank you

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • JSPM_MAIN error in upgrading netweaver- NWDI related error, please check !

    Here is the proper step by step explanation
    1.)Before any patching the portal
    The SP level of EP was SP17 and the ESS/MSS and the SAPPCUI_GP was at 600 .11
    2.)The we patched the EP to EHP1 using EHPI installer. Which was done without errors.
    3.) Then we patched the MSS to 600.15 and the SAPPCUI_GP to 603.4.1.
    4.) The ESS Needs to be patched to 603.4.1, but while patching we got the following errors attached.
    The first screen shot is the error we had received first. we resolved it by creating that directory.we donu2019t know why this directory it asked for.
    Please refer to this link
    JSPM error for applying ESS patch
    The second screenshot is the error where I am stuck.
    The 3 rd screen shots shows that the ESS is modified by NWDI.
    Can someone please explain as to what is the way out, or what it needs to be done in NWDI.
    for all the trace files and the screenshots... please download below file.
    http://rapidshare.com/files/300025619/ESSIssue.7z

    Hi,
    The problem has been solved,
    The prerequisite to the patching of the portal were not met initially.
    REgards,
    Rajat

  • I am unable to connect database this error  ORA-00020: maximum number of

    i issuing this command / as sysdba .getting this error
    Enter user-name: / as sysdba
    ERROR:
    ORA-00020: maximum number of processes (300) exceeded
    how to resolve this problem.it is verry verry urgent.

    Hi
    "Maximum number of processes exceeded" will be alerted when your database has received a request for connection from a process which is beyond the number of processes your database can allow for.
    Please check your database parameters
    show parameters processes
    Couple of options:
    a) If your database has been running for a while and if it's the first time you are recieving this error, please check why all of a sudden more and more processes have been created. You may want to investigate your application, users, etc
    b) If it's a valid request and if it's the case that you haven't really configured enough processes, you will have to increase the PROCESSES parameter in your init file and restart the database. It's not a dynamic parameter. Also, make sure you increase the sessions parameter as well along with the processes.
    Before you do this, you will also have to check if your OS has been configured for increasing the number of processes. Think it's semmsl in Unix.

  • Android: please check if there is enough space on the device

    I have successfully deployed a game to the iOS App Store using Flash CS5.5
    When I try to  publish the same game on my 2 Androids (or when I start an Air for Android file from scratch), I get this error message: "Device Error: please check if there is enough space on the device" on both of them.
    First I was trying to install it on a Optimus One, which later I figured out would not run AIR/Flash applications because of the uncompatible ARMv6 processor.
    I exchanged my phone to a Galaxy S, which shows on adobe's site as a certified device to run AIR applications.
    Since the second phone is definitely not a problem, I must be doing something wrong.
    I have followed video tutorials step by step and I still get this error.
    I have installed the drivers through Samsung Kies.
    I have air installed on my android.
    I have developer debug set to on (I noticed that when I do that, I can no longer copy files to my android through the USB. The device loses its access on windows file manager, could this be the problem?)
    Hope someone can help.

    Paanday, first make sure your Android has adobe air installed on it. Open the android market on your phone and search for it. If you can't find/install it, it means your phone is not compatible and will not run flash content that was exported as an .apk file.
    Your phone needs this https://market.android.com/details?id=com.adobe.air&feature=search_result installed.
    Also, don't you need Android version 2.2 at least? I could be wrong about this.
    And third, like I said, I fixed that issue by recreating my android certificate.

  • VB2005 with Crystal Report XI and MS Access - Database Connector Error:

    Post Author: jvaldeziii
    CA Forum: .NET
    "Database Connector Error:"
    does anybody there whose got an idea with this problem?
    Im using VB2005 and im trying to show a report using CR XI with a Ms Access database...
    Whenever i used a CRAXDRT.Report.SQLQueryString? my application has an error "Database Connector Error"
    but whenever i omit this single line of code CRAXDRT.Report.SQLQueryString?
    crxReport.SQLQueryString = "Select * from tblPersonal where EMP_ID like '0%'"
    Or either i replace it with a CRAXDRT.Report.RecordSelectionFormula?
    crxReport.RecordSelectionFormula = "{tblPersonal.IDNo} like '*'"
    it works fine and it show the report and data...
    But?? i have to use more flexible filter condition like "SQLQueryString" like using LEFT OUTER JOIN or even just a simple query string in sql query...
    but using "SQLQueryString" gives me a head ache to figure it myself... I got this frustrating error in my application... "Database connector error"
    thats why i need help... please anybody has a good idea to resolve this problem "Database connector error" please refer to my code if there's something missing or lacking in my code...
    Here's my sample code:
    Private Sub frmCrystalReport_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Try
    ChildFormAutoSizeFit(Me)
    Me.Cursor = Cursors.WaitCursor
    Me.MdiParent = frmMain
    crxApp = New CRAXDRT.Application
    crxReport = crxApp.OpenReport(reportPath & "\EmployeeRecord.rpt", CrystalDecisions.Shared.OpenReportMethod.OpenReportByDefault)
    crxDataBase = crxReport.Database
    crxTables = crxDataBase.Tables
    For Each crxTable In crxTables
    crxTable.Location = DataSource
    crxTable.SetLogOnInfo("Provider=Microsoft.Jet.OLEDB.4.0;Data source=" & reportPath, "myEmpDB.mdb", "UserName", "myPassword")
    Next crxTable
    'Note1: this line crxReport.SQLQueryString gives me the headache "Database Connector Error"
    crxReport.SQLQueryString = "Select * from tblPersonal"
    'Note2: this line crxReport.RecordSelectionFormula works fine
    'crxReport.RecordSelectionFormula = "{tblPersonal.IDNo} like '*'"
    AxCRViewer1.ReportSource = crxReport
    AxCRViewer1.ViewReport()
    crxDataBase = Nothing
    crxTable = Nothing
    crxTables = Nothing
    crxReport = Nothing
    crxApp = Nothing
    Catch ex As Exception
    MsgBox(ex.ToString())
    Finally
    Me.Cursor = Cursors.Default
    End Try
    End Sub
    Please anybody there who can resolve this problem or even just a good idea to share?? Please...
    A lot of appreciation to someone or anybody who can help with this... thanks in advance....

    Post Author: Argan
    CA Forum: .NET
    You may want to move/ask this question in the "Other" sdk forum since this is not the CR.NET SDK, but actually RDC/COM SDK.
    You are using the RDC in .NET, which is unsupported/untested so there is no way to know if it is a .NET specific issue or an issue with the RDC.
    One of the COM folks may be of more help in that forum.
    Good luck with your project.

Maybe you are looking for