Get the name of data file of sqlldr map using OMB

I am able to get a card SQLLDR to the SRC file, but unable to get file name of data, details are given as under:

OMBRETRIEVE MAPPING 'A' SOURCE_DATA_FILE GET
tony_src

OMB + > OMBRETRIEVE MAPPING 'A' SOURCE_DATA_FILE 'tony_src' GET DATA_FILE_NAME
OMB02932: Error getting child objects of type DATA_FILE_NAME has

Thanks in advance!

Hello

On the top of my head, try...
OMBRETRIEVE MAPPING 'A' SOURCE_DATA_FILE 'tony_src' GET PROPERTY (DATA_FILE_NAME)

See you soon
David

Tags: Business Intelligence

Similar Questions

  • Get the names of palette file types

    Hello

    How can I get the names of all types of step programmatically in a palette file?

    In my view, it should be possible, but I tried different approaches using the poster of API reference and couldn't find a way.

    Thank you and best regards,

    Aditya

    TestStand 4.2.1

    LabVIEW 2009 SP1

    propertyObjFile.TypeUsageList.NumTypes

    propertyObjFile.TypeUsageList.GetTypeDefinition)

    typeaspropobj. TypeCategory is TypeCategory_StepTypes

    Hope this helps,

    -Doug

  • Get the names of a file HTML file

    Hi gurus,

    I'm fighting to extract the file image of a long HTML file names. I expect to get the following result. Can someone help me or even to give an idea how to do this? In the end, I want to replace the '__d"with one more point.

    Part of HTML_1 = «...» "> < span style =" "are-size: 12pt;" > < span style = "color: #212121;" " do-family: "Times New Roman", serif; "> < IMG src ="Case__dPNG"alt =" "/ > < br / > < / span > < / span > < /p > < class p ="x_MsoNormal"style =" margin: 0cm 0cm 0.0001pt. "> < / p > < class p ="x_MsoNormal"style =" "margin: 0cm 0cm 0.0001pt;" > < span style = "do-size: 12pt;" " do-family: arial, helvetica, without serif. "" > < span style = "" color: #212121; ">... < IMG src ="Case345__dJPG"alt =" "/ > < br / >... style =" "margin: 0 cm 0 cm 0.0001pt;" > < / p > < class p = "x_MsoNormal" style = "" margin: 0 cm 0 cm 0.0001pt; "> < span style =" do-size: 12pt; "" " do-family: arial, helvetica, without serif. "" > < span style = "" color: #212121; ">... < IMG src ="C564__dPNG"alt =" "/ > < br / >...

    Part of HTML_2 = ' span style = "do-size: 12pt;". " do-family: arial, helvetica, without serif. "" > < span style = "" color: #212121; ">... < IMG src ="Ctt__dPNG"alt =" "/ > < br / >... < IMG src ="Ctt2__dPNG"alt =" "/ > < br / >"

    WITH tmp_table AS

    (SELECT

    "2763 ' case_id,

    "HTML_1" html_val

    OF THE DOUBLE

    UNION

    SELECT

    "2764 ' case_id,

    "HTML_2" html_val

    THE DOUBLE)

    Select case_id, html_val

    of tmp_table;

    OUTPUT...

    CASE_ID FILENAME

    2763 Case.PNG

    2763 Case345.JPG

    2763 C564. PNG

    2764 Ctt.PNG

    2764 Ctt2.PNG

    Thank you

    Napster

    Assuming that the HTML content is actually valid XHTML, you can do this:

    SQL> with tmp_table (case_id, html_val) as (
      2    select '2763',
      3    '

    4

    5

    6 7
    ...style="margin: 0cm 0cm 0.0001pt;">

    8

    ' 9 from dual 10 union all 11 select 12 '2764', 13 '...
    ... 14
    ' 15 from dual 16 ) 17 select t.case_id, replace(x.file_name, '__d', '.') as file_name 18 from tmp_table t 19 , xmltable( 20 '//IMG' 21 passing xmlparse(content html_val) 22 columns file_name varchar2(256) path '@src' 23 ) x 24 ; CASE_ID FILE_NAME ------- -------------------------------------------------------------------------------- 2763 Case.PNG 2763 Case345.JPG 2763 C564.PNG 2764 Ctt.PNG 2764 Ctt2.PNG

    (Note: I had to modify your sample data to correct for this example)

  • Order by the name of data file.

    Hi all

    I use 11 GR 2 and looking to find a way where in I am able to retrieve the name of the data files so be it, one where he lists the data file in the order of mount points. first say data1 and then so on...

    Excerpt from my data output files.

    /DB/ptmtrain/Data1/System01.dbf

    /DB/ptmtrain/data2/sysaux01.dbf

    /DB/ptmtrain/Data1/undotbs01.dbf

    /DB/ptmtrain/Data3/tools01.dbf

    /DB/ptmtrain/data24/users01.dbf

    /DB/ptmtrain/data25/USERS02.dbf

    /DB/ptmtrain/data26/USERS03.dbf

    /DB/ptmtrain/data2/rbs01.dbf

    /DB/ptmtrain/Data3/rbs02.dbf

    /DB/ptmtrain/data2/rbs03.dbf

    /DB/ptmtrain/data23/sans01.dbf

    should be something like

    /DB/ptmtrain/Data1/System01.dbf

    /DB/ptmtrain/Data1/undotbs01.dbf

    /DB/ptmtrain/data2/sysaux01.dbf

    /DB/ptmtrain/data2/rbs03.dbf

    /DB/ptmtrain/data2/rbs01.dbf

    /DB/ptmtrain/Data3/tools01.dbf

    /DB/ptmtrain/Data3/rbs02.dbf

    /DB/ptmtrain/data23/sans01.dbf

    /DB/ptmtrain/data24/users01.dbf

    /DB/ptmtrain/data25/USERS02.dbf

    /DB/ptmtrain/data26/USERS03.dbf

    Concerning

    Maybe

    with

    data_files as

    (select ' / db/ptmtrain/data1/system01.dbf' file_name Union double all the)

    Select ' / db/ptmtrain/data2/sysaux01.dbf' of all the double union

    Select ' / db/ptmtrain/data1/undotbs01.dbf' of all the double union

    Select ' / db/ptmtrain/data3/tools01.dbf' of all the double union

    Select ' / db/ptmtrain/data24/users01.dbf' of all the double union

    Select ' / db/ptmtrain/data25/users02.dbf' of all the double union

    Select ' / db/ptmtrain/data26/users03.dbf' of all the double union

    Select ' / db/ptmtrain/data2/rbs01.dbf' of all the double union

    Select ' / db/ptmtrain/data3/rbs02.dbf' of all the double union

    Select ' / db/ptmtrain/data2/rbs03.dbf' of all the double union

    Select ' / db/ptmtrain/data23/sans01.dbf' of the double

    )

    Select file_name

    of data_files

    order of to_number (substr (file_name, 18, instr(file_name,'/',-1)-18))

    FILE_NAME
    /DB/ptmtrain/Data1/System01.dbf
    /DB/ptmtrain/Data1/undotbs01.dbf
    /DB/ptmtrain/data2/sysaux01.dbf
    /DB/ptmtrain/data2/rbs03.dbf
    /DB/ptmtrain/data2/rbs01.dbf
    /DB/ptmtrain/Data3/tools01.dbf
    /DB/ptmtrain/Data3/rbs02.dbf
    /DB/ptmtrain/data23/sans01.dbf
    /DB/ptmtrain/data24/users01.dbf
    /DB/ptmtrain/data25/USERS02.dbf
    /DB/ptmtrain/data26/USERS03.dbf

    Concerning

    Etbin

  • Option to enter the name of data file in SQL * Loader

    Hello

    I have a requirement to enter the name of the data file in the staging table, is it possible that I can capture in SQL * Loader or any other way to do it.

    Need suggestion of experts please.

    Thank you

    Genoo

    Genoo salvation,

    Please have the basename command in Linux to enter the name of the file that is currently running. I don't have a linux machine at the moment access, so please check at your end.

    BTW, as you file name of variant data in and values not consistent, you need to change the data file to include the file name. Unless it is approved for your management I don't see alternatives like the fill source tables are the data file. If this is approved then you can do the following:

    SED EI / $/ ' basename $0' /'-i '.

    Thus, for example, if you have a data file name 01test.csv, and it contains data such as:

    11, AAA, ABC

    22, BBB, BCD

    The command: sed EI / $/, ' basename $0' /'-i 01test.csv will go to:

    11, AAA, ABC, 01test.csv

    22, BBB, BCD, 01test.csv

    Then use SQL Loader to load the file

    It is the closest solution to you, I can think. There is no way that you can achieve your goal of features SQL Loader but rather, you should use technical Linux for a work around.

    Best regards

  • What are the names of data files scratch CS6 on Mac?

    I see people saying the file (or is it multiple files?) is stored at the root of the HD. I don't see anything here (I have only one drive) which resembles Photoshop, even when I check the invisible files. Anyone know where the file is, and what it is called? It is invisible?

    The reason I ask, is I want to exclude from my backups Time Machine current. I'm slowly learning the various Adobe files I need to exclude manually. (AutoRecover, Application Support/Adobe... actually, records bazillion CS6 within Applications, since I will restore the cloud creative if I a failure.)

    Sometimes Time Machine made a big backup for unknown reasons, and I think that the recent installation of ogf CS6 can be the culprit.

    Thanks in advance!

    He uses the device virtual standard temp / folder, which is already excluded from Timemachine.

    Mylenium

  • get the names of Get-ScsiLun data store

    Im stuck here...  Can anyone help me to get the names of data store for storage devices using the script below? My requirement is to get the naa (ConsoleDeviceName) address and the names of data store for each storage device.

    $esxName = "esxsrv1".

    $report = @)

    Get-ScsiLun - VmHost $esxName - LunType "disk". %{

    $row = "" | Select the host, ConsoleDeviceName, model, provider

    $row.host = $esxName

    $row. ConsoleDeviceName = $_. ConsoleDeviceName

    $row.vendor = $_. Name of the vendor

    $row.model = $_. Model

    $report += $row

    }

    $report | Export Csv c:\Temp\results.csv - NoTypeInformation

    Thank you very much, Kev - o

    Try it like this

    $esxName = "esxsrv1"
    
    $dsTab = @{}
    foreach($ds in (Get-Datastore -VMHost $esxName | where {$_.Type -eq "vmfs"})){
        $ds.Extensiondata.Info.Vmfs.Extent | %{
            $dsTab[$_.DiskName] = $ds.Name
        }
    }
    
    $report = @()
    Get-ScsiLun -VmHost $esxName -LunType "disk" | %{
    
        $row = "" | Select Host, ConsoleDeviceName, Vendor, Model, Datastore    $row.host = $esxName    $row.ConsoleDeviceName = $_.ConsoleDeviceName
        $row.vendor = $_.Vendor
        $row.model = $_.Model
        $row.Datastore = &{
            if($dsTab.ContainsKey($_.CanonicalName)){
                $dsTab[$_.CanonicalName]
            }
        }
        $report += $row}
    
    $report |Export-Csv c:\Temp\results.csv -NoTypeInformation
    

    The script begins by creating a hash table where he maps the CanonicalName with the DatastoreName.

    In the 2nd part of the script of the hash table is used to find the DatastoreName through the CanonicalName.

  • How can I get the name of the images in my package of res?

    Hello

    I have a lot of images in the "res" my project package. I need to get the names of these files and save them in a table. How can I do?

    Thank you.

    There is no API to do this, your application must "know" the names of the images.

  • The Boot Configuration data file contains no valid information for an operating system

    I have a Toshiba Satellite C55 B5200 running Windows 8.1 pre-installed. How ever when I boot, I get the Boot Configuration Data file does not contain valid information for an operating system to file: \BCD error Code: 0xc0000098

    If I do a usb on a friends computer system recovery, it will affect the recovery of my computer? I don't have product key windows 8 as it was preinstalled. If I go down to the store, buy Windows 8.1 will be this also fixes my problem? Any help is appreciated

    Hello

    Please refer to this and see if it helps:

    http://www.thewindowsclub.com/0xc0000098-error-Windows-8-help

    Hope this helps, good luck :)

  • How to get the name of a class private data controls?

    How can I get the names of the controls within a class private data?

    I use the framework of the actor and try to create a tha method will be executed when run the actor. This method should an o list all names of control inside the data class to find the initial value within a configuration file (config.ini file), the key to the configuration file will be the name of the control.

    Thank you.

    You already do the substitution method just because you write for the bundle by name.  And then how are you going to respond to all types of data might be the key.  You do more difficult things that it takes to really very few benefits.

  • It seems that FFv.12 does not allow Scandinavian letters in the names of downloaded files, but gets stuck all by contacting the localhost?

    I do a fileupload page and it seems that FFv.12 does not allow for Scandinavian letters in the names of downloaded files, given that the browser gets stuck trying to communicate with the local host. Fix? This behavior differs from that of other browsers (IE, Chrome, Opera and Safari).

    That are Unicode characters in the name of the file or the characters in the top 0 x 80-0xFF range?

  • Name of data file in the file results correlate

    Hello

    My vi carried out statistics on multiple data files, and I was wondering if it is possible to correlate the new file names (of the results) of their original datasets. For example: names of data files: data1 & data2 will display results files: data1_result & data2_result.

    Is this possible to do?

    Thank you?

    Just for future use, if someone will have a similar question, see attachment.

  • Get the name and the data type into an object?

    Hello

    I would like to know if there is a way to get the names and the types of data encapsulated in an object of labview?

    For example, let's say I make a simple object, called myObject to be commonplace, with private data: myObjectName (string), myObjectValue (int 32) (etc.)

    So, how to build a method to return the type of the data of myObjectValue, or infact back the names and types of all data in the object field, which could be a lot?

    Thank you

    Paul.


  • When Remove My Documents & send to the trash and get the error message from file (s) name (s) too long

    the situation: I erase all the contents of Documents and sending them to the Recycle Bin.  This is in preparation for a new backup of Documents to an external hard drive device.
    What continues to be: whenever I press DELETE I get the following error message, "file contains elements whose names are too long for the Recycle Bin." -I combed through all the names in the Documents & shortened all the time, but I always get this error message.
    questions: How can I identify & locate offend him, too long file name of the file or files?  What is the space limit for the length of the file/folder names + character?  is it possible to change the settings to correct this extremely frustrating loop somehow, I'm in?
    I would greatly appreciate any help/tips on the issue.  Thank you!

    Hello

    you keep insisting on 'my

    There is no "My Documents" on Vista

    It's only 'Documents '.

    Windows Vista renames 'My Documents' as, simply, 'Documents '. "My music", "My pictures" and "My videos" have also lost their prefix and moved to directly under the directory (profile).

  • get the name of the day of a date (format yyyy/mm/dd)

    Hello

    In blackberry java application development is possible to get the name of the day of a date (format yyyy/mm/dd).

    I have a date as 09/15/2013. I want the output like Sunday

    Thank you and best regards.

    Thank you reply Erwan fo...

    I post my code using... It can be used to get the name of the day for a date string.

    //SimpleDateFormat write = new SimpleDateFormat("EEEE-MMM-dd");//It will return Weekday name as full plus monthe name plus date
    SimpleDateFormat write = new SimpleDateFormat("EEEE");//It will return Weekday name
    Date date = new Date(HttpDateParser.parse("2013/09/12"));
    System.out.println(write.format(parsedDate));
    

    Best regards.

Maybe you are looking for

  • most regions have disappeared but not quite gone

    strange things occurred when I change the instrument patches, like any automated data disappear when I pass different amps, or regions went with a microphone preamp. boring, but it was always a few steps of the history as I'm keeping my eye on it. Ho

  • Impossible to update 10.11.5

    I wanted to upgrade to the latest version of Configurator2. However, although the update appears in App Store, when I try to install it I get a message saying I need to update 10.11.4 10.11.5 first. So far so good. However, when I tried to upgrade to

  • 12.4: compilations don't show selections for the album

    is there a setting hidden somewhere? It is compatible with more than one list of reading for me. but, if I go to the playlist in albums, no compilations then appear. If I try to add these compilations, I get a message saying that they are already the

  • How to draw three 1 d vectors in a field of surface?

    Hello world I have programming experience, but am completely new with LabView. I have data files that contain the same range of wavelength on the first column, light intensities on the second column, and each new text file is at a different angle. Th

  • HP pavilion dv6-2150us: problems with the upgrade of processor for an i7-720qm on a hp pavilion dv6-2150us

    Hi all My friend recently bought an i7-720qm processor used to upgrade hp pavilion dv6 2 1 5 0 US and I summer giving a helping hand by making the upgrade. Since the 10 Windows running Google Chrome used up to 70% of the processing of an i3 - 330 m p