SQL for the interface of FILES with column headers

Hi all

I designed an interface to extract data from Oracle to flat (.txt file).

(1) I get the column headers in the output of file(. txt file) but I don't want to see any header column

(2) for the creation of the data source in data model if I give any type of Date column I get the null value in the output file, but if I give the column type as string date filed I am able to see the data in the output file.



Thank you
Patel.

Hi Pierrot

(1) I get the column headers in the output of file(. txt file) but I don't want to see any header column
You can set GENERATE_HEADER = flase and flow properties.

-approach step by step on how to load some data from an oracle to flat file table
http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/FMW/ODI/odi_11g/odi_project_table-to-flatfile/odi_project_table-to-flatfile.htm
http://odiexperts.com/Oracle-to-flat-file/

(2) for the creation of the data source in data model if I give any type of Date column I get the null value in the output file, but if I give the column type as string date filed I am able to see the data in the output file.
I don't think you can use a data type Date during loading in the flat file. You can go with string or number/integer (if the date has no special characters. Here, you can use a conversion function to convert the data type Date existing according to your needs, but make sure that you select "source or on the staging")

Concerning
KK

Tags: Business Intelligence

Similar Questions

  • How to download the Csv file with column headers

    Hi all

    This is pavan, using Apex version 4.2.3


    I am trying to download the csv file I followed this link , and I'm able to download excel with headers, when I try to download with headers of this error "'ORA-01858: a non-digit character was found here where was waiting for a digital" I searched in google but could not find the right solution, "


    can anyone help on this please.

    Thanks in advance,


    Kind regards

    Pavan

    This article is 6 years old.

    You should study the solutions that are available for APEX 4.2: data loader or the 'Excel2Collection' plugin (which also manages the CSV files).

    Data Loader

    It is a wizard that generates an Assistant for your application.

    Excel2Collection

    You will use the Excel2Collection (in a single process) to convert the BLOB in a Collection

    Then, in a 2nd address), you just do a "INSERT...". SELECT statement.  Add ' where seq_id > 1 "for files with a header.

    MK

    PS - Use the "EXECUTE IMMEDIATE" article is not necessary.

  • Is there a fault with upgrade 2.13.121 for the interface Adobe Creative Cloud? I want to check the updates of the program and update freezes at 5% - I have now tried 6 to 8 times to + 5 min once - it's over half an hour of my life!

    Is there a fault with upgrade 2.13.121 for the interface Adobe Creative Cloud? I want to check the updates of the program and update freezes at 5% - I have now tried 6 to 8 times to + 5 min once - it's over half an hour of my life!

    Hi David,

    Please check the help below document:

    https://helpx.Adobe.com/creative-cloud/KB/Error_Code_2_failed_update.html

    Kind regards

    Sheena

  • create an exception in avast for the nsemail.html file in the temp folder

    I was pulling out my hair trying to find if there could be anything in the temporary files that I have to keep the last few weeks. Then I came across this: "the release of Avast 10.3.2223 (we think it's this version) has resulted in questions with avasts prevention of Thunderbird.
    to function properly. The solution seems to be to create an exception in avast for the nsemail.html file in your
    computers temp folder. "So now I'm completely confused. Why would I put something I need all the time in a temporary file to have remove for cleaning ccleaner?

    Matt, thanks. I read your blog post. I need to replace my HD and I've been fretting over if I have to loose important data from the temporary files. Apparently not. When I talked about ccleaner, it was in the generic sense. I avoided ccleaner because I thought it was a big hammer and some data that he brags about getting rid of I really want to continue. I know that I can choose what remains and what is happening, I'll have to give him another look. Once again thank you.

  • Require a script to the list of files with sizes on all data stores in a cluster

    Hi all

    Please be gentle, im not new to Vmware, but new to powershell/powercli and need your help.

    cli power can make or y at - it tools available that will do that for me?

    I need to generate a list of all the files of the virtual machine in all stores of data available for cluster and their sizes to go with it.

    I am mainly interested in the .log files and vmdk files, but I don't mind if it lists all.

    I don't mind how his im laid out not after anything fancy just a list of output type something like

    /

    I did some research but there is nothing I have found that it will make.

    My environment is currently esx 3.0.2 with vcenter servers. (currently being upgraded to 4)

    Lots of help thanks

    Yes, it's a 'characteristic' knowledge when using PowerCLI 4u1 against a VI 3.x environment.

    There is a way to workaround, try this

    $dsImpl = Get-Cluster  | Get-VMHost | Get-Datastore | where {$_.Type -eq "VMFS"}
    $dsImpl | % {
         $ds = $_ | Get-View
         $path = ""
         $dsBrowser = Get-View $ds.Browser
         $spec = New-Object VMware.Vim.HostDatastoreBrowserSearchSpec
         $spec.Details = New-Object VMware.Vim.FileQueryFlags
         $spec.Details.fileSize = $true
         $spec.Details.fileType = $true
         $vmdkQry = New-Object VMware.Vim.VmDiskFileQuery
         $spec.Query = (New-Object VMware.Vim.VmDiskFileQuery),(New-Object VMware.Vim.VmLogFileQuery)
         #Workaround for vSphere 4 fileOwner bug
         if ($dsBrowser.Client.Version -eq "Vim4") {
              $spec = [http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim4($spec)
              $spec.details.fileOwnerSpecified = $true
              $dsBrowserMoRef = [http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim4($dsBrowser.MoRef);
              $taskMoRef = $dsBrowser.Client.VimService.SearchDatastoreSubFolders_Task($dsBrowserMoRef, $path, $spec)
              $result = [http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim($dsBrowser.WaitForTask([http://VMware.Vim.VIConvert|http://VMware.Vim.VIConvert]::ToVim($taskMoRef)))
         } else {
              $taskMoRef = $dsBrowser.SearchDatastoreSubFolders_Task($path, $spec)
              $task = Get-View $taskMoRef
              while("running","queued" -contains $task.Info.State){
                   $task.UpdateViewData("Info")
              }
              $result = $task.Info.Result
         }
    
         $result | % {
              $vmName = ([regex]::matches($_.FolderPath,"\[\w*\]\s*([^/]+)"))[0].groups[1].value
              $_.File | % {
                   New-Object PSObject -Property @{
                        DSName = $ds.Name
                        VMname = $vmName
                        FileName = $_.Path
                        FileSize = $_.FileSize
                   }
              }
         }
    } | Export-Csv "C:\File-report.csv" -NoTypeInformation -UseCulture
    

    I have attached the script to avoid any problems with the hooks.

    And the regex expression is updated to account for the names of comments with whites.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • How can I change the looks of Access Infrastructure Web location for the virtual machine files?

    How can I change the looks of Access Infrastructure Web location for the virtual machine files?

    My default is set to MACHINES C:\VIRTUAL.  But I want to change it to turn to an external drive connected with an eSata cable. Can I do this?

    Hello

    Add just like a new data store.

    Login to your web access, select your host (not the virtual machines) in the left menu.

    You should see a link on the right side with "Add data store", give it a name of store and add the directory.

    Now, you can add a virtual machine to this place.

    Good luck!

    --

    Wil

    _____________________________________________________

    Visit VMware developers at http://www.vi-toolkit.com wiki

  • ADF is intended for the data base designed with vertical diagram?

    Hello

    I want to know if ADF 11 g is intended for the data base designed with vertical scheme where even the names of columns will be stored in a generic table?

    Thanks in advance.

    Published by: user8925296 on April 12, 2010 10:06

    The short answer is no...

    What do you call a 'vertical plan', it's what others have called for a schema of entity-attribute-value or universal data model. I advise you to do some research open minded on these types of patterns if you develop an application before continuing. Great sound in practice, they have very inherent ease of use and scalability problems. [url http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:2314483800346542969] This could be a good starting point...

    John

  • How can I change the background color for the bar 'help file edit view history bookmark tools' in Firefox 29,0

    How can I change the background color for the bar 'help file edit view history bookmark tools' in Firefox 29,0

    You can add a theme of solid color to change the color of the top of the browser window, which contains the Menu bar.

    https://addons.Mozilla.org/en-us/Firefox/themes/solid

  • Can I pay for the apple's music with an iTunes gift card?

    I have $10.01 on my account and they sent me an email saying they charged it to my house but I was under the impression that the card would work. I don't have a payment option on my account to something other than the gift card. I wonder if they will eventually take money from my iTunes or will really want to make me pay the invoice they send me.

    Hi madison0505

    Yes, you can pay for the Apple's music with an iTunes credit. If you have enough credit to iTunes, which is used first.

    It's actually how to pay my subscription of Apple's music.

    Apple's music is $ 9.99 / month, but you did not take into account applicable sales tax.

    I pay $10.69 / month after sales tax.

  • Is there a way for the secret video files to the sansa fuze using QUICK MEDIA CONVERTER?

    Is there a way for the secret video files to the sansa fuze using QUICK MEDIA CONVERTER?

    Not really. The way final only ot add videos on the "rocket" is SMC. Rhapsody will do this also, but I don't know that its faster.

  • Windows vista for the full installation file that contains package. __

    Respected Sir/Madam,

    I have problem in bought and installed windows vista operating system, so I need an extra copy of already purchased the operating system windows vista, for the complete installation file containing the package.

    Hi sssekarrr,

    It depends completely on the purchase you have made and that the vendor where you purchased Windows Vista if there is a possibility to get an extra copy of the purchase.

    You will need to contact the vendor from which you made the purchase.

    I hope this helps!

    Halima S - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • accidentally, I changed the default program for the openng exe files

    accidentally, I changed the default program for the openng exe files now I can't reverse my mistake and a lot of things on my count no longer works... I cnt play games or open all programs... what should I do?

    http://support.Microsoft.com/kb/950505

    Note at the beginning of the article that it says that Windows 7 users should go directly to the "Fix it myself" section

    Tricky

  • Hello! Two weeks ago I paid $94 for the combination of files Adobe software, even today, I can't combine my unique Adobe files. The system asks me to pay again. Why don't the sysstem grant me access to this step? Why should users pay extra for that

    Important question

    Hello! Two weeks ago I paid $94 for the combination of files Adobe software, even today, I can't combine my unique Adobe files. The system asks me to pay again. Why don't the system gives me access to this step? Why should users pay extra for this tool?  This transaction is located on my credit card. Help, please. Sincere thanks. BP

    Hi pruitt-mckenzie-animated.

    I see that you have subscribed for the Adobe PDF pack.

    Please download latest Adobe Acrobat Reader DC Acrobat Reader DC Learn & support, Sign In using your adobe ID to use the services.

    KB doc. for help Document Cloud Help | Adobe PDF package using.

    Let me know if you are still having a problem.

    Kind regards

    Nicos

  • What is the technology used for the integration of java with Flex application?

    How we integrate java into a Flex application or how to build flex applications that use Java as a backend?

    BlazeDs is currently used in businesses to serve the above purpose?

    Or is there a better technology that is used in businesses for the integration of Java with Flex application?

    What is the latest version of BlazeDs?

    Also, please give me a few important article links which shows a sample application in Flex using Java development as a backend.

    Thank you in advance.

    BlazeDS is the way to go. Just google BlazeDS and you will find many examples of link Java to Flex via Remoting and BlazeDS.

  • How to write a query for the data exchange between two columns?

    How to write a query for the data exchange between two columns?

    I tried a request, does NOT work.
    update tmp t1 set t1.m1=t1.m2 and t1.m2=(select t2.m1 from tmp t2 where t2.student_id = t1.student_id)
    Thank you.

    Published by: user533361 on October 23, 2009 14:04

    Just plain and simple:

    update tmp t1
     set t1.m1=t1.m2,
         t1.m2=t1.m1
    /
    

    SY.

Maybe you are looking for