Error on data base insert

hello mike,       
                       i am getting error  when i insert the data in to sql data base, check my code, last day i was using the same method it was workking well, now i am getting problem ... please find this attachment.
Regards,
Balaji DP
Attachments:
db1.JPG ‏63 KB
insert.vi ‏30 KB

It looks like your database reference is invalid; check your UDL file.
Jim
You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

Similar Messages

  • Library Update rqstd on Aperture 3.2; now won't open get msg "error opening data base for the library "~/Pictures/Aperture Library.aplibrary"   TIme machine won't load backup "error code -8003"

    Aperture working on OS 10.6.8 then Library Update rqstd on Aperture 3.2; said yes;
    now Aperture won't open,  get msg "error opening data base for the library "~/Pictures/Aperture Library.aplibrary"  
    TIme machine won't load backup "error code -8003"
    Tried reloading Aperture 3.2 but get same result.

    You’re running an outdated copy of Safari on your Desktop. That won’t work.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A to open the Applications folder. Check that the Safari application is in that folder. If it is, use it, and delete the copy on your Desktop. Never move or copy built-in applications.
    If you've deleted Safari from the Applications folder, back up all data, then reinstall OS X. If your Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade, so make a note of those before you begin.

  • Error opening data base for the library for Aperture

    Hello,
    I have been using Aperture all day and for some reason am now getting this error message when trying to open it again.
    Te was an error opening the data base for the library "users/*******/pictures/aperture3triallibrary.aplibrary
    Has this happened for anyone else?
    Many Thanks

    When I hold down ⌘⌥ firmly, at the same time, and with these keys held down double click the Aperture library that I want to repair, I get this panel:
    Then, when I select "Repair"  Aperture will show a progress bar and the Dock icon will stay highlighted.
    When it is finished, the Aperture window will open.
    When I select repair, it seems as though it doesn't run. I don't get a dialog box to confirm it's happening and on the dock the little light under the Aperture icon isn't lit, which seems it is'nt open or running.
    After you select "Repair", does the panel close and then nothing? Or does the panel not react?
    I still don't see fully, what is going on on your mac.
    But it is a good sign, that you can create a new library. That suggests, that Aperture is running correctly on your mac, and "only" your old library has a problem. Try to test the new library - import a few images and try to adjust them.
    Once you are convinced, that the new library is working well, you have three options.
    Try "Rebuild" instead of "Repair".
    Or try to import your old library into the new library (Aperture's main menu bar > File >Import > Library) - that is another approach to rebuilsd the library.
    Or restore from backup. To restore from Time Machine, open a Finder Window showing your Aperture library, and then enter Time Machine. Go back in time to the most recent date that has a working Aperture library and select "Restore". If you have enough space on your disk, restore to a different folder and don't overwrite your current library.
    Regards
    Léonie

  • Data base insert data missing

    hi,
          i am inserting the data continually in while loop using data base toolkit.missing some data insert table.and also form inserting data in array it will correct.
    Solved!
    Go to Solution.

    hi,
            this is sub vi.i will closed connection in main vi.
              using sql server connection.
    Attachments:
    sub.JPG ‏149 KB

  • Error in data base connection - Help me

    Hi,
    In our application we are using jdbc:odbc:driver to connect with MSAccess database (.mdb), The data base is password protected,, when I run the application and access the database the user name, application path and the password is stored in the system registry automatically . The path where the details are stored is
    I don’t know the reason behind this update in the registry, how can I remove the entry from the registry using java code.
    Requirement:
    The password should not be updated in the registry , how can I avoid this?
    The sample code is
    String database1 = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
    database1+=sample.mdb+";PWD="+”sample”;
    con = DriverManager.getConnection(database1 ,”admin”,”sample”);

    Hello Jschell,
    Thank you for your message.
    Our application's feature set is defined by what we store in a table in the DB. Eg: 1 means premium version, 2 means basic version etc. The app is written and tested, and prior to shipment we only change this value.
    It would take us too long to change the basic logic. One alternate we thought is to encrypt this number by multiplying it with a large prime.
    Is there some other way in which we can protect the user name / password ?
    Thanks
    Sivan

  • Error in Data Base object editor opening.

    Hi All,
    I have one server with Repowner. i created two users in two different systems with repuser1 & repuser2.
    i sucessfully imported the source data,when i am creating new table in target it gives the following error message.
    API5072 internal error
    any one help me regarding this

    Hi Stevencallan,
    i am not installed any workflow schemas.
    Can u please explain me clearly.

  • Sap erp(data base ) not conneted

    Hi Gurus , 
    I am getting problem  while starting sap server  it showing the status  disp+work.exe is stopped  and in system   log error  is “data base :ora-01033”      pls help in this regards
    Points will be rewarded.
    Mail me : [email protected]
    Regards.
    Madhukar Reddy. A

    ORA-1033 = Oracle intialization or shutdown in progress
    is the database started?
    the oracle listener is up and running?
    try :
    > lsnrctl status (using user <sid>adm)
    if the listener is not up, start it using the appropriate service...
    do you have any logs, like the startdb.log or any of the dev_w?, dev_disp etc.?
    GreetZ, AH

  • How can I insert images in data base?

    Hi!!
    I don't know what i need to do.
    My problem is that I need to save images in the data base but I don't know how. The images are from autopart catalogues.
    Thanks for your help

    Hi,
    Here is the example which uses dbms_lob utility to insert an image into the database.
    Create a table to store the blobs:
    create table blobs
    ( id varchar2(255),
    blob_col blob
    Step 2.
    Create a logical directory in the database to the physical file system:
    create or replace directory MY_FILES as 'c:\images';
    Step 3.
    Create a procedure to load the blobs from the file system using the logical
    directory. The gif "aria.gif" must exist in c:\images.
    create or replace procedure insert_img as
    f_lob bfile;
    b_lob blob;
    begin
    insert into blobs values ( 'MyGif', empty_blob() )
    return blob_col into b_lob;
    f_lob := bfilename( 'MY_FILES', 'aria.gif' );
    dbms_lob.fileopen(f_lob, dbms_lob.file_readonly);
    dbms_lob.loadfromfile( b_lob, f_lob, dbms_lob.getlength(f_lob) );
    dbms_lob.fileclose(f_lob);
    commit;
    end;
    Regards
    Anand
    null

  • How to solve that error in primavera p6 version 8.4 installation???????upgarding Data Base((missing permissions: DBMS_REPUTIL. Run the manual script first -- manual_script_before_upgrade.sql)

    please advice how to solve that problem (in steps):
    after completing p6 installation and during upgrading the old Data Base from p6 v8.3 to P6 v8.4 I'm facing that error
    ((missing permissions: DBMS_REPUTIL. Run the manual script first --> manual_script_before_upgrade.sql)

    for more help this image is much helpful
    1. Open cmd prompt >> Type sqlplus / as sysdba; >> connect sys/oracle@XE as sysdba;
    2. Type @ <path>\manual_script_before_install.sql
    thanks for      Pablo Oyarzo - Oracle    for his help as the above answer related to him

  • How to insert  data from different internal  table  into a data base table

    hi all,
             I want to insert a particular field in an internal table to a field in a data base table.Note that the fields in the internal table and database table are not of the same name since i need to insert data from different internal tables.can some one tell me how to do this?
    in short i want to do something like the foll:
    INSERT  INTO ZMIS_CODES-CODE VALUE '1'.
    *INSERT INTO ZMIS_CODES-COL1 VALUE DATA_MTD-AUFNR .(zmis_codes is the db table and data_mtd is the int.table)

    REPORT  ZINSERT.
    tables kna1.
    data: itab LIKE KNA1.
    data lv_kUNAG LIKE KNA1-KUNNR.
    lv_kuNAG =  '0000010223'.
    ITAB-kuNNR = lv_kuNAG.
    ITAB-name1 = 'XYZ'.
    INSERT INTO KNA1 VALUES ITAB.
    IF SY-SUBRC = 0.
    WRITE:/ 'SUCCESS'.
    ELSE.
    WRITE:/ 'FAILED'.
    ENDIF.
    Here lv_kunag is ref to kna1 kunnr passed in different name
    In internal table .
    Try and let me know if this logic dint work.

  • Entourage error message 4362 - damaged data base - cannot back up , compact

    I've been using 10.5.8 on my G5 for 2 yrs NO problems - THEN - error message 4362 starts to appear as Entourage (2004 Office) gets close to 1.5G bytes. Disk utility can run and verify YES there is a damage in data base.
    BUT the rebuild option will NOT last more than 30secs before I/O error.
    I have tried to open Entourage with option key down and I have thrown out any email older than 1yr.
    Next move is to re-install Entourage - and import folders - unless some one has a better idea/solution. Please -- Ray

    Hi Ray,
    http://www.entourage.mvps.org/error/number.html#error4362
    See if the above helps before you remove and then re-install MS Office.
    Da Vinci

  • Error while fetching data from Logical data base

    Hi All,
    I need to fetch the data from Logical data base DDF.First when i am trying demo code
    REPORT demo_program_read_tables_2.
    NODES: spfli, sflight.
    GET spfli FIELDS carrid connid cityfrom cityto.
      WRITE: / spfli-carrid,
               spfli-connid,
               spfli-cityfrom,
               spfli-cityto.
    GET sflight FIELDS fldate.
      WRITE: / sflight-fldate.
    I am getting error like ""spfli is not a node of the logical data base __S""
    Should i declare anything esle?
    Madhu

    REPORT demo_logical_database.
    DATA wa_spfli TYPE spfli.
    SELECT-OPTIONS s_carr FOR wa_spfli-carrid.
    DATA: callback TYPE TABLE OF ldbcb,
          callback_wa LIKE LINE OF callback.
    DATA: seltab TYPE TABLE OF rsparams,
          seltab_wa LIKE LINE OF seltab.
    callback_wa-ldbnode     = 'SPFLI'.
    callback_wa-get         = 'X'.
    callback_wa-get_late    = 'X'.
    callback_wa-cb_prog     = sy-repid.
    callback_wa-cb_form     = 'CALLBACK_SPFLI'.
    APPEND callback_wa TO callback.
    CLEAR callback_wa.
    callback_wa-ldbnode     = 'SFLIGHT'.
    callback_wa-get         = 'X'.
    callback_wa-cb_prog     = sy-repid.
    callback_wa-cb_form     = 'CALLBACK_SFLIGHT'.
    APPEND callback_wa TO callback.
    seltab_wa-kind = 'S'.
    seltab_wa-selname = 'CARRID'.
    LOOP AT s_carr.
      MOVE-CORRESPONDING s_carr TO seltab_wa.
      APPEND seltab_wa TO seltab.
    ENDLOOP.
    CALL FUNCTION 'LDB_PROCESS'
         EXPORTING
              ldbname                     = 'F1S'
              variant                     = ' '
         TABLES
              callback                    = callback
              selections                  = seltab
         EXCEPTIONS
              ldb_not_reentrant           = 1
              ldb_incorrect               = 2
              ldb_already_running         = 3
              ldb_error                   = 4
              ldb_selections_error        = 5
              ldb_selections_not_accepted = 6
              variant_not_existent        = 7
              variant_obsolete            = 8
              variant_error               = 9
              free_selections_error       = 10
              callback_no_event           = 11
              callback_node_duplicate     = 12
              OTHERS                      = 13.
    IF sy-subrc <> 0.
      WRITE: 'Exception with SY-SUBRC', sy-subrc.
    ENDIF.
    FORM callback_spfli USING name  TYPE ldbn-ldbnode
                              wa    TYPE spfli
                              evt   TYPE c
                              check TYPE c.
      CASE evt.
        WHEN 'G'.
          WRITE: / wa-carrid, wa-connid, wa-cityfrom, wa-cityto.
          ULINE.
        WHEN 'L'.
          ULINE.
      ENDCASE.
    ENDFORM.
    FORM callback_sflight USING name  TYPE ldbn-ldbnode
                                wa    TYPE sflight
                                evt   TYPE c
                                check TYPE c.
      WRITE: / wa-fldate, wa-seatsocc, wa-seatsmax.
    ENDFORM.

  • Insertion of image in the data base - Help-me!!!!

    hello for all..., Well, somebody has some example of insertion of image in the data base saw upload, using JSP (Scriptlets)?
    or some example that I can insert in the bank the name of the image, and the image in a directory!???????
    Thank�s!

    if u r using sql server then u can define a column as TEXT and insert the file as binayr data, along with that u can store the file name.
    While retirving u can creat a fileiputstream and read the binary data and displya the image in the browser.
    Another way is to use upload servlet and store the image files in the server hard drive and store the image name and path in datbase .

  • Error saving Data Source Properties. - Base Exception. Call Oracle Support

    Hi,
    Oracle Application Server 10g Release 2 (10.1.2).
    I tried to create new Datasource using OEM Console but it throws error as following :
    Error saving Data Source Properties. - Base Exception: The Entity et="system";ei="0",et="application";ei="138",et="data-sources";ei="146":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; already exists in the repository. Resolution: If possible, remove et="system";ei="0",et="application";ei="138",et="data-sources";ei="146":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; . Call Oracle Support.
    May I know how to resolve this please ?
    Thank you.
    J.

    Hi ,
    Write following code in your UDF
    String Query = " ";
    Channel channel = null;
    DataBaseAccessor accessor = null;
    DataBaseResult resultSet = null;
    Query = <your query>;
    try{
             channel =LookupService.getChannel(<comm channel name>,< business system>);
             accessor = LookupService.getDataBaseAccessor(channel);
             resultSet = accessor.execute(Query);
             if(!(resultSet.equals(null)))
                       Iterator rows = resultSet.getRows();
                       if (rows.hasNext())  {        
                       Map rowMap = (Map)rows.next();
                       <your variable>.add(rowMap.get(<db field name>)+ "");
    catch(Exception ex)
          result.addValue(ex.getMessage());
    finally
              try
         if (accessor!=null) accessor.close();
              catch(Exception e)
         result.addValue(e.getMessage());
    Thanks ,
    Suvarna
    Pls award pts if it helps .

  • Sql date time insert error

    Hi i am having trouble entering a date in to a sql stored
    procedure.
    first i convert the date to the users current datetime using
    <cfscript>
    userTZ="#qGetClubDetails.LocalTime12#"; // or whatever tz ID
    you need
    tz=createObject("component","timeZone");
    userDateTime=tz.castFromServer(today,userTZ);
    </cfscript>
    then i need to insert this into a stored procedure using
    <cfstoredproc procedure="xsp_InsertSmsRecords"
    datasource="#application.ds#">
    <cfprocparam type="In" cfsqltype="CF_SQL_DATETIME"
    dbvarname="UsersDate" value="#CREATEODBCDATETIME(userDateTime)#"
    null="No">
    </cfstoredproc>
    but i am getting a error of
    Macromedia][SQLServer JDBC Driver][SQLServer]Error converting
    data type varchar to datetime.
    any ideas what i need to do?

    quote:
    Originally posted by:
    craiglaw98
    ok i have tried that with no luck, i did a cfdump on
    userDateTime and i got
    {ts '2008-01-21 05:16:04'}
    any ideas what i need to do to insert this to sql server
    Looks ok to me. To troubleshoot this, try using cfquery for
    your insert instead of a stored procedure.

Maybe you are looking for

  • Easy example: show a control on a different VI

    Hi all i have a very-beginner question: i have a main VI, and several sub-VI's... what i want...is to pass a value from a sub-vi to the main VI, to display it there. and i have to do it with a reference and property node...that's all i found out so f

  • Deleted emails keep reappearing, can anyone help?

    We have deleated the same emails several times but they keep reappearing, can anyone help

  • Where can i buy a Power cord for my iMac in Perú?

    I need it to turn on my iMac. I live now in Perú.

  • SD storage card issue

    OK friends I have read a lot about this problem but haven't solved it yet so I thought this forum would definitely be the one to go to. I have a BB Curve 9300 3G and have recently fitted a new screen to it due to some damage. On start up I have now g

  • Display LOV result when user click touch icon

    Hi I have a requirement to display the result of LOV when the user click torch button. The current functionality is user click torch button then he click "Go" with empty or partial value and the result get displayed. I want to get all the result get