Inserting to MS-Access -Data mismatch

I am trying to insert records in to a MS-Access table. However i got a data mismatch exception and on figuring it out i realized there was a date field and i was populating it with string. hence i converted it in to a date and run the query again, however now, i am neither getting an exception nor is the table getting updated.
The following is the code snippet where i get the data
List <org.cuashi.wof.ws.nwis.ValueSingleVariable > ValueList = result.getTimeSeries().getValues().getValue();
for (org.cuashi.wof.ws.nwis.ValueSingleVariable value : ValueList)
System.out.format("%20s%10.4f",value.getDateTime().toString(),value.getValue());
System.out.println();
System.out.println("obtaining time series data");
String dateTime = value.getDateTime().toString().replace('T',' ');
//to convert string in to date
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
java.util.Date dt = sdf.parse(dateTime);
sdf.applyPattern("yyyy-MM-dd HH:mm:ss");
java.util.Date dt2 = sdf.parse(dateTime);
updateTable(siteCode,variableCode,dt2,timvalue,varCode,qualifierCode,qualityControlLevel,conn,rs);
}catch(Exception e)
public void updateTable(String siteCode,String variableCode,java.util.Date dt2,double tmvalue,String varCode,String qualifierCode,int qualityControlLevel,Connection con,ResultSet rs)
try{
System.out.println("inside update");
// con.setAutoCommit(false);
PreparedStatement pstmt = con.prepareStatement("INSERT INTO DataValues(ValueID,DataValue,ValueAccuracy,LocalDateTime,UTCOffset,DateTimeUTC,SiteID,VariableID,OffsetValue,OffsetTypeID,CensorCode,QualifierID,MethodID,SourceID,SampleID,DerivedFromID,QualityControlLevelID) VALUES(?,?,?,?,?,?.?,?,?,?,?,?,?,?,?,?,?)");
pstmt.setString(1,"1");
pstmt.setDouble(2,tmvalue);
pstmt.setInt(3,0);
pstmt.setDate(4,(java.sql.Date) dt2);
pstmt.setInt(5,0);
pstmt.setString(6,"0");
pstmt.setString(7,siteCode);
pstmt.setString(8,varCode);
pstmt.setInt(9,0);
pstmt.setInt(10,0);
pstmt.setInt(11,0);
pstmt.setString(12,qualifierCode);
pstmt.setInt(13,0);
pstmt.setInt(14,1);
pstmt.setInt(15,0);
pstmt.setInt(16,0);
pstmt.setInt(17,qualityControlLevel);
System.out.println("Statement prepared");
pstmt.execute();
//commit the transaction
con.commit();
pstmt.close();
}catch(SQLException e)
System.out.println("The Exception is " +e);
I found out that after field 4 the control does not go to the remaining fields at all.
Please let me know what i am missing.

System.out.format("%20s%10.4f",value.getDateTime().toString(),value.getValue());
System.out.println();
System.out.println("obtaining time series data");
String dateTime = value.getDateTime().toString().replace('T',' ');
//to convert string in to date
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");I'd recommend that you setLenient(false) on your sdf.
This pattern is what you've got? Sure?
java.util.Date dt = sdf.parse(dateTime);
sdf.applyPattern("yyyy-MM-dd HH:mm:ss");
java.util.Date dt2 = sdf.parse(dateTime);
updateTable(siteCode,variableCode,dt2,timvalue,varCode,qualifierCode,qualityControlLevel,conn,rs);
}catch(Exception e)
{Empty catch block? Not a smart idea. Print the stack trace.
public void updateTable(String siteCode,String variableCode,java.util.Date dt2,double tmvalue,String varCode,String qualifierCode,int qualityControlLevel,Connection con,ResultSet rs)
try{
System.out.println("inside update");
// con.setAutoCommit(false);
PreparedStatement pstmt = con.prepareStatement("INSERT INTO DataValues(ValueID,DataValue,ValueAccuracy,LocalDateTime,UTCOffset,DateTimeUTC,SiteID,VariableID,OffsetValue,OffsetTypeID,CensorCode,QualifierID,MethodID,SourceID,SampleID,DerivedFromID,QualityControlLevelID) VALUES(?,?,?,?,?,?.?,?,?,?,?,?,?,?,?,?,?)");
pstmt.setString(1,"1");
pstmt.setDouble(2,tmvalue);
pstmt.setInt(3,0);
pstmt.setDate(4,(java.sql.Date) dt2);I'd recommend this:
    pstmt.setDate(4,new java.sql.Date(dt2.getTime()));>
pstmt.setInt(5,0);
pstmt.setString(6,"0");
pstmt.setString(7,siteCode);
pstmt.setString(8,varCode);
pstmt.setInt(9,0);
pstmt.setInt(10,0);
pstmt.setInt(11,0);
pstmt.setString(12,qualifierCode);
pstmt.setInt(13,0);
pstmt.setInt(14,1);
pstmt.setInt(15,0);
pstmt.setInt(16,0);
pstmt.setInt(17,qualityControlLevel);
System.out.println("Statement prepared");
pstmt.execute();
//commit the transaction
con.commit();
pstmt.close();You should be closing your statement and connection in a finally block, in indivdual try/catch blocks.
Set autoCommit back to true.
>
}catch(SQLException e)
{So you don't roll back if there's an exception? Bad idea.
System.out.println("The Exception is " +e);
I found out that after field 4 the control does not go to the remaining fields at all.
Please let me know what i am missing.Lots of stuff. See above.
%

Similar Messages

  • Data Mismatch while selecting from External Table

    Hi I am not able create an external table,I am trying to create and test table and able to create but when i selecting the data it showing data mismatch.I tried for an test data but it returned error.I want to load from an excel file saved as test.csv
    CREATE TABLE Per_ext
    CITY VARCHAR2(30),
    STATE VARCHAR2(20),
    ZIP VARCHAR2(10),
    COUNTRY VARCHAR2(30)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY dataload
    ACCESS PARAMETERS
    MISSING FIELD VALUES ARE NULL
    LOCATION ('test.csv')
    REJECT LIMIT UNLIMITED;
    test.csv file contents
    city ----------     state---------Zip------------country
    Bombay-----     MH------------34324-------india
    london-------London------1321---------UK
    Pune---------MH------------3224---------india
    Banglore----     Karnataka---11313-------india
    rgds
    soumya

    Hi Justin
    I am getting following error when i trying from toad
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-00554: error encountered while parsing access parameters
    KUP-01005: syntax error: found "comma": expecting one of: "badfile, byteordermark, characterset, column, data, delimited, discardfile, exit, fields, fixed, load, logfile, language, nodiscardfile, nobadfile, nologfile, date_cache, processing, readsize, string, skip, territory, variable"
    KUP-01007: at line 1 column 29
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    rgds
    soumya

  • Insert Record and Redirect Data

    I have a website where we are adding articles to categories.
    I need to be able to have a user add an article and then have the
    option to add that same article into another category.
    I'm using the INSERT RECORD behavior now but I'm looking for
    an extension that will INSERT RECORD plus redirect the record/data
    to another page so the user can add it to another category.

    I found this in the upload scripts read me file:
    The clsUpload object contains public functions and methods
    which enable you to upload and save files to a web server using
    pure VBScript.
    Read only
    Data Type: Dictionary Collection
    Syntax: object.Form
    Returns a Forms collection consisting of all the Form objects
    parsed from the HTTP header.
    This collection contains all the HTML form elements which are
    not "Files"
    This collection should be used instead of the typical
    "request.form" method to access data from the other form elements
    (if you decide to combine "file" upload elements with other form
    element types, like checkboxes, text boxes, drop-down lists,
    textareas). Why? Because the form data is posted using
    "multipart/form-data" encoding (and needs to be retrieved like
    binary data instead of text data) and therefore the typical
    "request.form" method isn't effective.
    I changed request.form to clsUpload.form but it still did not
    work.

  • Data mismatch on OIM database

    Hi *,
    I import some newly created resource to our live system...It returns an error and import terminated...
    Later found that, our OIM database reached its maximum allowed size....
    But, now there are data mismatches.....
    UD_XXX table is created on OIM database. But, it is not showing in the Form Designer form on OIM Design Console....
    Then, I created new form, "UD_YYY" on Form Designer in OIM Design console....But, when I logon to database and see, "UD_YYY" table is not created on OIM DB...But, it is showing on the Design console...
    I run the following script to increase the db max limit....
    ALTER DATABASE DATAFILE '<path>XELTBS_01.DBF' AUTOEXTEND ON NEXT 50M MAXSIZE 5120M;
    Now, How can I synchronize the OIM tables.....???
    Is it ok, if I manually delete those tables?? and in what table is this custom table info (i.e. UD_*) is kept?? Is it ok, if i delete these entry manually??
    Help....
    Regards,
    Chaturanga

    Hi suren,
    Yes. I can do it...But, is it ok to keep these miss match data in OIM??
    And also in the log, following error occurs countinuesly...
    ERROR [XELLERATE.DATABASE] Class / Method: tcDataBase / write statement sometime encounter problems: ORA-01400: can not insert NULL into ("XLADM". "UPA_RESOURCE". "OBJ_KEY")
    java.sql.SQLException: ORA-01400: can not insert NULL into ("XLADM". "UPA_RESOURCE". "OBJ_KEY")
    I thought, this is due to the data mismatch problem....
    Regards,
    Chaturanga

  • Accessing data from old hard drive connected to HP Pavillion 500-242ea

    Recently i purchased HP Pavillion 500-242ea ( OS Windows 8.1) as my old pc died.I connected the old hard drive via Usb adaptor kit.The old drive shows up in device manager and file explorer and disk management as F drive but does not show volume. I know the old drive is not full and the drive is working as i can put discs in and they load up.When i click on the old drive-F drive- in file explorer 'Please insert disc' message pops up.Any one know how to access data from old drive which has IDE cable.
    Please help need to copy imporatant files from old drive.
    Thank you
    This question was solved.
    View Solution.

    Just had to ask, do you know the difference between hard drive and CD/DVD drive?  Don't get angry, read this.
    You said " I know the old drive .......... is working as i can put discs in and they load up.When i click on the old drive-F drive- in file explorer 'Please insert disc' message pops up.'
    All that implies a CD/DVD drive. You can not put a disc into a hard drive.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Accessing data from MS Access

    Hi there,
    I am trying to access data from numerous tables/queries in my access database. Can someone please tell me a general code to do this... I am really desperate as I have been stuck with this for a great deal of time.
    Any help would be greatly appreciated! Thanks!

    this one is very simple, you can use the JDBC (Java Data Base Connectivity)
    this is the sample code
    import java.sql.*;
    public class InsertRows {
    public static void main(String args[]) {
    String url = "jdbc:mySubprotocol:myDataSource";
    Connection con;
    Statement stmt;
    try {
    Class.forName("myDriver.ClassName");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    try {
    con = DriverManager.getConnection(url,
    "myLogin", "myPassword");
    stmt = con.createStatement(
    ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.CONCUR_UPDATABLE);
    ResultSet uprs = stmt.executeQuery(
    "SELECT * FROM COFFEES");
    uprs.moveToInsertRow();
    uprs.updateString("COF_NAME", "Kona");
    uprs.updateInt("SUP_ID", 150);
    uprs.updateFloat("PRICE", 10.99f);
    uprs.updateInt("SALES", 0);
    uprs.updateInt("TOTAL", 0);
    uprs.insertRow();
    uprs.updateString("COF_NAME", "Kona_Decaf");
    uprs.updateInt("SUP_ID", 150);
    uprs.updateFloat("PRICE", 11.99f);
    uprs.updateInt("SALES", 0);
    uprs.updateInt("TOTAL", 0);
    uprs.insertRow();
    uprs.beforeFirst();
    System.out.println(
    "Table COFFEES after insertion:");
    while (uprs.next()) {
    String name = uprs.getString("COF_NAME");
    int id = uprs.getInt("SUP_ID");
    float price = uprs.getFloat("PRICE");
    int sales = uprs.getInt("SALES");
    int total = uprs.getInt("TOTAL");
    System.out.print(
    name + " " + id + " " + price);
    System.out.println(
    " " + sales + " " + total);
    uprs.close();
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.println(
    "SQLException: " + ex.getMessage());
    jdbc can be used to connect to databases like access,oracle etc
    you can also try out this link :
    http://java.sun.com/developer/Books/JDBCTutorial/

  • APEX Application accessing data from two different databases

    Hi All,
    Currently as we all know that APEX Application resides in database and is connected to the schema of that database.
    I want APEX Application to be running and accessing data from two different databases. Elaborating my question,
    Currently, my APEX Production Application is connected with XXXX Schema of DB1 Database(Where APEX Resides). Now I want to add some pages into this APEX Application for REPORT Purpose, But I want to connect this REPORT APEX Pages to get data from Different Schema YYYY for Database DB2.
    Is it possible to configure this scenario?
    The reason for doing this is to avoid the REPORT related (adhoc queries) resource utilization effect on Production DB1 Database.
    Thanks
    Nil

    1. If you do the joining of two or more tables in DB1 then all data is pulled over to DB1 and then the join is executed: so more data over the databaselink and more work for DB1. Better keep the joining stuff where the data resides and just pull exactly that data over that you need.
    2. Don't know about your different block sizes. Seems a nice question for one of the other forums (DBA or SQL).
    3. I mean create synonyms on DB1 for reports VIEWS in DB2.
    Hope all is clear!

  • Insert/update japanese langunage data in a column of datatype varchar2(..)

    Hello,
    I am using ORACLE DATABASE 11g (EE) and RHEL 5.
    I want to insert/update japanese language data in a column which has the datatype as varchar2(256).
    I tried to change the NLS_LANGUAGE and NLS_TERRITORY parameters with 'ALTER SESSION set ...' command but no effect.
    I tried to bounce back ( shutdown and startup ) the DB but still no effect.
    I tried to inset the NLS_LANGUAGE and NLS_TERRITORY in init.ora file but still no use.
    If anybody knows the detail steps which i have mentioned above .... let me know. Might be that i am wrong in my method.
    Can you please guide me how to change the language of DB for a perticular session to japanese ???
    Thanks in advance...
    Edited by: VJ4 on May 9, 2011 6:21 PM

    VJ4 wrote:
    Thanks for the info.
    Yes i tried with UNISTR function and was able to insert the data successfully.
    but the point is that we can't remember unicode for each of the letter. It's their any method that we can directly insert japanese character using an insert.
    As you said :-
    Note that changing database character set is something complicated that requires many steps.
    Can you please provide me some links or some stuffs to study about the detail steps of chaining database character set.
    I have gone through the Oracle online documentation.. if you can pin point any good link in it you can else provide me some other stuff.
    Thanks .You will need to convert your database characterset to AL32UTF8. This is not a trivial exercise if your database already has data in it. See these MOS Docs
    Changing the NLS_CHARACTERSET to AL32UTF8 / UTF8 (Unicode)          (Doc ID 260192.1)
    AL32UTF8 / UTF8 (Unicode) Database Character Set Implications          (Doc ID 788156.1)
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10729/ch11charsetmig.htm#g1011430
    HTH
    Srini

  • Data Mismatching in DSO

    Hi Folks,
    We  have data mismatch issue for one info object ( BASE UOM ) when the data goes from staging DSO to conformance DSO.I will explain the issue here.
    For one invoice no the Base UOM value dispayed as M2 in the staging DSO.When the data goes from staging DSO to conformance DSO,in the conformance DSO the Base UOM dispayed as Blank value.There is no code written for calculation  of Base UOM in transformation level.This is direct a mapping to field Base UOM in the conformance DSO from staging DSO.For all other invoices the Base UOM value dispalyed correctly in conformance DSO when compare to staging DSO. For one specific invoice the base UOM value showing as blank in the conformance DSO.
    Could you please give me your suugestions what the reasons for showing  base UOM value showing as a blank value in Conformance DSO.
    Thaks for your advance.
    Regards,
    Nag

    Hi,
    You will have to check following things,
    1) Check if other records with base unit value as M2 are updated properly in conformance DSO. This will make sure that there is no issue with this particular base unit.
    2) As you have mentioned other records are successfully getting updated, you might have to debug the data load for this particular record. Do the selective data loading and check, where the unit is getting cleared.
    You can also check if there is any conversion routine at the infoobject level.
    Regards,
    Durgesh.

  • Delta load from ODS to cube failed - Data mismatch

    Hi all
    We have a scenario where the data flow is like
    R/3 table - >dataSrc -- > pSA - >InfoSrc -> ODS ->Cube.
    The cube has an additional field called "monthly version"
    and since it is a history cube , it is supposed to hold data
    snapshots of the all data in current cube for each month .
    We are facing the problem that the Data for the current month
    is there in the history ODS but not in the cube . In the ODS ->Manage->requests
    tab i can see only 1 red request that too with 0 recs.
    However ,In the cube -> manage-> reconstruction tab , i can see 2 Red request
    with the current month date. Could these red requests be the reason for
    data mismatch in ODS and cube .
    Please guide as to how can i solve this problem .
    thanks all
    annie

    Hi
    Thanks for the reply.
    Load to Cube is Delta and goes daily .
    Load to ODS is a full on daily basis .
    Can you help me how to sort this issue . I have to work directly in production env . so has to be safe and full proof .
    Thanks
    annie

  • Want Access Data Grid control in SharePoint 2013?

    Hello everyone!
    Recently we noticed something funny in SharePoint 2013. While quite many people were hoping to have the datasheet view like those in SP2007 and 2010, Microsoft has chosen a different interface to display datasheet view.
    Now, if you try to create a sub site under a publishing site, and use the
    Publishing Site template then try to create a datasheet view in the sub site, SharePoint will try to use the Access data grid control to display the view. In some situations the view will display and other situations it will not, and will show this
    error:
    The list is displayed in Standard view. It cannot be displayed in Datasheet view for one or more of the following reasons: A datasheet component compatible with Microsoft SharePoint Foundation is not installed, your browser does not support ActiveX controls,
    a component is not properly configured for 32-bit or 64-bit support, or support for ActiveX controls is disabled.
    If you create a sub site using Publishing Site with Workflow instead, then the datasheet view will be created properly using SP2013 interface.
    Using PowerShell, we can see that both Publishing Portal and
    Publishing Site With Workflow are using the BLANKINTERNET 53 template. The
    Publishing Site on the other hand is using the CMSPUBLISHING 39 template.
    Want to try it out and let me know if that happens to your SharePoint too?

    Hi Conway,
    I tested the issue in my environment per your description and it returned the results as below:
    I created a subsite using Publishing site under a team site in SharePoint server 2013, the datasheet view in a list displayed as pic1
    I reproduced the issue in SharePoint server 2010, the datasheet view in a list displayed as pic2
    It turns out by design the datasheet view in the subsite based on Publishing site template displays as your situation. Here is an article which explains this:
    http://www.sharepointblues.com/2010/03/31/data-sheet-view-not-working/
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Unable to export data from Web Access Data Sheet in Sharepoint to local excel or access file

    Greetings and good morning.
    I'm going to start off in broad terms with this question because I'm not 100 percent sure what information to provide.
    Long story short, we've got a Web Access Data Sheet list hosted in a Sharepoint 2010 environment. It is accessed and used by multiple people throughout the day. It contains several thousand line item entries. I'd call it a large data sheet.
    I think the size of the data sheet is casuign some instability in the list. I'd like to be able to export a defined range of data from the list into a local excel or access file. After that, I'd delete the stuff on the Access list to improve performance.
    But...when I attempt to use the Sharepoint Action bar to export - Excel locks up/crashes. If I try to export to Access, I get a similar issue.
    Any ideas? Could anyone begin by telling me what other information is required?

    Hi,
    If you would like to export data from Access Web Database in SharePoint 2010, you could go to Design With Access page in Settings. The url in my environment is http://sp/tt/_layouts/accsrv/ModifyApplication.aspx . Then choose the Table and export it to Excel
    or Modify it in Access.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Data mismatch

    Hi all,
              My project manager shown screen shot like data mismatch from r/3 side and bw report, Now i have to analysis where it is
    strucked give me steps to follow find that error, you guys surely have idea where and all possible to get stuck please give yr
    suggestion, then i can easy find that problem.
    thanks & regards,
    R. Saravanan

    Hi Saravanan,
    Goto R3 side--> RSA3 Transaction > Enter the DS name>  Give some restriction w.r.t some Characteristics --> Extract the data
    Come to BW side> RSA1 trans> you can start checking with the either Infocube content/ MP contents> right click> Display data> Give the same restrictions as you gave in the R3 RSA3 trans> Execute
    Compare the field values whether you are getting the same data or not.
    if the data is matching here, then there might be some filtering in the Query--> check that filtering & check the data accordingly
    If it is not matching at Cube/MP level--> Then compare the data at PSA level before which check all the Routines/Update rules/ Transformations because there is a possibility that the data might be filtered in any of these levels.
    Hope it helps!
    Regards,
    Pavan

  • How do I access  data from one user account to another?

    I want to access data from a different user account. How do I make all the files available?

    I have another post here in the forum that explains in detail about the rez problem. It was read by a lot of people with no responses. 1 thing that might be important is that I was using a Wacom drawing tablet when this problem started. I removed the Wacom software and no help.
    My Apple 23" Cinema display has very large icons but the display prefs says it is at 1920 x 1200. It's not just a low screen rez but the dock and all icons will scroll on the screen when I move the mouse.
    The resolution will not change to anything else. The rez is fine on other user names.
    I have booted from the Apple DVD and run disk repair, repaired disk permissions. Booted and run Tech Tool.
    Booted from the Disk Warrior cd and ran that.
    I have zapped the PRAM. I have plugged the display into the other port on the video card.
    When I change to the problem user name it is fine for about 1 second and then changes to the "problem". I have never seen this before and I have been using a Mac since 1990.
    It's a G-5. Dual 2.0 ghz. 2.5 gb ram. OS 10.5.8. Apple keyboard. Logitech mouse and
    Thanks.

  • Can I create a Stored Procedure That access data from tables of another servers?

    I'm developing a procedure and within it I'm trying to access another server and make a select into a table that belongs to this another server. When I compile this procedure I have this error message: " PLS-00904: insufficient privilege to access object BC.CADPAP", where BC.CADPAP is the problematic table.
    How can I use more than one connection into an Oracle Stored Procedure?
    How I can access tables of a server from a Stored Procedure since the moment I'm already connected with another server?
    Can I create a Stored Procedure That access data from tables of another servers?

    You need to have a Database Link between two servers. Then you could do execute that statement without any problem. Try to create a database link with the help of
    CREATE DATABASE LINK command. Refer Document for further details

Maybe you are looking for

  • Using substitution variable with multiple values in Maxl Command

    Hi All, Is there any option to use multiple values in 1 substitution variable and use them in a Maxl command. alter database $app_name.$db_name clear data in region '{CrossJoin(CrossJoin(CrossJoin({StrTOMbr(&Months)},{XXX, YYY}),{StrTOMbr(&CURYR)}),

  • Signature is corrupted. Could not verify  HELP!

    Hi, i have a big problem i write a small code who creates a PKCS7 signed file. The PKCS7 contains a self signed X509Certificate witch i create with openssl and the PKCS7 contains a Message like "Hello". Second i write a small prog who extracts the Si

  • Real time 10.0.1?

    Bonjour, Pour les besoins d'un tp, nous avons fait l'acquisition d'un ensemble cRIO-9074 équipé de 3 module (NI9201, NI9211, NI9401). Aussi avant de le mettre sur paillasse, je tente d'apprivoiser la bête. Donc j'ai fait à la va vite un VI, me permet

  • Creating backup report OEM 10g

    I have installed OEM 10.2.0.5 and i am trying to figure out how to create a custom report for all backup jobs. Unfortunately this new and "improved" version of OEM doesn't have a single report like that. Can anyone tell how to write a script in OEM t

  • Lumia 625 mtp usb driver will not load

    After latest firmware update I can not load or reload this driver. Windows 7 PC will not recognise fhe phone. Usb knows it is a 625, but unable to do anything with explorer or the Windows Phone for desktop