How to import the .sql file in oracle apex?

I am new to oracle apex...

How to import the .sql file in oracle apex?

I have to import a table in apex...

This script I have to write in the .sql file...

pls help...

Published by: 794244 on January 31, 2011 21:31

Hi Manu

You can import and browse workshop SQL, SQL Scripts .sql files. If you have multiple SQL statements in your script, make sure that they are separated by the / character

Andy

Tags: Database

Similar Questions

  • How to import the mp4 files, it does not work on my mac

    How to import the mp4 files, it does not work on my mac

    If you try to import a video to use as a guide in your timeline, the video must be H.264 with AAC audio. You cannot use the other MP4 videos with other codecs (such as the MPEG-4 video codec).

  • How to import the XML file into an oracle table using a BPEL process

    Hi friends

    How can I import XML file in the db oracle table using a BPEL process

    (1) I have generated an XML file in my local system with a field
    (2) I created a temporary table in my oracledb with the same field in the XML file
    (3) that I want to import these XML files which is the local host to my db oracle using a BPEL process
    (4) for that what steps should I me fallow please suggest me if there is no document for this?

    Thanks in advance
    AT

    Hi to

    Here you go...

    http://blogs.Oracle.com/ajaysharma/2011/03/using_file_adapter_database_adapter_and_mediator_component_in_soa_11g.html

    I hope that helps!

    Thank you
    AJ

  • How to import the two files different cod as a forground and background in the unique alx for a same device

    Hi all

    I created two cod different files such as application of function two diffirent for one device with the same name of the application, but the names of code files are different how you can import them into BB Desktop manager with alx

    Please help me to do this.

    You can add the cod file in the section of the alx file

  • How to create the xml file in oracle plsql

    Hello

    I need the under xml (abc.xml) in unix Server out_directory file (the out_directory path: / u01/apps/xml /)

    Select sivauser, sivapwd from sivainformations;-it will be multiple records

    Select sivatelepone phone; - it will be multiple records

    Select xyzverion versionid; - it will be multiple records

    based on the above information, I need the sub file xml using oracle plsql procedure or a block

    example: suppose we record

    <? XML version = "1.0" encoding = "UTF-8"? >
    "< sivaService version ="2.0"xmlns ="http://www.siva.ab/siva/4.0/test">."
    < data language 'DEU' = >
    < sivauser action = "siva3" sivapwd = "siva123" > --i need to sivainformations table(sivauser,sivapwd) timeline
    phone < sivatelepone > < / sivatelepone >--i need to chronogram sivatelepone table (phone) based on the sivauser column
    < abcversion version = "1.0" >
    < Productinfo >
    versionID < xyzverion > < / xyzverion >--i need to xyzverion (versionid) based on the sivauser column table records
    < / Productinfo >
    < / abcversion >
    < / action >
    < / data >
    < / sivaService >


    example: assume that multiple records

    <? XML version = "1.0" encoding = "UTF-8"? >
    "< sivaService version ="2.0"xmlns ="http://www.siva.ab/siva/4.0/test>
    < data language 'DEU' = >
    < sivauser action = "siva3" sivapwd = "siva123" > --i need to sivainformations table(sivauser,sivapwd) timeline
    < sivatelepone > '345678' < / sivatelepone >--i need to chronogram sivatelepone table (phone) based on the sivauser column
    < abcversion version = "1.0" >
    < Productinfo >
    '1.1' < xyzverion > < / xyzverion >--i need to xyzverion (versionid) based on the sivauser column table records
    < / Productinfo >
    < / abcversion >
    < / action >

    < sivauser action = "siva4" sivapwd = "siva123" > --i need to sivainformations table(sivauser,sivapwd) timeline
    < sivatelepone > '123456' < / sivatelepone >--i need to chronogram sivatelepone table (phone) based on the sivauser column
    < abcversion version = "1.0" >
    < Productinfo >
    "1.2" < xyzverion > < / xyzverion >--i need to xyzverion (versionid) based on the sivauser column table records
    < / Productinfo >
    < / abcversion >
    < / action >
    < / data >
    < / sivaService >

    Please help me

    Thank you
    Siva

    I added a column ID to match the lines between the three tables.

    SQL> with sivainformations
      2  as
      3  (
      4     select 1 id, 'karthick' sivauser, 'karthick' sivapwd from dual union all
      5     select 2 id, 'ram', 'ram' from dual
      6  )
      7  , sivatelepone
      8  as
      9  (
     10     select 1 id, 1234567890 telepone from dual union all
     11     select 2 id, 1234512345 from dual
     12  )
     13  , versionid
     14  as
     15  (
     16     select 1 id, 1.1 versionid from dual union all
     17     select 2, 1.2 from dual
     18  )
     19  select xmlelement
     20         (
     21             "shivaService"
     22           , xmlattributes('2.0' as "version", 'http://www.siva.ab/siva/4.0/test' as "xmlns")
     23           , xmlelement
     24             (
     25                 "Data"
     26               , xmlattributes('DEU' as "language")
     27               , xmlagg
     28                 (
     29                     xmlelement
     30                     (
     31                          "Action"
     32                        , xmlattributes(s.sivauser as "sivauser", s.sivapwd as "sivapwd")
     33                        , xmlelement("shivatelepone", t.telepone)
     34                        , xmlelement
     35                          (
     36                              "abcversion"
     37                            , xmlattributes('1.0' as "version")
     38                            , xmlelement
     39                              (
     40                                   "ProductInfo"
     41                                 , xmlelement("xyzversion", v.versionid)
     42                              )
     43                          )
     44                      )
     45                 )
     46             )
     47         ).EXTRACT('*') xml_output
     48    from sivainformations s
     49    join sivatelepone t
     50      on s.id = t.id
     51    join versionid v
     52      on s.id = v.id;
    
    XML_OUTPUT
    -------------------------------------------------------------------------------------------------------------------
    
      
        
          1234567890
          
            
              1.1
            
          
        
        
          1234512345
          
            
              1.2
            
          
        
      
    
    
    SQL>
    
  • How to import the missing files

    Hello

    I found a lot of files missing on my system. When I took a quick look, I found that they had imported on another drive of my computer that I had taken.

    How do I:

    (A) import them

    (B) get rid of the link file missing in LR's rest?

    Because right now, I don't then reimport them in LR, as it says the files are duplicates. So, how can I find all the 'missing' files and delete them?

    Also, separately, LR is to see some of my pictures of the iPhone as a new files when they are not new. If I import them, I'll have duplicates.

    Do not import the photos Lightroom think are missing! Do not! It is the wrong thing to do and will make things worse.

    Follow these instructions for Lightroom point to the new location of the photo: Adobe Lightroom - find folders and files moved or missing

  • How to import the xml file into bcc?

    My input to atg file is xml containing assets of category or products.

    I want the Scheduler to run to auto create a project and send an e-mail to the customer for approval.

    When the client approves the xml file, and then run the Scheduler to get the data from the xml file into bcc.

    I use: SingletonSchedulableService for this

    Give me a direction for the same thing.

    Thanks in advance.

    I want to implement this in bcc.

    What listener will listen to the authorization of the client for email (that contains the XML to import) we sent to him?

    You will need to do a custom development to hang your workflow customized with incoming e-mail. To send notifications by mail electronic action is already there, and while creating his element within the ACC, you can specify a JSP page for the email template. You can view the rest of the relevant documents:

    Oracle, Web ATG Commerce - Workflows

    Oracle, ATG trade Web - action workflow items

    I recommend you to consult the existing source of DeploymentEmailer in \Publishing\samples\Java and see different types of DeploymentEvent and States can be used, based on your requirement in your custom component. See also these API javadocs for the process and the events of deployment available:

    DeploymentEvent (ATG Java API)

    DeploymentServer (ATG Java API)

    ATG has a component/atg/dynamo/service/POP3Service to retrieve messages from a POP3 e-mail server, but it is mainly used to detect the bounced email. Not too sure if it helps or adjustment in your case, but still you can go through all the details to know what is already there:

    Bounced from Oracle ATG Web Commerce - E-mail

    You can also check the event InboundEmail and API javadocs for InboundEmailMessage which are used in this function of rebound detection E-mail:

    Oracle, ATG trade Web - InboundEmail event

    InboundEmailMessage (ATG Java API)

    Now based on all this, if you extend and customize a lot of things, that it would be little complex and tedious detect mail incoming approval based on its content and then advance your workflow. Another approach may be to put a URL in the e-mail template of your notification by e-mail that the approver will click and on the landing page, you can authenticate and advance your workflow to the needs.

  • How to run the .sql file

    Hello
    I want to execute .sql files in sql, as well as a fixed location, it may be the network location or to the system drive. so that I can use it on other computers when I'll work on another pc.

    so please tell me for the localization of network and disk solution. by default it look in the BIN directory

    I use oracle 10g.
    Thank you

    Apart from William Robertson's response:
    I'll make sure that I put it for everyone on a network share and map their in their connection to this directory, so it can be accessed as g: or letter that everything that you want. That would keep things manageable.

    For the question of privilege, please set up a separate thread.

    ----------
    Sybrand Bakker
    Senior Oracle DBA

  • How to import the pst file in outlook experss

    Hello team,

    How to import pst file in outlook experss?

    Kind regards

    Laxman Boitel

    OE has none this ability.  You can export Outlook to OE, but there is no way for OE just import into pst file.

    Steve

  • How to import the ifo file

    Hello - I am new to Adobe Premiere Pro and try to import video clips in ifo format, but they seem not to be in a supported format.  The videos were made on a Mac and I use a PC.

    Any suggestions?

    Thank you.

    Copy dvd to hard drive.

    Make sure that windows Explorer shows the function of extention.

    When you look in the folder video ts you will see ifo, bup and vob.

    If the first does not import these vob to change the extension name of vob to mpg. Then import it.

  • How to import the Excel file



  • IMPDP - how to import a dump file data including the dumpfiles Clustered.


    Hello

    Can someone suggest me how will import data from dumpfile using IMPDP, if the EXPDP has used several Dumpfiles clusters. ?

    I want to import a particular file will only, which will be possible?

    When I tried this way I was getting error.

    IMPDP USER/PWD@SID DIRECTORY is DUMPFILE DATA_PUMP_DIR = DUMPFILE01. DMP LOGFILE = IMPDP_DUMPFILE01. LOG SCHEMA = < NAME >

    ORA: 39002 INVALID OPERATION

    ORA: 39059 dump file set is incomplete

    ORA: 39246 cannot locate a master table in provided dumpfile breast.

    Note: The Exp was made in oracle 10g (10.2.0.4.0), I import the dump file in Oracle 11.2.0.1.0

    Please advise on this.

    Concerning

    Suresh

    This doesn't make much sense.  I guess you have several dumpfiles from an export order and you don't want to import 1.  How can you know what is in the dumpfile that you want to import?  Is the last thing that will do the job of data pump export the main table.  How do you know which file is in and then you're sure to import objects are in the same dumpfile.

    The answer is NO, this is not supported.  During the Data Pump import starts, it checks that all dumpfiles at time of export are included in the import job. If this is not the case, the job will fail.

    Dean

  • How to import the .exp/XPDL/XSDL file in ALBPM Studio 5.7

    Hello

    Can someone tell how to import the .exp file that develop in the ALBPM Studio 6.0/Oracle 10g r3 in 5.7 ALBPM BPM. I tried but can not able to import the project as suported by ALBPM 5.7 file is <. FPR.exp >. I also tried to import XPDL/XSDL developed in 6.0 to 5.7 but may not able to do. It is important the file but the only automatic operations are in space work (all other activities such as Interactive, Grab etc. are not displayed). The code inside this automatic activities aren't there.

    How to import the files/file in ALBPM 5.7

    Kind regards
    Sidonie

    Hi Francine,.
    I expect to import a project with an old version of BPM does not work or be supported.
    Most of the products are built to be fulll, incompatible back forward.

    I recommend you go to a version of the product in - trying to maintain two adds to expenses of maintenance and support.
    In this case to migrate your processes from 5.7 to 6.0 (or even 10g) would be bearable and the best way to go.

    Rgrds,
    Ian
    .

  • How to change the settings file?

    How to change the settings file in oracle 10g both in production as well as in stand-by, awaiting database configuration is manual not custody of data is used

    Of course, you can put the changes into a script and apply the script to both the production and standby databases.
    It is so basic I wonder why you do not find it by yourself.
    Oracle isn't rocket science, it is to have enough industry to put your brain to work.

    -----------
    Sybrand Bakker
    Senior Oracle DBA

  • How to import the logo into the clip and display it during the full clip

    Hi all

    I use Adobe Premiere Pro CS4.

    I am now a different DVD project that I've done since the time.

    Now, I'll use these them in a commercial of things if I want to add a logo on the clips to keep my rights... etc.

    Here is the situation:-

    (1) the import of the item in Adobe Premiere Pro CS4.

    (2) import the logo image I want to use.

    (3) right click on the video file and click Insert.

    Now, I want to know how to import the image file into the video so it's being there during the full clip?

    I tried several times to import it, but found that it displays seperatey after or before the clip or in the environment I want to be displayed during the entire film.

    Also, it is great when I posted I want to resize it to be in the upper right of the clamp.

    Thank you very much

    Sorry for the bad English.

    has taken more time than I thought... and it's just basic examples... may be refined more...

    with more time and reflection... .but gives you the basic ideas of... read the caches of combat and transparency... etc...

    -----------

    samples
    white background... .with hide by approach
    becomes transparent... letters, Black opaque, translucent gray

    transparent background
    black and white letters are shown as is with no cache by approach

    transparent background with matte...
    now white letters serve as mask and allow the image through only the white letters

Maybe you are looking for

  • How to access the Autocomplete

    Before moving to Firefox and every time I was on social media (who's who), that I could start typing a friends name and automatically it show up under a drop down. I don't have this anymore since I use firefox. Can you help me please?

  • What are the possible problems during the update of the BIOS?

    Hello everyone, I'm having a problem with my old Toshiba battery - "plugged in, does not support".The research on the internet I discovered that the BIOS update might solve the problem. On the other hand the BIOS update procedure can itself cause som

  • Cannot install Elvismx on 64-bit windows.

    Hi all Have a bit of a crisis. I bought a mydaq for a college project, and can't get elvismx to install. I use a laptop Sony Vaio of 64-bit win 8 and every time elvis tent to install I get the error "32-bit only" and the installation program quits. I

  • Windows Media Player xp no el player works

    El player of video of wimdows media funcionar dejo, cuando quiero mirar video promotion of the United Nations of the SMS o no lo puedo realize.

  • Cannot ping my computer from one computer another different subnet so that I could do the opposite.

    subnet A(192.168.137.0/24) is equipped with computers P and Q subnet B(192.168.7.0/24) a Q and R computers P is my windows 7 computer connected to the internet via the interface 10 and connected to Q interface 25 Q (Linux) has been set up to route pa