Write/open error

Dear Colleagues,
I have Oracle 7.3.4 with Sco Open Server.
Here is a record from alert.log:
KCF: write/open error dba=0x2800bd49 block=0xbd49 online=1
file=5 /usr2/oradata/bb/users.ora
error=7374 txt: 'Additional information: 48457'
May be somebody khows what's going on?
null

Do you have your datafile extends through autoextend with multiple db_writers ?
If yes it looks like a SCO specific issue
(Bug# 916018). You can use a workaround:
disable "autoexend"
or
we suggest that you first upgrade to 7.3.4.4
and then apply the fix for this bug
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Yuri Khupchenko ([email protected]):
Dear Colleagues,
I have Oracle 7.3.4 with Sco Open Server.
Here is a record from alert.log:
KCF: write/open error dba=0x2800bd49 block=0xbd49 online=1
file=5 /usr2/oradata/bb/users.ora
error=7374 txt: 'Additional information: 48457'
May be somebody khows what's going on?<HR></BLOCKQUOTE>
null

Similar Messages

  • File opening error

    hello friends,
    i am doing data migration with lsmw withe directinput method so i did everything fine till the end i defined the logicalfiles also correctly and defined everthing perfeclty
    but i am getting below error
    File open error
    belrd110\INPUT\CT.TXT Permission  denied
    can anyone let me know where this is going wrong
    i am having the authorisation at the server level also and in the read and convert steps records and data coming perfectly but when i excute it at the end it is giving such error
    ur help will be appreciated
    Naveen

    Hi Naveen,
    Did you write your statment like this?
    OPEN DATASET P_DOWN FOR OUTPUT IN TEXT MODE.
    If it is not working, try to create a new file and access the same.
    Thanks,
    Sreekanth

  • PS CS5 Write Acess Error saving to a windows 2008 server share

    Hi Everyone,
    Our macs are running Snow Leopard 10.6.7 and we save/open files on a Windows 2008 Server via SMB,
    this particular problem, seems to be happening only with Photoshop:
    Sometime, when we try to save an image, photoshop returns a write access error
    at that time, if you go to the finder and take a look at the folder, the file had simply vanished.
    If you close the image, all lost.
    Everything is fine with Indesign and illustrator.
    Any help would be much appreciated!!
    Thank you all very much in advance.
    William

    Thanks for the reply Chris,
    I am trying to look for a solution on the Mac OS side, this problem happens from time to time.
    People keep trying to use Active Directory and log macs on it, it's always a problem.
    And to make things worse, apple changes the way Mac OS handles network tasks,
    they did it with 10.5 and 10.6. Well, we have to deal with that, right?
    Thanks again
    All the best
    William

  • Write Back Error The system is unable to read the Write Back Template 'test

    Write Back Error The system is unable to read the Write Back Template 'test'. Please contact your system administrator. OK
    But, the update button is on.
    It did work and now it doesn't... nothing of course that we know of has changed. We got this message when we started and the name of the file was what we put as template name in obiee instead of webmessage name but the update button was off.... now we have update button on and same error.
    File is on unix and we have made 777 so it's open to the world.
    <?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="WriteBack" table="D_EXEC_METRIC">
    <WebMessage name="test">
    <XML>
    <writeBack connectionPool="writeback">
    <update>UPDATE D_EXEC_METRIC SET EXEC_METRIC_ICON_WID = @{c3}, EXEC_METRIC_COMMENT='@{c7}' WHERE SECTOR_WID=@{c0} AND EXEC_METRIC_WID=@{c2}</update>
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    thanks in advance for your help!

    You're better off searching for an answer to this question in the [OBIEE Forum|http://forums.oracle.com/forums/forum.jspa?forumID=378].
    The topic is discussed at least twice a month so there's tons of posts with all the answers you need. Make a forum search for writeback and you'll have your answer.
    Cheers,
    C.

  • Write file error 8

    Once the file is created subsequent writes show Error code 8 out of the "Write File" VI LV6. (Cannot upgrade the code at this time). I'm using open/create/Replace File VI along with the Write File VI. Creating the file run OK, once I go back and rerun for a write the "Write File" reports Error code 8. How do I fix this issue.... using LV6.

    The file created by the open/create/Replace VI attributes are NOT set to READ ONLY. See the pic below. If the LV creates the file it should be able to subsequently write to the same file. Once again this is LV version 6. It didn't work this way before... I took a look at a few things in the code and noticed this anomaly.
    BTW, there are root or branch level folder showing the Read Only attribute is inherited from parent folder... but my whole C drive is this way... but LV should be able to write to the file regardless....
    Message Edited by richjoh on 12-22-2009 03:53 PM

  • Write permission error when Save for Web & Devices

    I'm using PS5.1.  When I try to Save for Web & Devices I'm getting write permission errors.  I haven't used this application for over a year, but it used to work fine. I'm not sure what changed. 
    I also used the Mac Disk Utility to Repair Permisions, but that didn't help. 
    Please help. 
    Thanks!

    The problem could be related to Mavericks permission problems. You can try the Bridge fix:
    Open Finder > (go) Computer > Macintosh HD (for me) > Users > Click once on the Home icon (main admin) > Get Info >
    click on lock and authorise bottom right > click on cog wheel drop down > click on 'Apply to enclosed items' > OK

  • BDC_INSERT, session not opened Error

    Hi,
    I have a BDC program to Add, Update and Delete a customer. If I do either Add, Update or Delete it is working fine. But if I have ADD and Update And Delete or any two of those it is giving me BDC_INSERT session not opened error. I have BDC_OPEN_GROUP, BDC_CLOSE_GROUP and BDC_INSERT.
    Can someone please help me to resolve this error.
    Thanks,
    veni.
        when 'UPDATE'.
          DESCRIBE TABLE itab_output LINES lv_cnt.
          DO lv_cnt TIMES.
            lv_index = sy-index + 3.
            READ LINE lv_index FIELD VALUE chk.
            IF chk = 'X'.
              READ TABLE itab_output INTO wa_index INDEX sy-index.
              IF sy-subrc EQ 0.
                wa_index-index = sy-index.
                APPEND wa_index TO itab_output2.
                CLEAR wa_index.
              ENDIF.
            ENDIF.
            CLEAR chk.
          ENDDO.
          set pf-status 'NORM1'.
          LOOP at itab_output2.
            IF itab_output2-transpzone = 'ADDITION'.
              MOVE itab_output2-name        TO wa1-name.
              MOVE itab_output2-name_2      TO wa1-name_2.
              MOVE itab_output2-name_3      TO wa1-name_3.
              MOVE itab_output2-name_4      TO wa1-name_4.
              MOVE itab_output2-city        TO wa1-city .
              MOVE itab_output2-city_no     TO wa1-city_no.
              MOVE itab_output2-postl_cod1  TO wa1-postl_cod1.
              MOVE itab_output2-transpzone  TO wa1-transpzone.
              MOVE itab_output2-street      TO wa1-street.
              MOVE itab_output2-str_suppl1  TO wa1-str_suppl1.
              MOVE itab_output2-country     TO wa1-country.
              MOVE itab_output2-extens_1    TO wa1-extens_1.
              PERFORM FORMAT_STORENO.
              APPEND wa1 TO itab_output3.
              CLEAR: wa1.
            ELSEIF itab_output2-transpzone = 'CHANGE'.
              MOVE itab_output2-name        TO wa1-name.
              MOVE itab_output2-name_2      TO wa1-name_2.
              MOVE itab_output2-name_3      TO wa1-name_3.
              MOVE itab_output2-name_4      TO wa1-name_4.
              MOVE itab_output2-city        TO wa1-city .
              MOVE itab_output2-city_no     TO wa1-city_no.
              MOVE itab_output2-postl_cod1  TO wa1-postl_cod1.
              MOVE itab_output2-transpzone  TO wa1-transpzone.
              MOVE itab_output2-street      TO wa1-street.
              MOVE itab_output2-str_suppl1  TO wa1-str_suppl1.
              MOVE itab_output2-country     TO wa1-country.
              MOVE itab_output2-extens_1    TO wa1-extens_1.
              PERFORM FORMAT_STORENO.
              APPEND wa1 TO itab_output4.
              CLEAR: wa1.
            ELSEIF itab_output2-transpzone = 'DELETE'.
              MOVE itab_output2-name        TO wa1-name.
              MOVE itab_output2-name_2      TO wa1-name_2.
              MOVE itab_output2-name_3      TO wa1-name_3.
              MOVE itab_output2-name_4      TO wa1-name_4.
              MOVE itab_output2-city        TO wa1-city .
              MOVE itab_output2-city_no     TO wa1-city_no.
              MOVE itab_output2-postl_cod1  TO wa1-postl_cod1.
              MOVE itab_output2-transpzone  TO wa1-transpzone.
              MOVE itab_output2-street      TO wa1-street.
              MOVE itab_output2-str_suppl1  TO wa1-str_suppl1.
              MOVE itab_output2-country     TO wa1-country.
              MOVE itab_output2-extens_1    TO wa1-extens_1.
              PERFORM FORMAT_STORENO.
              APPEND wa1 TO itab_output5.
              CLEAR: wa1.
            endif.
          endloop.
          clear chk.
          refresh itab_output2.
          DESCRIBE TABLE itab_output3 LINES lv_cnt.
          if lv_cnt <> 0.
            perform add_shipto.
          endif.
          clear lv_cnt.
          DESCRIBE TABLE itab_output4 LINES lv_cnt.
          if lv_cnt <> 0.
            perform change_shipto.
          endif.
          clear lv_cnt.
          DESCRIBE TABLE itab_output5 LINES lv_cnt.
          if lv_cnt <> 0.
            perform delete_shipto.
          endif.
          clear lv_cnt.
      endcase.
    FORM FORMAT_STORENO.
      IF itab_output2-storeno >= 1 AND itab_output2-storeno <= 9.
        CONCATENATE '1012'
                    '00000'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ELSEIF itab_output2-storeno > 9 AND itab_output2-storeno < 100.
        CONCATENATE '1012'
                    '0000'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ELSEIF itab_output2-storeno > 99 AND itab_output2-storeno < 1000.
        CONCATENATE '1012'
                    '000'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ELSEIF itab_output2-storeno > 999 AND itab_output2-storeno < 10000.
        CONCATENATE '1012'
                    '00'
                    itab_output2-storeno
                    INTO wa1-storeno.
      ENDIF.
    ENDFORM.                    " FORMAT_STORENO
    FORM add_shipto.
      loop at itab_output3.
        MOVE '1012'                TO WA_EDPAR-KUNNR.
        MOVE 'WE'                  TO WA_EDPAR-PARVW.
        MOVE itab_output3-name_4   TO WA_EDPAR-EXPNR.
        MOVE itab_output3-storeno  TO WA_EDPAR-INPNR.
        INSERT INTO EDPAR VALUES WA_EDPAR.
        CLEAR WA_EDPAR.
      endloop.
      IF gd_open <> gc_true.
        m_grpid = 'ADD_SHIPTO'.
        PERFORM open_bdc_session.
      ENDIF.
      LOOP AT itab_output3 INTO wa1.
        lv_lzone = wa1-postl_cod1(3).
        perform bdc_dynpro      using 'SAPMF02D' '0107'.
        perform bdc_field       using 'BDC_CURSOR' 'RF02D-KTOKD'.
       // BDC to add customer
        PERFORM bdc_transaction USING gc_tcode2.
        m_count = m_count + 1.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: /01 'Batch job created successfully',
               /01 'Number of new records added', m_count.
      ENDIF.
      clear m_count.
      IF gd_open = gc_true.
        PERFORM close_bdc_session.
      ENDIF.
    ENDFORM.                    " add_shipto
    FORM change_shipto.
      loop at itab_output4.
        UPDATE EDPAR SET   expnr = itab_output4-name_4
                     WHERE kunnr = '0000001012'   AND
                           inpnr = itab_output4-storeno.
      endloop.
      IF gd_open <> gc_true.
        m_grpid = 'CHANGE_SHIPTO'.
        PERFORM open_bdc_session.
      ENDIF.
      LOOP AT itab_output4 INTO wa1.
        lv_lzone = wa1-postl_cod1(3).
        perform bdc_dynpro      using 'SAPMF02D' '0108'.
        perform bdc_field       using 'BDC_CURSOR' 'RF02D-D0125'.
       // BDC to change customer
        PERFORM bdc_transaction USING gc_tcode1.
        m_count = m_count + 1.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: /01 'Batch job created successfully',
               /01 'Number of records changed', m_count.
      ENDIF.
      clear m_count.
      IF gd_open = gc_true.
        PERFORM close_bdc_session.
      ENDIF.
    ENDFORM.                    " change_shipto
    FORM delete_shipto.
      loop at itab_output5.
        DELETE FROM EDPAR
                     WHERE kunnr = '0000001012'   AND
                           expnr = itab_output5-name_4 AND
                           inpnr = itab_output5-storeno.
      endloop.
      IF gd_open <> gc_true.
        m_grpid = 'DELETE_SHIPTO'.
        PERFORM open_bdc_session.
      ENDIF.
      LOOP AT itab_output5 INTO wa1.
        perform bdc_dynpro      using 'SAPMF02D' '0507'.
        perform bdc_field       using 'BDC_CURSOR' 'RF02D-SPART'.
        perform bdc_field       using 'BDC_OKCODE' '/00'.
        perform bdc_field       using 'RF02D-KUNNR' wa1-storeno.
        perform bdc_field       using 'RF02D-VKORG' '300'.
        perform bdc_field       using 'RF02D-VTWEG' '20'.
        perform bdc_field       using 'RF02D-SPART' '01'.
        perform bdc_dynpro      using 'SAPMF02D' '0520'.
        perform bdc_field       using 'BDC_CURSOR' 'KNA1-LOEVM'.
        perform bdc_field       using 'BDC_OKCODE' '=UPDA'.
        perform bdc_field       using 'KNA1-LOEVM' 'X'.
        PERFORM bdc_transaction USING gc_tcode3.
        m_count = m_count + 1.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: /01 'Batch job created successfully',
               /01 'Number of records deleted', m_count.
      ENDIF.
      clear m_count.
      IF gd_open = gc_true.
        PERFORM close_bdc_session.
      ENDIF.
    ENDFORM.                    " delete_shipto
    FORM open_bdc_session.
      CALL FUNCTION 'BDC_OPEN_GROUP'
           EXPORTING
                client = sy-mandt
                group  = m_grpid
                keep   = 'X'
                user   = sy-uname.
      IF sy-subrc <> 0.
        MESSAGE e208(00) WITH 'Session open error'.
      ELSE.
        gd_open = gc_true.
      ENDIF.
    ENDFORM.                    " open_bdc_session
    FORM close_bdc_session.
      IF gd_open = gc_true.
        CALL FUNCTION 'BDC_CLOSE_GROUP'
             EXPORTING
                  client = sy-mandt
                  group  = m_grpid
                  keep   = 'X'
                  user   = sy-uname.
      ENDIF.
    ENDFORM.                    " close_bdc_session
    FORM bdc_dynpro USING    p_program
                             p_screen.
      CLEAR: itab_bdcdata.
      itab_bdcdata-program  = p_program.
      itab_bdcdata-dynpro   = p_screen.
      itab_bdcdata-dynbegin = gc_true.
      APPEND itab_bdcdata.
    ENDFORM.                    " bdc_dynpro
    FORM bdc_field USING    p_fieldname
                            p_value.
      CLEAR itab_bdcdata.
      itab_bdcdata-fnam = p_fieldname.
      itab_bdcdata-fval = p_value.
      APPEND itab_bdcdata.
    ENDFORM.                    " BDC_FIELD
    FORM bdc_transaction USING    p_tcode.
      CALL FUNCTION 'BDC_INSERT'
           EXPORTING
                tcode     = p_tcode
           TABLES
                dynprotab = itab_bdcdata.
      REFRESH itab_bdcdata.
      CLEAR: itab_bdcdata.
    ENDFORM.                    " bdc_transaction

    Thank you Rob.
    I just added this in BDC_CLOSE_GROUP, and it worked.
      IF sy-subrc = 0.
        gd_open = ' '.
      ENDIF.
    In BDC_OPEN_GROUP if gd_open = ' ', then only it opens a new session.
    Thanks,
    Veni.
    Edited by: veni reddy on Feb 8, 2008 8:52 PM

  • Write permission error message when I try to 'save image' from elements 12 raw camera to main editing section?

    I get a 'write permission error' message when I try to 'save image' from Raw Camera sector to the main editing section of Elements 12. How can I overcome this problem?

    Well, first of all Save Image doesn't have anything to do with moving a raw file into the regular editor. That's the DNG converter. Evidently you are trying to create a dng file in a place where you don't have permission to write. Take a look at the location and change it to someplace where you can write. An example would be opening a file that's on a disc and trying to save back to that disc.
    But you should still be clicking the Open button instead of the Save Image button if you want to do anything other than make a DNG file.

  • Capture error message and write the error message to file

    Anyone know that how to caputre the error message which is generated in a scope catch? and then write the error message to file?
    Thanks a lot!!

    Hi,
    Please try the following:
    1. Double click on the newly created catch activity (denoted by an ‘!’ symbol
    on it)
    2. In the General Tab, Click on the ‘Browse Faults’ icon (denoted by a torch
    symbol)
    3. A fault chooser window opens, (Eg. Expand partner links->CreditRatingService
    -> CreditRatingService -> FaultNegativeCredit)
    4. Create a variable (Eg. Fault1_NegativeCredit) in the Fault chooser window to store this value.
    5. Create a partner link, configured as a file adapter. (Specify your output file in this file adapter wizard)
    6. Invoke this partner link and pass the 'Fault1_NegativeCredit' variable to that partner link
    I hope you are aware of the terms I used, the steps are just guide lines. practically, u need to do a few more steps. Please refer the BPEL tutorials on exception handling and file adapters. that will help you...
    best regards
    Message was edited by:
    hem chand

  • LV2011 udp multicast open error 54

    Hi guys,
    I'm working on conversion from LV8.6 to 2011 for one of my projects. One thing I found was that the UDP broadcast module no longer worked. After digging into the vi i found that the "UDP Multicast Read-Write Open.vi" did not work the way as in 8.6.
    I used a net address string input of "172.16.1.234" (my secondary network card), after string-to-ip conversion it gave 2886730218. then the UDP vi gave an error 54 in LV2011. (in 8.6 this does not happen)
    I even tried using 127.0.0.1 or with ONLY my primary network card enabled (172.22.1.100), it always gives error 54.
    The only input to make it pass i found was 0.
    I have attached a ss of my test vi. Thanks for your inputs.
    LabVIEW 2011 newbie >.<
    Certified LabVIEW Developer
    Solved!
    Go to Solution.

    Thanks for the reply. I have also checked that example. Please note that in the example it doesn't have an input for the net address, which i assume labview 2011 will use 0.
    I have also just received a reply from NI and confirmed it's a known bug in 2011. i will post it below.
    I hope this finds you doing well. I am glad to hear that you are starting to upgrade to 2011 and I apologize for the issues you are seeing. I suspect you are using this on one of our Real-Time targets if so the good news is that this behavior has been documented in the form of a CAR (actually a
    few): Broadcasts and the UDP Open VI have an INCONSISTANT behavior depending on the OS. Pharlap/Windows receive broadcasts when the "net address" terminal is wired while vxWorks/Linux don't. These CARs are scheduled as major incoviencience and will be fixed in a future version of LabVIEW as of now the work around is to simple not wire the net address field.
    The CAR numbers incase you would like to see when they are fixed are:
    257627, 233344,235444, 283205
    LabVIEW 2011 newbie >.<
    Certified LabVIEW Developer

  • ITunes wont open Error -200

    yep
    well there i was opening iTunes
    and BLAMMO !
    ITunes wont open
    error -200
    what am i doing wrong now
    also coincedently my sound output aint working

    Also, I have not moved any files since updating. Still won't do anything.

  • HT1420 Cant get itunes to open.Error message:"its on a locked Cant get itunes to

    Cant get itunes to open.Error message:"its on a locked disk." What does this mean??!!

    ok heres what u gotta do
    yes i know its alot of steps but if you do them right it will work.
    1.remove all active versions of itunes
    2.then restart as it asks you to do, if it doesnt ask do it your self
    3.unplug ipod
    4.remove ipod software
    5. restart
    6.install the cd the ipod came w/
    7.when it asks you if you want to upgrade itunes say yes
    8.download the file
    9.intall the newest version
    10.restart
    if you have done exactly these steps(exactly in this order)then itunes should be working now

  • "write medium error" when trying to burn a music cd

    i've tried a few different times to burn a cd on my itunes and the same thing happens every time: i insert a black disk and my computer begins to make a noise that sounds not unlike grinding. the progress bar at the top of the itunes box says it is checking the songs, then initializing the burn, which it does for a couple minutes. then it says it is finalizing the burn, and spits the cd back out at me. a message then pops up on the screen which tells me that the cd was unable to burn because of a "write medium error." any help in this area will be greatly appreciated.
    p.s. i also tried downloading and installing the new itunes, as well as restarting my computer, all with the same effect.
    p.p.s. i'm using a macbook pro.

    seenabeena,
    Same exact thing was happening to me and was very frustrating. I was able to burn anything on from my itunes and then for whatever reason I started experiencing the same issues you are having. Don't know why it made a difference but someone here suggested using different brand of CD's. Guess the cheaper CD's are harder to read when it comes to the laser calibration. This isn't a endorsement at all but seems I've been able to burn anything again on the "imation" brand CD blanks. I hope this helps. Also, make sure you don't burn at anything higher than 8X when you start.
    Carl

  • Cursor open error SQLSTT - 72000, SQL code - 969

    We have purchased a product called Access Manager for DB2 and installed it on our AS400. This gives us the connectivitiy to Oracle server with which we do the Warehouse management software interface using our legacy system on AS400.
    I have written several programs in SQLRPGLE and not quite sure as to how I can handle errors coming out of Oracle server.
    As per my knowledge in my programs, I do
    declare cursor
    open cursor
    fetch
    dow look for sqlstate
    fetch next row
    enddo
    close cursor
    I am also new to this much of SQL.
    Now, my programs are running in production and works just fine if we don;t have any issues with oracle server (database server down etc.).
    My question is if the database server goes down for any reason, my SQLRPGLE progam starts giving me cursor not open errors, the actual error is as follows:
    Connection to relational database HJAWCD1 already exists.
    ARDUPAR: ARDUPAR: rc=-1(OCI_ERROR) from OCIStmtExecute when asking for
    Describe-Info
    ARDUPAR(1): ORA-03114: not connected to ORACLE
    ARDAROC: rc = -1 from parse
    SQLSTATE class unknown - SQLSTATE 72000, SQLCODE -969.
    Cursor SEHOST not open.
    Cursor SEHOST not open.
    Cursor SEHOST not open.
    So although, the connection exist between the AS400 and Oracle server as suggested from first statement, but then the cursor is giving me problems of not opening.
    what I would like to know is how do I check in my SQL statement the error and somehow reconnect and open the cursor again.
    Please help in this regard, since I am not finding any help from iseries world becuase no one seems to have knowledge about this product that we have installed and I don;t have too mcuh of documentation on the product nor do I have any sample handling messages program using RPGLE between oracle and AS400 using the product.
    Regards
    Farhan Qadri

    It's been over a decade since I worked on an AS/400 (iSeries), but I've seen an ORA-03114 is thrown from the OCI when you've attempted an illegal statement. That error typically means you are no longer connected to the database. I'd guess that your new application has a defective RPG error management routine.
    Good luck, Michael

  • My Microsoft Word is not opening - error 1712

    my Microsoft Word is not opening - error 1712 - Mac OSX version 10.6.8 - processor 2GHz Intel Core 2 Duo - Memory 2 GB667 MHzDDR2 SDRAM
    my memory is been nearly used up, I have withdrawn 2 GB of archives so that I can continue using my machine, as I am down in Brasil and yet could not find more memory, so I have asked a friend of mine who lives in London to buy me 5 GB more. But as I have done that, once I tried to open an archive, it didn't do so, & I got the 1712 message - I thought of re-iniciating the PC, but I just have a big work document down at the dock, which I cannot loose. I am afraid that if I re-start the Pc I wil loose the document. So I need a way to get the document out of the dock to a file, before I re-start my machine.

    Following thread could help you resolve the issue.
    Word is not opening error -1712 ,can anyone help please

Maybe you are looking for

  • Adding value to List and Reading the list on submit

    Hi all, I want to create a page where it would have two region. Region 1 --> Contain the list of employee (report region) This will have a search box with java script enabled to perform search without submitting the page. And a link on the employee n

  • Rebate- Mass  settlement

    Dear Friends In my company no of customer is there with them we have make agreement of 1500. I want to do final settlement. 1. How i will do final settlement it massly 2. For final settlement we need agreement status should "B" for that how i will ch

  • Script errors with Weatherbug, not related to "unresponsive" problem

    This script problem with Weatherbug has been going on forever. It is not the "unresponsive" script error problem. I get repeated messages asking me if I want to continue running scripts. ( followed buy the error message {invalid etc}) Responding "yes

  • Question about this case statement...Never seen it written this way

    I have this case statement written by a developer and i am trying to understand what he was trying to accomplish with writing it in this manner CASE t_CELL                 WHEN 'XML' THEN                     'Mods'                 ELSE               

  • Compressing data when written to disk not when written to cache

    I am doing a lot of compression before the data is written to the JE. This compression will have lots of CPU overhead. I was wondering when the data was stored to the JE cache it could be uncompressed but when the JE decided to persist that data I co