File deleted from /oracle/ZPQ/sapdata2/undo_1

Hi,
I have deleted the undo.data1 from the path /oracle/ZPQ/sapdata2/undo_1.
However, we created a new tablespace and some losses were covered.
But, now we are not able to create project from the DTR. Whenever we try to do so, an error is shown 'internal VFS error' and a project is created with some changes lost in the code.
In the DTR logs, some statement is there like ' not able to locate undo.data1 file '.
it seems af if both the DTR and CBS have gone out of sync and we are also not able to create a new track with the latest backup of .sca Software Components.
Please advise how to handle this situation.
Regards,
Nikhil

resolved

Similar Messages

  • How to get the file name from Oracle B2B 10g

    Hi My requirement is I am getting a CSV file from Trading partner, I am using oracle 10g b2b to translate the data.
    In my BPEL 10g I am using AQ adapter to get the message from IP_IN_QUEUE.
    Now I want to get the file name Eg: SampleFile.dat of the CSV file in my BPEL process.
    I tried using the b2b.filename property in the receive activity and it is not getting the file name.
    <sequence name="main">
        <receive name="Receive_Note" partnerLink="GetB2BNote"
                 portType="ns1:Dequeue_ptt" operation="Dequeue"
                 variable="Receive_Note_Dequeue_InputVariable"
                 createInstance="yes">
                 <bpelx:property name="b2b.fileName" variable="WriteFileName"/>
        </receive>
      </sequence>
    Can you help me to get the file name from Oracle b2b 10g ?
    Thanks,
    b2b user

    Hi My requirement is I am getting a CSV file from Trading partner, I am using oracle 10g b2b to translate the data.
    In my BPEL 10g I am using AQ adapter to get the message from IP_IN_QUEUE.
    Now I want to get the file name Eg: SampleFile.dat of the CSV file in my BPEL process.
    I tried using the b2b.filename property in the receive activity and it is not getting the file name.
    <sequence name="main">
        <receive name="Receive_Note" partnerLink="GetB2BNote"
                 portType="ns1:Dequeue_ptt" operation="Dequeue"
                 variable="Receive_Note_Dequeue_InputVariable"
                 createInstance="yes">
                 <bpelx:property name="b2b.fileName" variable="WriteFileName"/>
        </receive>
      </sequence>
    Can you help me to get the file name from Oracle b2b 10g ?
    Thanks,
    b2b user

  • How do i recover a file deleted from iCloud on my iPad

    how do i recover a file deleted from iCloud on my iPad? It's a pages document

    check at https://www.icloud.com/ to see if the file is saved there in documents or iCloud drive
    if not check under settings > iCloud > storage > manage storage and see if there is a backup of the iPad from when the document was still saved
    if there is restoring your iPad form that backup may recover it
    Restore your device from an iCloud or iTunes backup - Apple Support
    if there is not then check to see if it is still saved on any other computers or devices to see if it is saved there
    good luck

  • PDF file created from Oracle Report is attached wrongly

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2, document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

    The code looks absolutely good. I have the same code working in my system. Only difference is I use TRUE and DBMS_LOB.Session for the BLOB I use to read from the BFILE.
    I can suggest one more way to handle to binary attachments if you are on Oracle 9i DB are later versions.
    procedure attach_document (p_document_id   in varchar2,
                               p_display_type  in varchar2,
                               p_document      in out nocopy clob,
                               p_document_type in out nocopy varchar2)
    is
      l_nid        number;
      l_directory  varchar2(100);
      l_filename   varchar2(100);
      l_content_type varchar2(100);
      l_src_offset binary_integer := 1;
      l_dst_offset binary_integer := 1;
      l_err_msg    varchar2(100);
      l_amount     number;
      l_bfile BFILE;
      l_blob  BLOB;
      l_clob  CLOB;
      file_not_found exception;
      pragma EXCEPTION_INIT(file_not_found, -22288);
    begin
      l_nid := to_number(p_document_id);
      l_directory := trim(wf_notification.GetAttrText(l_nid, 'ATTR_DIRECTORY'));
      l_filename := trim(wf_notification.GetAttrText(l_nid, 'ATTR_FILENAME'));
      l_content_type := trim(wf_notification.GetAttrText(l_nid, 'ATTR_CONTENT_TYPE'));
      l_bfile := BFILENAME(l_directory, l_filename);
      dbms_lob.createtemporary(l_blob, true, dbms_lob.Session);
      dbms_lob.createtemporary(l_clob, true, dbms_lob.Session);
      begin
        dbms_lob.FileOpen(l_bfile, dbms_lob.File_Readonly);
      exception
        when file_not_found then
          l_err_msg := to_char(sqlcode)||' - Attachment File "'||l_filename||'" is not found.';
          raise_application_error(-20002, l_err_msg);
      end;
      dbms_lob.LoadBLOBFromFile(l_blob, l_bfile, dbms_lob.LobMaxSize, l_src_offset, l_dst_offset);
      dbms_lob.FileClose(l_bfile);
      -- Encode the BLOB content to BASE64 and attach to notification  
      wf_mail_util.EncodeBLOB(l_blob, l_clob);
      l_amount := dbms_lob.GetLength(l_clob);
      dbms_lob.Copy(p_document, l_clob, l_amount, 1, 1);
      -- Mention an appropriate Content Type so that Notification System
      -- understands the attachment content
      p_document_type := l_content_type||'; encoding=base64; name='||l_filename;
    end attach_document;Here I read the BLOB from the filesystem and base64 encode it before giving it to the Mailer. Please note that this is a PLSQLCLOB based attachment as against PLSQLBLOB that you are using.
    Thanks - Vijay

  • PDF file created from Oracle Report is created wrongly using dbms_lob

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2,
                                                                                         document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2,
                                                                                         document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

  • Files "Deleted from Disk" not deleted

    I was under the impression that this problem related to the appearance of "Ghost" drives (duplicate drives appearing in the LR after I edited a file. The folder duplications are no longer a problem in LR 2.1
    HOWEVER, when I use the option "delete from disk" (vs. remove)these files are not getting deleted from my hard drive. They reappear on the next folder synchronization I run.
    I am either asking for input on how to make deletions stick and/or requesting that Adobe look into this before releasing the release version of 2.1
    Thanks - Kevin
    System info:
    LR 2.1
    Windows Vista Home Premium
    Quad Core PC with 4GB RAM
    1 TB "RAID 5" system drives (4 of them make up the 1 TB)

    Thanks for the suggestions but they didn't work:
    1- Cleared preferences by hitting the various reset to factory buttons. Then closed and restarted LR. Is there another way to do this?
    2- The foloder quantity goes down when I delete and goes back up when I synchronize
    3- File manager shows the same number of files as LR BEFORE I delete and then shows more AFTER I delete. Then, after synchronizing they are back to equal.
    Finally, I tried deleting a file in windows explorer to see its effect. It immediately showed as missing in LR. I synchronized and that file was deleted.
    Any other ideas?

  • Unzipping the file downloaded from Oracle forum

    Dear All,
    Hope im in the right discussion room.
    I downloaded the Oracle 11g from Oracle Forum (special thanks to Oracle) but i also saw that it has a special unzipping software to unzip the downloaded files.
    Can i use the WinZip to unzip or any other softwares to be used to unzip.
    I am using Windows 7 ultimate.
    Any help would he highly appreciated.

    Hi;
    >
    Hope im in the right discussion room.
    I downloaded the Oracle 11g from Oracle Forum (special thanks to Oracle) but i also saw that it has a special unzipping software to unzip the downloaded files.
    Can i use the WinZip to unzip or any other softwares to be used to unzip.
    I am using Windows 7 ultimate.If your download file extantion is zip than yuo can use Winzip wihtout any issue
    Regard
    Helios

  • Change windows file permission from Oracle PL/SQL

    Hi
    I am using APEX4.2 to produce a graph ( by AnyChart) and used the simple pop up windows to save the graph to a PNG image file called test.png in the windows location ( being X:\APEX_CHART where X is pointing to windows server /abc/Transfer/APEX_CHART/ ).
    Now I wanted to be able to change the permission of this windows file to be private to one group and not available to other public users.   Can I achieve this via API from Oracle PL/SQL ?
    Thanks

    sus2013 wrote:
    I am using APEX4.2 to produce a graph ( by AnyChart) and used the simple pop up windows to save the graph to a PNG image file called test.png in the windows location ( being X:\APEX_CHART where X is pointing to windows server /abc/Transfer/APEX_CHART/ ).
    That doesn't look like a Windows path. Do you mean \\abc\Transfer\APEX_CHART?
    Now I wanted to be able to change the permission of this windows file to be private to one group and not available to other public users.   Can I achieve this via API from Oracle PL/SQL ?
    Is the database on the same server as \\abc\Transfer\APEX_CHART?

  • Is there a way to recover files deleted from a time machine backup

    My time machine backup drive was full so I wanted to delete some of the Virtual Machine files created with VMWare Fusion from the time machine backup.  I accidentally deleted them all, instead of just some older ones, so I want to know if there's a way to recover or salvage the files I deleted from time machine.

    If is possible do you have a Time Machine backup, What type of files are missing?

  • Is there a way to recover files deleted from icloud?

    I inadvertently deleted a Pages document from my iPhone and it has disappeared from my iPad and iCloud.  Is there any way to recover it?

    Deleting won't make the files erased permanently.As long as those files are not overwritten by new data, it's highly possible to recover them.Those deleted files is still stored on the hard drive, it's just invisible or inaccessible.And the most effective
    way is to rely on some data recovery programs.
    Try this one called Tenorshare Data Recovery. I also encountered the same trouble before.Finally this program helped me recover the file I accidentally deleted from the recycle bin successfully.
    One tip here:Your files will be recovered into the recycle bin.So you'd better not to delete any other files into the recycle bin.Once the deleted files were overwritten by new deleted files,they are all historys!
    You can get it from:  http://www.any-data-recovery.com/product/index.htm

  • Excel file deletes from Shared location

    While accessing an excel file from a shared location, if the file hangs during opening or saving and if I go to Task Manager and end the EXCEL process, the file gets permanently deleted from its location.
    I have faced this issue multiple times. What should I do to avoid this?

    Hi
    This is the forum to discuss questions about Microsoft Excel develop. For your question is not about Excel develop, I recommend post
    the question to the TechNet forum for Excel
    https://social.technet.microsoft.com/Forums/office/en-US/home?forum=excel
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners
    who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can i find an excel file deleted from the server

    In our office we all have access to the main server. Recently a document that we need was deleted from the server. It's not in the trash. Can and how would we be able to find and recover this deleted document? Specifically I am looking for an excel document, and I already checked the recent docs on excel.
    thanks!

    Have the admin for the server restore the file from the backup

  • Specific Files Deleted from All Time Machine Backups

    Greetings all!
    I hope you may be able to solve my problem here. Today I purchased a new late-2013 iMac 3.2 GHz i5, running OSX 10.9.3. I've had several computers this year and chose not to restore from my many backups, but rather transferred all documents, data, settings, etc. from my latest backup (completed today, which I know had all the original files) via Migration Assistant. Upon completion, I noticed that many of my folders and files were missing! My first response was to simply check my month-long list of backups for those specific folders and they were all missing as well. This came as quite a scare, as I run a design business and this is my main backup. Note: these are not files that would be on the list that Time Machine skips over; they're just my regular files (docs, pics, pdfs, etc.).
    Now, in a few of the backups, in my User folder, there are more folders than others, along with a few seemingly random files (i.e. company A -> contracts -> onlyme.pdf), but the rest of the files are missing! Some backups include the main Music, Pictures, Documents, etc. and some only include a few. I've verified and repaired the disk, but this only made more files vanish from the backups! I have hidden files visible, which also has not helped. Is there something I'm missing? Disk permissions on Disk Utility are greyed out and I don't know of any other options. Can anyone advise? Are these files simply lost forever?
    Thanks in advance!
    Tim

    If repairing the volume caused more files to disappear, then the drive is malfunctioning and must be replaced. That's why one backup is not enough to be safe. You need at least two independent backups on different storage devices.

  • FILE DELETE FROM FOLDER

    HI ALL,
    I AM USING THIS METHD FOR DELETING THE FILE FROM THE
    FOLDER  BUT I DONT KNOW WHAT VALUE SHULD I PASS TO THE RC.
    CALL METHOD cl_gui_frontend_services=>file_delete
      EXPORTING
        filename             = 'E:\FOLDER1\TEST1.XLS'
      changing
        rc                   =
    THANKS AND REGARDS,
    SUGEET.

    Hi,
    You should declare a local variable of TYPE I and pass it to RC. RC is nothing but a return code set by system upon successful deletion or otherwise of the file that you have specified for filename.
    Some thing like the following,
    DATA: lv_subrc TYPE i.
    CALL METHOD cl_gui_frontend_services=>file_delete
    EXPORTING
    filename = 'E:FOLDER1TEST1.XLS'
    changing
    rc = lv_subrc.
    IF lv_subrc NE 0.
    ****Deletion failed..
    ENDIF.
    Hope this helps..
    Sri
    Message was edited by: Srikanth Pinnamaneni

  • File Deletion from PL/SQL using Java

    I'm able to delete a file on the OS from PL/SQL by calling a java class. But there is a problem if I am trying to delete any file located on any machine othere than the one on which the Database is hosted.
    Can anyone tell me how delete a file which is on anothere machin using PL/SQL with Java ?

    You can use a FTP Call: http://www.savarese.org/oro/software/NetComponents.html

Maybe you are looking for

  • I backed up my old profile from Windows XP to my new Windows 7 PC, but it seemed to downgrade Firefox

    So my XP computer's power supply died a few weeks ago so I got a new computer. Just replaced the powersupply in the old PC to get my old files. I tried to back up my Firefox profile from my old computer to the new Windows 7 computer, which I've had r

  • Some questions from a new dba.

    Hello. I'm on a quest to learn Oracle. But in learning I've hit acouple of things that seem confusing or contradictory. Maybe someone more experienced can help me understand thse. 1) When you mount but don't open the database, you'll get a "ORA-01219

  • Importing war file in NWDS

    Hi All, i wanna import a war file into netweaver developer studio, can anybody help me to achieve this. **valuable answers will awarded wid points. Thank you, venkat

  • Batch Specific UoM

    Finished products goods receipt is made in litres(BaseUoM).WE also have batch specific unit of measure-Kg.Is there any standard report available to see the finished products batches along with the batch specific unit of measure quantity

  • DB connect. There is no answer at loading

    All hello I'm sorry for my bad English We have a connection with source  system MSSQL(DB connect). In transaction RSDBC by the button "Display Table Contents " Data in the table show But at loading in info-source in the monitor the yellow indicator a