How to remove bad file?

hi
I am creating external table to import csv file into table...I put csv file in this directory(c:\temp1\hr.csv)...while importing, the bad file and text document are created..Actually the client does not require this....Can anyone say how to remove those files while importing?
Fazila

First of all bad file contains those record information which is rejected for any specific reason. So, you can get some valuable information regarding the rejected records. But, still if you don't want to keep it - then you can do it with a java based procedure. I don't thinki you can do it directly through any oracle procedure. Because, you are about to access the o/s system files. I don't think that can be done directly using Oracle Pl/SQL - which i'm not sure.
Regards.
Satyaki De.

Similar Messages

  • How to remove preinstalled files of adobe photoshop from my mac mini so that i can install a new version of the same software.The previous version was removed using the app cleaner software.Could not continue installation bcoz of earlier files

    How to remove preinstalled files of adobe photoshop from my mac mini so that i can install a new version of the same software.The previous version was removed using the app cleaner software.Could not continue installation of the new version because of the existance of files from the previous version.plz help

    What "app cleaner software" ? I ask because installing Photoshop over a previous version has never been a problem. Perhaps your difficulty stems from another source, eg. "cleaner software" ?
    If you look in your hard drive, at the root level there is a Library. In there is a folder called Application Support, and in that you will find a folder called Adobe. Files from your previous version are there.
    However, I urge you to call Adobe support to make sure you are not doing anything that would mess up other Adobe applications.
    http://www.adobe.com/support/connect/connecthostedsupport.html

  • File Dialog - How to remove all files pattern in LV 8.x

    How to remove "all files" pattern in LV 8.x in the file dialog.
    Is it possible?
    Thanks
    Dany
    Dany Allard

    If it is a security issue, you will probably need to implement a custom dialog and actively filter for file types.  No matter what pattern you have showing, the user can type a pattern into the dialog and get anything they want.  In addition, file extension is not sufficient to determine file type.  You should probably check the file itself to ensure it is an HTML file and does not have any embedded nastiness.
    Fortunately, custom dialogs are easy to make.  Using the event structure, you can filter inputs as well, so that only HTML files will be accepted.  Good luck.  Let us know if you need more help.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • How to Resolve "Bad File Handle" Problem

    I am using Adobe Acrobat 9.0 and inadvertently have deleted Distiller from my computer. When trying to save an edited PDF, I get a message "Cannot save file.  Bad File Handle".
    What shall I do to resolve my problem?  Is this a result of deleting Distiller?  Thank you.

    Hi festuss,
    Can you please let us know how you removed Adobe Distiller from your computer. Also, please let us know the Operating System and the exact version of Adobe Acrobat 9.
    This issue can be related to removing Distiller. You can try repair or uninstalling and re-installing Adobe Acrobat.

  • How to make button to format a HardDrive or USB, How to remove all files from folder, and How to delete a process in listbox with a textbox?

    Hello!
    Here's the question with explaniation: How can i format the USB or Drive by clicking a button what's meant for it?
    and the second question what's also in vb.net: How can i remove all files from folder ? 
     Here's the Look of program: *
    Using the PC button, it will delete the free space of the PC, do you guys/girls know where it's location?

    Example Code:
    Imports System.Runtime.InteropServices
    Imports System.IO
    Public Class Form1
    Dim CBoxDrives As New ComboBox
    WithEvents FButton As New Button
    <DllImport("shell32.dll")> _
    Private Shared Function SHFormatDrive(ByVal hwnd As IntPtr, ByVal drive As UInteger, _
    ByVal fmtID As UInteger, ByVal options As UInteger) As ULong
    End Function
    Private Enum SHFormatFlags As Integer
    SHFMT_ID_DEFAULT = &HFFFF
    SHFMT_OPT_FULL = &H1
    SHFMT_OPT_SYSONLY = &H2
    SHFMT_ERROR = &HFFFFFFFF
    SHFMT_CANCEL = &HFFFFFFFE
    SHFMT_NOFORMAT = &HFFFFFFD
    SHFD_FORMAT_FULL = 0 ' full format
    SHFD_FORMAT_QUICK = 1 ' quick format
    End Enum
    Private Sub FButton_Click_1(sender As System.Object, e As System.EventArgs) Handles FButton.Click
    If CBoxDrives.Text = "" Then
    MsgBox("No Drive Selected")
    Exit Sub
    End If
    Dim Iresult As ULong = SHFormatDrive(CType(Me.Handle.ToInt32, IntPtr), CUInt(Asc(CBoxDrives.Text.Substring(0, 1)) - Asc("A")), CUInt(SHFormatFlags.SHFMT_ID_DEFAULT), 1)
    End Sub
    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
    Me.Size = New Size(200, 100)
    With FButton
    .Size = New Size(50, 25)
    .Location = New Point(5, 5)
    .Text = "Format"
    End With
    Me.Controls.Add(FButton)
    With CBoxDrives
    .Size = New Size(50, 25)
    .Location = New Point(75, 5)
    .DropDownStyle = ComboBoxStyle.DropDown
    End With
    Me.Controls.Add(CBoxDrives)
    Dim DrivesFound As Integer = 0
    Dim allDrives() As DriveInfo = DriveInfo.GetDrives()
    Dim d As DriveInfo
    For Each d In allDrives
    If ((d.DriveType = DriveType.Fixed) Or (d.DriveType = DriveType.Removable)) AndAlso Environment.GetEnvironmentVariable("SYSTEMROOT").StartsWith(d.Name) = False Then
    CBoxDrives.Items.Add(d.Name)
    DrivesFound += 1
    End If
    Next
    CBoxDrives.SelectedIndex = DrivesFound - 1
    End Sub
    End Class

  • How to Remove Jar File name from the screen of nokia 40 series

    hi
    i have the problem with running midlet.
    the jar file jame is always visible on the screen, how to remove that ?

    >
    Prasanna Kumar wrote:
    > Hi ALL
    >
    > I am using  file adapter and I what to create file name dynamically by acesssing PO number and time stamp from the payload using variable substution.
    > But the problem is I am getting ":" in time stamp field value and it is not acceptable for file name .
    > So could you please tell me a way that I can remove this ":" from that particular field value and create the file name dynamically.
    >
    > Note 1)Add Time stamp option will not help me as we require a time stamp of particular zone.
    > 2) Dynamic Configuration code is also not use full as I am using 1:n file creation
    does the time stamp with the ":" a part of your output file?
    else use a replaceAll function in your mapping and replace the : with empty string then use the value in the variable substitution
    Another option is use the normal BPM for 1: N message flow. The use a simple java mapping that will introduce a dynamic configuration and you can create the file name as you want. the java mapping will be used in the flow of messages from BPM to target system.
    ref: /people/shabarish.vijayakumar/blog/2009/03/26/dynamic-configuration-vs-variable-substitution--the-ultimate-battle-for-the-file-name

  • How to remove pdf files inside ibooks on mavericks OS

    Hi, I tried to delete PDF files in iBooks on Macbook Pro Mavericks OS , but it is also deleting in source file.
    how to remove PDF's in ibooks without deleting source file. please help
    regards,
    bpk

    I've not long worked out how to do basic things on my iMac but have had some coaching on other forums, as it goes this happened to me this morning.
    Inadvertently, I managed to get all pdfs into ibooks and faced similar "delete" problem, couldn't drag the files out of ibooks either: Accidentally I found all ibooks info in a library through finder, took a while but right clicking "move to trash"  got rid of them but not from pages/documents!
    Re-opening ibooks initially showed the pdfs still in place, except after double clicking one a message appeared telling me the file could not be opened, then immediately the remaining books were shuffled and pdfs disappeared - still in documents though, and able to open.
    Hope this helps, there may well be an easier way...

  • How to remove OTHER files on storage

    please help me remove the other files section. its higher than my apps and higher than system.
    1320 user

    PLease see the many posts around on this topic.
    Short version;
    Delete any file downloaded through apps like UCbrowser and YouTube Downloader and use storage schecker to remove temp files. Having Other storage be large is not bad by definition. No longer needed space will be released as it is needed for other apps..
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • I don't know how to remove the files stored as 'other'

    After transferring my ipod from one computer to another, the ipod capacity has increased with 'other' in orange on the summary pane. This has taken up about half the space on my ipod and I don't know what 'other' is!
    Please can someone advise how to remove this information as I only use my ipod nano for music and do not need any extra information to be stored. Many Thanks

    Other can be Album Artwork, Notes, Contacts, Firmware etc. or (and this doesn't apply to the iPod Touch or iPhone which don't have the option to be enabled for disk use), files that are on there if you are using the iPod as a removable storage device.
    If you feel that Other is being incorrectly reported then try restoring your iPod. Restoring will erase the iPod's hard drive, reload the software and put it back to default settings. Once the restore is complete follow the on screen instructions to name the iPod and automatically sync your songs and videos onto the fresh installation. Press Done and the iPod will appear in iTunes and start to sync. If you want to update manually or using selected playlists uncheck the box beside the sync automatically instruction and press Done, it will default to manual mode and you can choose whatever setting you like: Restoring iPod to factory settings with iTunes

  • How to remove jar file name from screen of nokia 40 series

    hi,
    anybody know please tell.
    jar file name always appear on the screen, while running the midlet in nokia 40 series siut.
    how to remove that.

    >
    Prasanna Kumar wrote:
    > Hi ALL
    >
    > I am using  file adapter and I what to create file name dynamically by acesssing PO number and time stamp from the payload using variable substution.
    > But the problem is I am getting ":" in time stamp field value and it is not acceptable for file name .
    > So could you please tell me a way that I can remove this ":" from that particular field value and create the file name dynamically.
    >
    > Note 1)Add Time stamp option will not help me as we require a time stamp of particular zone.
    > 2) Dynamic Configuration code is also not use full as I am using 1:n file creation
    does the time stamp with the ":" a part of your output file?
    else use a replaceAll function in your mapping and replace the : with empty string then use the value in the variable substitution
    Another option is use the normal BPM for 1: N message flow. The use a simple java mapping that will introduce a dynamic configuration and you can create the file name as you want. the java mapping will be used in the flow of messages from BPM to target system.
    ref: /people/shabarish.vijayakumar/blog/2009/03/26/dynamic-configuration-vs-variable-substitution--the-ultimate-battle-for-the-file-name

  • How to remove a file attachment.

    Helo.
    I write a plugin for the Acrobat 9 and can't find how remove a file attachment.
    Please, help.
    Dmitry

    There are multiple ways to "attach" a file inside a PDF - one via annotations and one via the Names tree.  You will need to write code to handle both cases and it will require some in depth understanding of the PDF format - so start with reading the PDF Reference/ISO 32000.
    OR you can call the PDFOptimizer to do this for you...

  • How to remove log file on maxdb

    Hi,
    I have installed IDES ECC 5.0 on MaxDB 7.5. I have 4 files size of 1 GB and I would like to remove it.
    Is it possible to remove log files without Complete Data Backup procedure in Database Manager?
    Is it helpfull to switch database in Overwrite Log Mode?
    We use a testing sistem without needs for recovery procedures.
    Regards,
    Aleksandar

    Hi,
    you should not delete the logvolumes.
    For your case it would suffice to switch on the auto-overwrite mode of the log.
    You can do this most conveniently by using the Database Manager GUI.
    1. Put the DB instance in state ADMIN
    2. Goto 'COnfiguration' -> 'Log Settings'.
    3. From the wizard select 'Overwrite Mode...' and follow the described follow-ups.
    Kind regards,
    Roland

  • How to remove a file name in Finder window places

    When I open Finder window I want to remove a file name in places. I don't use the file anymore and want to remove it.

    Hold down the command key and drag it out of the sidebar.

  • Copying files - how to skip bad files and continuing to copy?

    I recovered some files off a dieing HDD (approximately 600GB worth). These are sitting on a good condition and fully functioning external HDD. I am trying to copy these files from this external HDD to another external HDD. It appears that some of the files that were recovered are actually corrupt as when copying and pasting, it gets to around the 120GB mark before I received the following error:
    "The Finder can't complete the operation becauise some data in [files name] can't be read or written.
    (Error code -36)"
    When attemping the Ditto command in terminal, at the same point, I get the following error in Terminal:
    "Volume/[drive name]/[folder name]/[file name]: Input/output error"
    Due to the number of files (in the 100's of thousands I believe) I do not want to start trying to copy and paste individual files and folders.
    Does anyone know of a program that will skip the bad files and continue to copy? Microsoft Windows does this natively, but as my HDD are in Mac OS X format, that doesn't help. Surely there is some App or program that can perform this function?

    I recovered some files off a dieing HDD (approximately 600GB worth). These are sitting on a good condition and fully functioning external HDD. I am trying to copy these files from this external HDD to another external HDD. It appears that some of the files that were recovered are actually corrupt as when copying and pasting, it gets to around the 120GB mark before I received the following error:
    "The Finder can't complete the operation becauise some data in [files name] can't be read or written.
    (Error code -36)"
    When attemping the Ditto command in terminal, at the same point, I get the following error in Terminal:
    "Volume/[drive name]/[folder name]/[file name]: Input/output error"
    Due to the number of files (in the 100's of thousands I believe) I do not want to start trying to copy and paste individual files and folders.
    Does anyone know of a program that will skip the bad files and continue to copy? Microsoft Windows does this natively, but as my HDD are in Mac OS X format, that doesn't help. Surely there is some App or program that can perform this function?

  • How to remove pdf files from iTunes/ iPhone/ Books sync window?

    I've removed the files from my iTunes library folders, but they still show up with icons in the Books sync window for my phone and iPad.
    I've deleted all hard copies of the

    Leave it to Safari to crash and not finish my post.  I've deleted all of my hard copies within iTunes..Here is a screen shot of where I'd like to remove the pdf files.
    I can't highlight the pdf and hit delete from here.  Any reference of the 2 willamette books I've deleted, but they are still there....ideas?

Maybe you are looking for

  • HP 1300 Laserjet & HP 2605dn Laser Jet printers print density problem

    I have both an HP 1300 b/w and HP 2605dn color laser printer.  In the last week both printers have changed the output density. The 1300 print is coming out lighter than it used to, and the 2605 is not print the color tones as it used to. What used to

  • Unable to open documents

    I recently got a new Mac Mini with Mountain Lion and I was putting iWork on it from my disc set I got with Snow Leopard box set. I have successfully installed it and the 9.2 update but none of the programs Pages, Numbers or Keynote can open anything.

  • Tablespace 'PSAP SID USR' does not exist Error

    Hi Guys, During import of my oracle 9.2 database on the target server, sapinst fails after creating all the tablespaces. It tries to assign user SAP<SID> to default tablespace PSAP<SID>USR which I did not create. I copied the DDLORA.TPL file from sou

  • I'm having a problem with a flash file

    where an strip of photos does not stop at the end of the photos.

  • RadioGroup in a PL/SQL Region

    How can I retrieve the selected radiobutton in a group after a submission? I am creating and setting the active radiobutton with the following line of code: htp.p(HTMLDB_ITEM.RADIOGROUP(p_idx => 3, p_value => value1, p_selected_value => value3)); The