Delimited_hdr-=no in oracle 9i causes remove  header from file

i am converting my output of reports into excel file i am using desformat=delimiter and delimited_hdr=no if i use this in my command line i got output without header and if i do delimited_hdr=yes then repetitive header displayed. how to overcome that problem i am using oracle 9i

Hello All,
I tried the resize procedure but the corruption doesn't cleared.
SQL> ALTER DATABASE DATAFILE 'E:\SC\SC12.1\DATABASES\ORACLECONFIG\SYS1NM45.ORA' RESIZE 246 M;
Database altered.
SQL> ALTER DATABASE DATAFILE 'E:\SC\SC12.1\DATABASES\ORACLECONFIG\SYS1NM45.ORA' RESIZE 245 M;
Database altered.
SQL> ALTER DATABASE DATAFILE 'E:\SC\SC12.1\DATABASES\ORACLECONFIG\SYS1NM45.ORA' RESIZE 244 M;
ALTER DATABASE DATAFILE 'E:\SC\SC12.1\DATABASES\ORACLECONFIG\SYS1NM45.ORA' RESIZE 244 M
ERROR at line 1: ORA-03297: file contains used data beyond requested RESIZE value
SQL> ALTER DATABASE DATAFILE 'E:\SC\SC12.1\DATABAES\ORACLECONFIG\SYS1NM45.ORA' RESIZE 400 M;
Database altered.
Can you please let me know how to recover corrupted Block or how to recover the corrupted file only.
Thanks
With Regards
Hemant Joshi.

Similar Messages

  • Removing date from file name

    Hello,
    Is there any way to move all the file from one location to another and remove the datepart from filename.
    for eg:- if file name is abc_20150411.xls change to abc.xls. if file name does not contain date part then ignore it.
    Can any one suggest if its possible.
    Thank You

    Hi ,
    I have created package based on your question and decribed in detail in below post:-
    https://msbitips.wordpress.com/2015/04/12/ssis-removing-datestamp-from-file-name-when-moving-from-one-location-to-other/
    You need package code, just add comment in this thread.
    Thanks
    Prasad
    Mark this as Answer if it helps you to proceed on further.

  • How to remove DRM from files

    I thought iTunes Match was supposed to remove DRM from files

    royfrommanhattan wrote:
    I thought iTunes Match was supposed to remove DRM from files
    It doesn't actually  "remove" anything.  But it does allow you to delete the DRM versions and download non-DRM versions, if available.
    Go to this document, and read the section on "Can I upgrade my previously purchased music to iTunes Plus?":
    http://support.apple.com/kb/HT1711

  • How do i remove header from a txt file

    Hello. I have an aquisition file and this remove_headers.vi does not remove all my header. I m attaching the file, the remove_header.vi and the file after removeing header.
    Pls help.
    Thanks a lot... 
    Solved!
    Go to Solution.
    Attachments:
    file.txt ‏223 KB
    remove_headers.vi ‏40 KB
    file_after1.jpg ‏231 KB

    Here you go. You should read as string to get the whole header, then delete the first six rows of the array(as previously mentioned). Finally write it back to a new file.
    Regards,
    Even
    Certified LabVIEW Associate Developer
    Automated Test Developer
    Topro AS
    Norway
    Attachments:
    remove_headers_mod.vi ‏12 KB

  • Remove header from a csv output in Bipublisher

    Hi All,
    I am generating a csv output from a Bipublisher report. The problem is I am getting the header (Column Names) in the extract.
    I hAve removed the column name header from the rtf template.
    Please let me know if we have to change any setting anywhere.
    Thanks,
    Krishna

    Hi
    CSV output wont consider the rtf template it will direct extract of the columns you have in the dataset of a datamodel.
    i dont think you can remove the column headings . if you don't want column headings you can try excel template or etext templates.

  • Remove words from file

    Hello, I have created a class which is supposed to be an array of stopwords (words that I want to remove from a file).
    Then I want to create another class which reads in a file. It reads the file. Then it looks through the array of stopwords. If it encounters a word in the file which is the same as the word in the array, it replaces it with nothing.
    I want this class to be separate from the main class so that in the main class,I can specify any file, and the stopwords will be removed. Here is some code, thanks
    import java.io.*;
    import java.util.*;
    public class StopWordArray {
         //This class represents an array of stopwords
         //The stopwords are read from a text file into an array
         private String [] tokens;
         //constructor
        public StopWordArray(){          
             try{
    //         open input stream
             File inputFile = new File("/home/myrmen/workspace/Chisquare/extract/stopWordList.txt");
             InputStream inStream = new FileInputStream(inputFile);
             InputStreamReader inreader = new InputStreamReader(inStream, "8859_1");
             BufferedReader reader = new BufferedReader(inreader);
            String line;
            //Fills array
            while ((line = reader.readLine()) != null) {
            StringTokenizer st1 = new StringTokenizer(line);
            int numberOfElements = st1.countTokens();
             tokens = new String[ numberOfElements ];
            int index = 0;
             while( st1.hasMoreTokens() )
               String element = st1.nextToken();
             tokens[ index ] = element;
                       index ++;
            reader.close();
           catch (Exception ex) { ex.printStackTrace(); }
    import java.io.*;
    import java.util.StringTokenizer;
    public class RemoveStop {
         //Fields
         private StopWordArray myArray = new StopWordArray();
        private String myString;
         //Constructor
        public RemoveStop(String myString){
    import java.io.*;
    public class Main {
         public static void main(String[] args) {
              StopWordArray theWords = new StopWordArray();
            theWords.printArray();
            String file = "/home/myrmen/workspace/Chisquare/extract/Turing";
            RemoveStop remove = new RemoveStop(file);
    }

    Ok, here is an update:
    private String [] tokens;
       //Method which returns each element in the array as a string
        public String word()
        String word = null;
        for(int i = 0; i < tokens.length; i++)
        word = tokens.toString();     
    return word;
    public void readFile(){
    String output = null;
    StringTokenizer st1 = new StringTokenizer(aString);
    while(st1.hasMoreTokens())
    String element = st1.nextToken();     
    //System.out.println(myArray.word());
    if(element.equals(myArray.word()))
    output = element.replaceAll(myArray.word(), "WAY");
    //else{System.out.println("ERROR");
    System.out.println(output);
    But with the readFile() method, I only access the LAST element of the array. How can I iterate through the whole array, and search for the words that are stored in the array in the input file?

  • How to remove header from B2C webshop from internet sales application?

    Hi All,
    I am working on B2C webshop. I need to design a user registration page which has only workarea section and no other section in the page. I have been able to remove the header contents, but the area in which header jsp was placed is looking empty which looks awkward. I need to occupy the whole page with workarea only. How to do it? Do we need to do any changes in layout-config.xml? If so, please tell me how to do the changes.
    TIA.
    Regards,
    Serene

    Hi Serene,
    Please don't make any changes into layout-confix.xml directly.
    Please try below two options.
    1. First try to play with  \b2c\root\mimes\b2c\stylesheet.css stylesheet.
    2. If you don't get any luck then please try to find any property in B2C's XCM.
    Please update.
    Thanks,
    Hamendra

  • How to remove header from sap transaction iview using html

    Hi ,
    I have created SAP transaction iview for pv34 for SAP GUI for HTML .
    FRom iview how to remove hear part .
    i.e
    menu ,back,exit,cancel............
    I want to remove this complete header .
    What property i need to work for ..
    Thanks,
    Surekha .

    hi surekha,
    check these wiki's regarding the similar issue
    *[Employ SAP GUI for HTML instead of an Internet service |http://wiki.sdn.sap.com/wiki/display/HOME/Article%20-%20Employ%20SAP%20GUI%20for%20HTML%20instead%20of%20an%20Internet%20service]
    [Howto customize the webgui header area |http://wiki.sdn.sap.com/wiki/display/HOME/Howtocustomizethewebguiheader+area]*
    Regards,
    Maheshchandra

  • How do I remove header from FORM portlet?

    I am using a daymanic page to open several portlets. I got everything working except for...
    I am opening a form as a portlet and cannot get rid of the srupid header with the Oracle logo.
    ROTARY.wwv_component_control.run_as_portlet(p_module_id =>
    1861048119); works great but shows the header
    ROTARY.wwv_component_control.run_as_portlet(p_module_id =>
    1861048119,p_show_header =>'No');
    gives me the error:
    ORA-06550: line 1, column 13704:
    PLS-00306: wrong number or types of arguments in call to 'RUN_AS_PORTLET'
    what is the correct syntax!
    sand where would I find it anyway!

    Hi,
    This is a bug and has been fixed. It will be available with 30984.
    Thanks,
    Sharmila

  • Remove header from output of pipeline

    I am trying to get the update time of the most recent .vhd in a folder.  I have:
    get-childitem "*.vhd" | sort-object LastWriteTime | Select-Object LastWriteTime
    My issue is I am trying to get rid of the header.  How do I do that?  I tried the option with format-table but was not able to set the result to a variable in a script.
    $testme = get-childitem $dstPath\$guestName\*.vhd | sort-object LastWriteTime | Format-Table -HideTableHeaders  LastWriteTime
    writehost $testme

    This usually works, sometimes doesn't:
    get-childitem "*.vhd" | sort-object LastWriteTime | Select-Object -ExpandProperty LastWriteTime
    The 'ExpandProperty' parameter is supposed to be used for expanding properties that are collections, but if the property is a scalar value it will just print it out without the header. Odd, but works.
    A more direct way is:
    get-childitem "*.vhd" | sort-object LastWriteTime | ForEach-Object {$_.LastWriteTime}

  • Regex: Remove Date from File Names Sitewide

    I'm trying to avoid  hundreds of 301 redirects across my site. I have two kinds of links that need a regex search string which will simply remove numbers that precede text within html files.
    The existing .html files are named with text only (e.g., name.html), whereas the .jpg files have the date and text (e.g., 130415name.jpg). But the new html engine I am using creates files named like the .jpg files (e.g., 130415name.html).
    I can strip the numbers out of file names in Name Munger (Strip Characters > Characters: 0123456789).
    Now I need a regex search string that will strip the same characters within the html files.
    The changes would look like this:
    1.
    Before:
    <ul>
    <li class="previous"> <a class="paginationLinks detailText" href="../content/090914name.html">Previous</a> </li>
    <li class="index"> <a href="../index_4.html" class="detailLinks detailText">Index</a> </li>
    <li class="next"> <a class="paginationLinks detailText" href="../content/090125name.html">Next</a> </li>
    </ul>
    After:
    <ul>
    <li class="previous"> <a class="paginationLinks detailText" href="../content/name.html">Previous</a> </li>
    <li class="index"> <a href="../index_4.html" class="detailLinks detailText">Index</a> </li>
    <li class="next"> <a class="paginationLinks detailText" href="../content/name.html">Next</a> </li>
    </ul>
    2.
    Before:
    onclick="window.location.href='content/020922name.html'"
    After:
    onclick="window.location.href='content/name.html'"
    What is the regex search string for these examples (any numbers preceding any letters preceding .html)?

    Set the Search option to Source Code
    In the Find field:
    (content/)\d{6}(\w+\.html)
    In the Replace field:
    $1$2
    Select the "Use regular expression" checkbox.

  • [solved]remove backslashes from file names?

    Hi!
    I have a lot of files that contain backslashes in file name, spread over many many folders.
    How do I remove that character from all file names? The approaches / scripts / programs I usually work with can't handle the invalid file names (e.g. loose the '\' and then 'cant stat()' -.-").
    Thanks!
    edit: Argh... now I've got copies of half of the files without the "\" in the same folders, because copying did work on most but deleting only on some... also multiple \\\ because I messed up one sed line. and "echo" failed to warn me about the result, just dropping a few \ while mv didn't... or something. So confused.
    Last edited by whoops (2011-02-22 00:22:58)

    sisco311 wrote:#!/usr/bin/env bash
    while IFS= read -rd '' file; do
    dirname="${file%/*}"
    basename="${file##*/}"
    mv --backup=numbered -- "${file}" "${dirname}/${basename//\\/_}"
    done < <(find /full/path/to/dir -depth -name '*\\*' -print0)
    Thanks, that did it!
    Don't know what exactly I've been doing wrong, but it seems not to happen any more since I try to do stuff with "while, read, ${}"  instead of "for, $(), echo, sed"
    pulce wrote:Not sure that's the point, but backslash is an escape
    Yes, I know, that was the problem. That's why those stupid things always keep either disappearing or multiplying - I guess I just suck at keeping track of what program handles them which way and depending on what.
    Last edited by whoops (2011-02-22 00:15:30)

  • [solved] Remove words from file using a list variable?????

    Is it possible with bash, to create a script that will scan a text file and remove words that are set in a list?
    I have a file with words like so:
    word1
    word2
    word3
    I would like to be able to set script to scan file and remove only the words (and spaces left) that are in a list,
    that is inside script. Is this possible???
    Last edited by orphius1970 (2010-04-22 12:05:45)

    sorry I am new to scripting and Have NEVER used sed.
    Can you explain a little better?
    Ok i tried it and understand a little better. However,
    It left space behind. How do I fix that?
    Also, how do I get it to save the file with the changes?
    Sorry If I seem so noobie
    Last edited by orphius1970 (2010-04-22 11:27:18)

  • Printing Oracle Reports with values obtained from file using IO

    Hi All,
    We have decided to change the report writer tool from Brio SQR to Oracle Reports 6i. The design using Brio SQR was such that we used to populate all the values to be printed in a text file and then we use to populate the values in the BRIO reports using this file as an input.
    We don't want to make many changes to the design at this stage. Can anybody suggest how can we use the text file as input to populate the different fields in the Oracle Reports.
    Thanks in advance.
    Regards,
    Milind

    Hi Miliand
    Text Datasoucre is a Reports 9i feature. You can get the information on the feature overview at
    http://otn.oracle.com/products/reports/content.html.
    You will find the complete 9I Reports reference manuals on OTN soon
    Thanks
    The Oracle Reports Team

  • [SOLVED] Removing brackets from file - python/sed

    I wrote a small python-script in order to do some manipulation of columns. I'm quite unexperienced, and i stumbled upon a problem i didn't manage to solve:
    When the script is finished with the data manipulation, everything is stored as data type "list", which implies the following form when i output the data with print: ['2321321', '321321321', '55555']. I don't want the brackets and ' (since i want to import the data into a spreadsheet). I've tried to make a loop to print out list content, but then i get everything in one column, which i don't want. (Something like: for l in line: print l )
    Is there a way to print lists without the brackets and '? I tried to solve it with sed, but my knowledge of that program is zero, and no success. My solution was to open the output in a text editor and use search and replace, which is very tedious work for 50 files.

    I think the quicker way is using the join() method:
    [andyr@roo ~]$ python
    Python 2.4.1 (#1, Apr 5 2005, 11:00:51)
    [GCC 3.4.3] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> items = ["one", "two", "three"]
    >>> allitems = " ".join(items)
    >>> print allitems
    one two three
    Of course, you could have "," or "t" (tabs), etc to delimit the columns rather than the space in the above example.

Maybe you are looking for

  • I cannot get Firefox to update

    I have Linux Ubuntu 10.04 LTS. I need to upgrade to Mozilla Firefox 5.x The TAR opens, but the contents will not install nor do your instructions or website tell me how. We can safely assume I am not a super cool computer geek, therefore I know nothi

  • Palm OS and Palm WinMobile device support and downloads

    Palm OS and Windows Mobile devices are all considered "legacy" or "historical", which means that there are very few support resources available. Other than this Palm OS/WinMo Hardware and Software board, the available support resources including down

  • Trashed desktop icon and files

    Please don't ask why or how - but I have trashed the desktop icon along with its files. It is the icon seen on the left after clicking on the desktop hard disk icon. It is with other icons like documents, movies, music, etc. I have tried to removed i

  • Emails setting Problems BB Curve 8310

    Hi, I deleted all of my BB to start again fresh. But now I realize that I don't have the Email Setting Aplication so I am no longer able to configure my Email Accounts. How Can I get this application Back? Thanks!!!

  • Restored phone won't transfer pictures

    I've recently sent my phone off & before it went I did a full back up onto my laptop. Now I've got my phone back & clicked on restore everything apart from my pictures has been put back on. There isn't an option in my itunes to select or deselect the