GET_SCHEMA_VIEW_VALUES output gives null

Hello

I am new to the Complutense University of MADRID. I use code RIDC below:

dataBinder.putLocal ("IdcService", "GET_SCHEMA_VIEW_VALUES");
dataBinder.putLocal ('schViewName', 'SecurityGroups');

ServiceResponse response = idcClient.sendRequest (userContext, dataBinder);
DataBinder serverBinder = response.getResponseAsBinder ();

ResultSet DataResultSet = serverBinder.getResultSet("SecurityGroups");

for (DataObject dataObject: resultSet.getRows ())
System.out.println ("security group:"+ dataObject.get ('SecurityGroups'));


I want that list to the security group as out put.
But the I'm getting is as below:

Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null
Security group: null

Please help me with what's wrong in the code.

Thank you.

Hello

Try this and see:

for (DataObject dataObject: resultSet.getRows ()) {}
System.out.println ("security group:" + dataObject.get ("dGroupName"));
}

Thank you
Srinath

Tags: Fusion Middleware

Similar Questions

  • Mediator - XSLT with text output gives "Null of the input Source.

    Hi all

    I have a transformation XSLT which is supposed to transform XML (questioned by a file adapter) in a plain text file. I tried the transformation in several XSLT test online tools (for example, xslttest.appspot.com) and the output as expected, so I tend to believe that there is nothing wrong with how I do the transformation. I use the Ombudsman to make the transformation to a file adapter to write the result to a .txt document.

    The XSLT I use for test purposes is as follows:

    <?xml version="1.0" encoding="UTF-8"?> 
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:a="urn:oracle:b2b:X12/V4010/850" version="1.0">
    
    <xsl:output method="text"/>
    <xsl:template match="/a:Transaction-850">
    
      <xsl:text>0010CTCTL</xsl:text>
      <xsl:value-of select="a:Internal-Properties/a:Data-Structure/a:Property[@Name='InterchangeUsageIndicator']" />
       
     </xsl:template>
    
    </xsl:stylesheet>
    

    I have an another XSLT that transforms into a file html via a mediator and it works as it should, but when I replace the file processing by a method of text production, the Ombudsman does not have the transformation and the file adapter gives the following error:

    «JCA Binding run 'Write' reference operations have to: null input Source.» Null input source. Input source is null. Please make sure that the outbound interaction receives a valid payload. ".

    I don't know why the XSLT is not working for a text output as HTML output seems to work very well. For HTML output, in the file adapter, I would set the output the same as the incoming schema schema, so I don't know if this is what is causing problems when you perform the transformation to a text output (I also tried to set the opaque scheme, but no )

    Is there something that I am missing so that the Ombudsman can make the transformation correctly and not give me the output in plain text format?

    Thank you all for your time and help!

    Well, I ended up being able to do from the payload of BPEL, using ora: processXSLT, encoding of the output of the transformation to base64binary and passing to the file as an opaque figure adapter. That seems to have done the work. If anyone knows another way to do it, please let me know! Thank you!

  • JDBC PreparedStatement gives null after the execution of a valid SELECT statement

    Hello

    I have the following code:
        public static String GetJobLogLocation(Connection connection, int jobId) throws SQLException
        {
            String sqlstr = "SELECT LOGFILE_NAME FROM apps.fnd_concurrent_requests WHERE REQUEST_ID = ?";
            PreparedStatement prest = connection.prepareStatement(sqlstr);
            prest.setInt(1, jobId);
            ResultSet rs1 = prest.executeQuery();
            String rv = null;
            if (rs1.next())
            {
                rv = rs1.getString(1);
                System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>" + rv);
            }
            rs1.close();
            prest.close();
            return rv;
        }
    As you can see, this function executes a select statement. Before I continue, let me first say that executing the exact same statement in PL/SQL Developer (external program) gives correct/expected results. In addition, run this on my Windows gives correct results environment. I seem to have this problem only on my Unix (SunOS) environment.

    in any case, I get out of this function (running against my Unix environment, of course):

    + > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > + null

    The thing is, it doesn't error out, which means that the result set contains a string, but the string is returned to me with the null value, even if there is a real valid result (that is, in this case, a path).

    Someone has an idea, what happens? I tried to use ojdbc6.jar AND ojdbc14.jar is, with the same results. I just don't understand...

    Thank you.

    Published by: 964530 on 4 January 2013 14:31

    Published by: EJP on 01/07/2013-17:48: added {noformat}
    {noformat} tags and removed your bizarre bold formatting. Please do this properly in future.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    ASCI says:
    I'm glad that this is a not prove to be a stupid question. At least I'm feeling a little justified due to this fact.

    There is no stupid question...; (o)

    So what remains is: your selection is too early. Can join after insertion, update to each line to trigger the table that loggs insert/update timestamp and the contents of the LOGFIILE_NAME field?

    Good bye
    DPT

  • Reading a field readonly/people with disabilities gives null pointer exception

    Hello

    I have an advanced table and when the user selects the employee number field, is filling another field number. But the user wanted the employee name field to be readonly. As a custom page, I put the employee field name readonly true. But when the user click on the button Add a line, I need to display the employee number line and employee name values above in the newly created row. I use rowAtRangeindex and get the values of the previous line. But when I read the employee of the name row.getAttribute("EmployeeName").toString () gives a null pointer exception. When the readonly is set to false, it works well. Can someone suggest me how can I fix. Make the employee name field readonly and at the same time, I should be able to read the value and set the value of the following line.

    Thank you
    HC

    I don't know how it can fail because you have found the value of the attribute of the line. Anyway, to create a value of the form, attach the attribute of VO employee name and try the row.getAttribute method and see if it works.

    Thank you
    Shree

  • Why my digital output give 1V instead of 5V?

    I have a PCI-6030E. When I look at its digital output to port0/$line0, I see 1V instead of 5V when it is 'high '. He read 0V when 'low '.

    Any ideas?

    Amit

    The only other thing I can think is that you don't have a good connection to DGND during the measurement or the line is maybe configured as an input.  If this isn't the case, the card may be faulty.

  • CS4: Clearly the source, but the motion blur of the output gives the export

    Hello!

    When exporting my videos imported into CS4, quick movement appears blurry, even if the source is much clearer.

    Demo 1: Source, output
    Demo 2: Source, output

    I was hoping someone could explain to me why the output is much more blurred and if possible, how to fix it.

    Sequence options:
    I tried a bunch of sequence different presets such as AVCHD/AVC-Intra/HDV/XDCAM/P2, or custom options (parameter FPS to 29.97, 30, 59.94, 60 fields/up/down, change the display format), but the output is blurry, no matter what I try. Made with upper/lower case fields does not; so the progressive setting is probably correct.

    I have also created a project without a sequence, imported the clip and it has exported directly; the output was still unclear.

    Export options:
    I used recommended an export preset for export on Vimeo (see paragraph CS4), which uses the H.264.

    Information about the source clips:
    They are filmed with my GoPro Hero HD cam to 720 p 60.
    MediaInfo output: video, audio
    Output of GSpot
    Interpretation of the creation of a clip

    My system:
    Windows 7. 4 GB of Ram, but 32 bits, up to 2.8 GB of RAM is used.
    Intel Core i3 550, 3.20 GHz
    Video card: Nvidia Geforce 8800GTS 320 MB of RAM
    1 monitor

    I hope that this information is sufficient, please let me know if there is anything I should add.
    Even if it is not possible to fix it, I hope someone can explain to me why the output is so different from the source!

    Thank you!

  • How can I delete a data: / / (null) we Marshals.gov of the browser Chrome on an iPad?

    I have an iPad Air and my browser Chrome was completely blocked from use with a likely virus. The description of ' Data: / / (null) we Marshals.gov ' to block the iPhone or iPad. Virus blocking US Marshals.gov data: / / (null) on iPhone or iPad is in fact one of these fake Scam FBI site called FBI moneypak virus, virus from the FBI, U.S. Department of Justice virus or malware security NSA. Popup of crime Marshals.gov US focuses on the mobile device user US iPhone or iPad.

    I would like to get a resolution from a source other than Yoo security for this issue as they declare that "it is ONLY $56 USD 69.95 $ 20% to only once with complete fix guaranteed. You can pay here:https://safecart.com/yoosecurity/yoocare/specialoffer and once you have finished the payment, then we can move forward. »

    Yoo Security Web site: Similarly, this malware blocker disguises US Marshals. Gov to send a $ 500 fine online through the use of the fake warning message to accuse people of doing illegal activities and to require those inexperienced prepaid card, but in reality most of the cases, mobile users did nothing illegal things online. Once we Marshals.gov data: / / (null) virus is downloaded in Apple defrost as the iPhone or iPad, it will show soon fake message warning U.S. Marshals crime to take over the entire screen for iPhone or iPad, saying your Apple ID and your mobile device has been blocked for security reasons. On top of this long US Marshals gov article message warning screen, it shows you real country, city, location details, and then he accuses you of listening * things, pirated, video music download and use or dissemination of protected, content that violates '' law of copyright and related rights. '' For these reasons, your mobile iPhone or iPad is locked as a punishment and it should also send a 500 dollar fine within 24 to 72 hours.

    When inexperienced users, iPhone or iPad are this data: / / (null) we Marshals.gov popping up on their mobile device, they will be freaked out at death and worried if police or FBI police Provost is going to catch him. They don't not think about this issue and note that U.S. Marshals fine warning is one thing to scam. Inexperienced users will soon buy a prepaid card and send money as the rogue application. Disguise the Government Department legitimate as this U.S. Marshals Gov or Department of Justice, police as the police FBI or authentic police is their tactic perfect incentive for cyber con man scamming people for money. A lot of people feel scared and guilty when they see such a policy solemn right WARNING notification showing on their device even if they have nothing wrong to commit a crime and violating the articles of the law. Because it looks very real and legitimate, and can also alert us Marshals.gov data: / / (null)' t be closed or output, these null warning message data to manage successfully to extort big money recently. US Marshals.gov data: / / (null) malware is categorized as a kind of Trojan horse malware, it also provides the ability to access personal information like bank account online, credit card, passwords or data trades etc. It is very dangerous for the security of the information. To remove this Marshals.gov we blocker earlier is a good idea to help protect the security of personal information.

    If we Marshals.gov warning message is displayed on your iPhone or iPad and you had an alert javascript fined, your device is infected withUS Marshals.gov scam malware, it will be difficult for you to remove it completely with antivirus, because there is no antivirus perfect for killing threats on iPhone or iPad and also this malware US Marshals scam is very delicate and can escape from security applications. In this case, manually remove with sufficient expertise online is the best way for users of iphone or compressed completely eliminate it.

    Main symptoms of US Marshals.gov data: / / (null) on iPhone or iPad

    1. it is designed to lock the iPhone or iPad and ask you to pay a fine of $ 500 to unlock your device. In fact, it's just a big scam.

    2. it locks your Apple device, claiming that you have violated the law of the local office by visiting illegal information online.

    3. as soon as this data: / / (null) we Marshals.gov target your Apple device, it totally blocks your access to the Internet and prevents you from doing anything here.

    4. it allows cybercriminals remote access to your iphone/ipad device from Apple to steal your personal information and other sensitive information.

    If you find all of the symptoms listed above showing on your iPhone, or your iPad, your device must be suffered with a malware infection (which can be this warning crime U.S. Marshals, Mandiant USA Cyber Security virus, Department of Justice Virus, Ukash Paysafecard Virus, virus notice of warning from the FBI, the virus of the Australian Federal Police and RCMP Ukash virus etc.) that blocks your access to your device. Welcome to contact Experts Online YooSecurity for manual removal guide. Also, we will provide a short removal guide below for reading and writing device.

    Please tell us how to eliminate viruses and get unlocked Chrome. Thank you!

    Start by looking at this trick:

    Phony 'technical support' / 'ransomware' popups and web pages

  • Œuvres of DCIterator, but VORowImpl does not, gives the NPE

    Type 1

    ------------------------

    DCIteratorBinding it = ADFUtils.findIterator ("TransientVOIterator");

    RowSetIterator laughs = it.getRowSetIterator ();

    laughs. Reset();

    If (rit.first ()! = null)

    {

    Line rw = rit.first ();

    System.out.println (RW. GetAttribute ("BinNo") + "-" + rw.getAttribute ("Qty")); "."

    }

    While (rit.hasNext ())

    {

    Line rw1 = rit.next ();

    If (rw1! = null)

    {

    System.out.println (RW1. GetAttribute ("BinNo") + "-" + rw1.getAttribute ("Qty")); "."

    }

    }

    Type 2

    --------------------------

    for (int j = 0; j < TransientVO.getViewObject () .getRowCount (); j ++)

    {

    System.out.println ("number of rows:" + TransientVO.getViewObject () .getRowCount () + "j:" + j);

    oracle.jbo.Row BLWRow = TransientVO.getRowAtRangeIndex (j);

    String l_disp ="";

    l_disp = bin_disposition.get (BLWRow.GetAttribute("BinNo"). ToString());

    if(BLWRow!=null)

    {

    System.out.println ("BinNo:" + BLWRow.getAttribute ("BinNo"));

    }

    }

    I have 40 lines in my TransientVO, Type1 gives me all the 40 lines, Type 2 stops after a few lines of 23/25 and gives nulls for the rest of the lines.

    For Type2, I tried both getRowCount() as getEstimatedRowCount()

    Type2 works perfectly if there are a few limited. or lines for example 10/15. But in the absence. lines increases, it throws NPE to some lines.

    I checked back VO of database is "all lines".

    did someone gone through this before?

    Thank you

    Rahul

    Hello Rahul,

    Please make following changes you won't get null pointer exception after recording 25.

    Open your defination file containing TransientVOIterator.

    Select it, and then change the property "range size = - 1" instead of 25. in the property inspector

  • Run time output of DBMS_OUTPUT. PUT_LINE

    I would like to know why DBMS_OUTPUT. Put_line output gives only after the end of the execution of the procedure. I wonder why Oracle has not provided a package for the output of the run time.

    user10566312 wrote:
    I would like to know why DBMS_OUTPUT. Put_line output gives only after the end of the execution of the procedure. I wonder why Oracle has not provided a package for the output of the run time.

    It's because of the client server architecture.

    SQL and PL/SQL processes run on the database server.
    The database server has no access to clients, or screen keyboard, so cannot accept entries to the client keyboard, or write the output to the screen of the client.
    When the client software issues a statement to the database, it uses something like for example of SQL * more to establish a connection to the database, submit this request to the database and then waits for the request to complete, eventually return some results from that (e.g. the results of a SQL query).
    DBMS_OUTPUT does not write to any screen... it puts just the data that you specify in the DBMS_OUTPUT buffer. It is then up to the client software to request the contents of this buffer, but the client software cannot do that when the request he made was finished (only a single statement between client and server can be converted at any time). That's why you issue your request so the output once the query is complete.

    Oracle provides a way for you to run output at the time, if you want to start doing things with the DBMS_PIPE package, etc., although for the follow-up of the execution, I have a package that writes my 'output' to a table on the database by using an autonomous transaction and then the content of this table can be viewed from a second session While the first session is still being requested process. Similarly, you may have your 'exit', writes to a file on the database server using something like UTL_FILE and then you would be able to view the contents of this file running, as long as you open and close the file and make sure file buffers have been empty etc.

    DBMS_OUTPUT is not the tool to use if you want to display the output of the run time. It's not a fault of Oracle, it's just your lack of understanding of what tools do this work. ;)

  • Need to fix SQL Join so that charges null return 0

    I'm a newbie and have created a large query that grouped returns counts of maintenance records grouped by each paragraph order special maintnance counties apply to. The great qoeks of motion, but the only problem is when maintenance is done for a particular paragraph, paragraph appears at all in the query results. I need to get him back all the paragraph numbers and a zero next to the paragraphs which had no record of maintenance associated with them.

    Here's my query SQL with SQL to create all the tables and fill the sample data so you can see the application in action.
    You'll see when you run the query that paragraphs 161, 161D, 161I and 161J do not appear in the query results, there is no record of maintenance for them, but they are listed in the
    pm_requirements_table. All paragraphs should appear in the results, if they have maintenance records, and if no records, they must have a zero next to them.

    As always, any help is appreciated.

    -- Query
    SELECT lpm_paragraph_mapping_table.publication_paragraph, pm_requirements_table.description, pm_requirements_table.frequency, lpm.equipment_ident, count(lpm_paragraph_mapping_table.publication_paragraph) AS activities_performed 
    FROM lpm 
    JOIN fsep ON fsep.fac_id = lpm.fac_ident AND fsep.facility = lpm.fac_type 
    JOIN lpm_paragraph_mapping_table ON trim(lpm.publication_paragraph) = lpm_paragraph_mapping_table.paragraph_alias_mapping
    JOIN pm_requirements_table ON pm_requirements_table.publication_order = lpm_paragraph_mapping_table.publication_order AND pm_requirements_table.publication_paragraph_number = lpm_paragraph_mapping_table.publication_paragraph 
    WHERE trim(lpm.publication_order) = '6310.19A'
    AND TRUNC(lpm.start_date,'YEAR') = TO_DATE('01/01/2010','MM/DD/YYYY')
    AND fac_ident = 'EWR'  
    GROUP BY lpm_paragraph_mapping_table.publication_paragraph, pm_requirements_table.description, pm_requirements_table.frequency, lpm.equipment_ident 
    ORDER BY lpm_paragraph_mapping_table.publication_paragraph ASC;
    CREATE TABLE "LPM"
      (
        "LOG_ID"              NUMBER(22,0) NOT NULL ENABLE,
        "FAC_IDENT"           VARCHAR2(5 BYTE),
        "FAC_TYPE"            VARCHAR2(5 BYTE),
        "CODE_CATEGORY"       NUMBER(22,0) NOT NULL ENABLE,
        "SUPPLEMENTAL_CODE"   VARCHAR2(1 BYTE),
        "MAINT_ACTION_CODE"   VARCHAR2(1 BYTE),
        "INTERRUPT_CONDITION" VARCHAR2(22 BYTE),
        "ATOW_CODE"           VARCHAR2(22 BYTE),
        "SECTOR_CODE"         VARCHAR2(5 BYTE),
        "LOG_STATUS"          VARCHAR2(3 BYTE) NOT NULL ENABLE,
        "START_DATE" DATE,
        "START_DATETIME" VARCHAR2(22 BYTE),
        "END_DATE" DATE,
        "END_DATETIME"      VARCHAR2(22 BYTE),
        "MODIFIED_DATETIME" VARCHAR2(22 BYTE),
        "WR_AREA"           VARCHAR2(6 BYTE),
        "SHORT_NAME"        VARCHAR2(15 BYTE),
        "EQUIPMENT_IDENT"   VARCHAR2(15 BYTE),
        "INTERVAL_CODE"     VARCHAR2(255 BYTE),
        "EARLIEST_DATE"     VARCHAR2(4000 BYTE),
        "EARLIEST_DATETIME" VARCHAR2(255 BYTE),
        "SCHEDULED_DATE" DATE,
        "SCHEDULED_DATETIME" VARCHAR2(22 BYTE),
        "LATEST_DATE" DATE,
        "LATEST_DATETIME"                VARCHAR2(22 BYTE),
        "WR_CREW_UNIT"                   VARCHAR2(10 BYTE),
        "WR_WATCH"                       VARCHAR2(1 BYTE),
        "PUBLICATION_ORDER"              VARCHAR2(30 BYTE),
        "PUBLICATION_ORDER_ORIGINAL"     VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH"          VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH_ORIGINAL" VARCHAR2(30 BYTE),
        "NUMBER_OF_TASKS"                VARCHAR2(25 BYTE),
        "LOG_SUMMARY"                    VARCHAR2(255 BYTE),
        "COMMENTS" CLOB,
        "RELATED_LOGS" CLOB,
        "LPMANTAC_ID" NUMBER
      );
    
    CREATE TABLE "FSEP"
      (
        "FAC_ID"               VARCHAR2(10 BYTE),
        "FACILITY"             VARCHAR2(5 BYTE),
        "FAC_LOCATION"         VARCHAR2(13 BYTE),
        "FAC_STATE"            VARCHAR2(2 BYTE),
        "REGION"               VARCHAR2(2 BYTE),
        "COST_CENTER"          VARCHAR2(8 BYTE) NOT NULL ENABLE,
        "ATOW_ORG"             VARCHAR2(150 BYTE),
        "ATOW_ORG_DESCRIPTION" VARCHAR2(150 BYTE),
        "SVC_AREA"             VARCHAR2(5 BYTE),
        "SECTOR_CODE"          VARCHAR2(5 BYTE),
        "FAC_CODE"             VARCHAR2(20 BYTE),
        "FAC_STATUS"           CHAR(1 BYTE) NOT NULL ENABLE,
        "RESTORATION_CODE"     VARCHAR2(2 BYTE),
        "RESPONSIBILITY_CODE"  CHAR(1 BYTE),
        "POWER_CODE"           CHAR(1 BYTE),
        "FAC_STATUS_DATE" DATE,
        "FAC_SWAP_DATE" DATE,
        "CHANGE_DATE"        VARCHAR2(22 BYTE),
        "GSA_ADDRESS"        VARCHAR2(15 BYTE),
        "INV"                VARCHAR2(2 BYTE),
        "SDP_TYPE"           VARCHAR2(5 BYTE),
        "SDP_IDENT"          VARCHAR2(4 BYTE),
        "CONTROL_IDENT"      VARCHAR2(10 BYTE),
        "REMOTE_IDENT"       VARCHAR2(10 BYTE),
        "MONITOR_IDENT"      VARCHAR2(4 BYTE),
        "RUNWAY"             VARCHAR2(3 BYTE),
        "ASSOC_AIRPORT"      VARCHAR2(4 BYTE),
        "FAC_MPS_SITE"       CHAR(4 BYTE),
        "FREQS_IN_PLACE"     NUMBER(22,0),
        "CONGRESSIONAL_DIS"  VARCHAR2(2 BYTE),
        "CONTRACT_MAINT_PER" NUMBER(22,0),
        "AIR_COND"           CHAR(1 BYTE),
        "FAC_UNITS"          NUMBER(22,0),
        "ET_PRIMARY_IDENT"   VARCHAR2(4 BYTE),
        "ET_PRIMARY_TYPE"    VARCHAR2(5 BYTE),
        "ENV_PRIMARY_IDENT"  VARCHAR2(4 BYTE),
        "ENV_PRIMARY_TYPE"   VARCHAR2(5 BYTE),
        "FAC_CODE_DESC"      VARCHAR2(100 BYTE),
        "STATUS_DESC"        VARCHAR2(50 BYTE),
        "RESTORATION_DESC"   VARCHAR2(32 BYTE),
        "POWER_DESC"         VARCHAR2(500 BYTE),
        "LATITUDE"           VARCHAR2(150 BYTE),
        "LONGITUDE"          VARCHAR2(150 BYTE),
        "ELEVATION"          VARCHAR2(22 BYTE),
        "MOD_COUNT"          VARCHAR2(22 BYTE),
        "HYPERLINK"          VARCHAR2(255 BYTE),
        "FSEPANTAC_ID"       NUMBER
    );
    
    CREATE TABLE "LPM_PARAGRAPH_MAPPING_TABLE"
      (
        "PUBLICATION_ORDER"       VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH"   VARCHAR2(30 BYTE),
        "PARAGRAPH_ALIAS_MAPPING" VARCHAR2(30 BYTE),
        "LPMTANTAC_ID"            NUMBER
    );
    
    CREATE TABLE "PM_REQUIREMENTS_TABLE"
      (
        "PUBLICATION_ORDER"            VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH_NUMBER" VARCHAR2(30 BYTE),
        "DESCRIPTION"                  VARCHAR2(4000 BYTE),
        "FREQUENCY"                    VARCHAR2(30 BYTE),
        "CHECK_OR_MAINTENANCE"         VARCHAR2(22 BYTE),
        "PRTANTAC_ID"                  NUMBER
    );
    
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127227902,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161K','161K','1',null, EMPTY_CLOB(), EMPTY_CLOB(),26648);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228002,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161F-J','161F-J','8',null, EMPTY_CLOB(), EMPTY_CLOB(),26649);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228102,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161E/H','161E/H','5',null, EMPTY_CLOB(), EMPTY_CLOB(),26650);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228202,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.25','6310.25','161CD','161CD','14',null, EMPTY_CLOB(), EMPTY_CLOB(),26651);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228302,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161AB','161AB','4',null, EMPTY_CLOB(), EMPTY_CLOB(),26652);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480402,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161K','161K','1',null, EMPTY_CLOB(), EMPTY_CLOB(),26657);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480502,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161F-J','161F-J','8',null, EMPTY_CLOB(), EMPTY_CLOB(),26658);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480602,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161E/H','161E/H','5',null, EMPTY_CLOB(), EMPTY_CLOB(),26659);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480702,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.25','6310.25','161CD','161CD','14',null, EMPTY_CLOB(), EMPTY_CLOB(),26660);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480802,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161AB','161AB','4',null, EMPTY_CLOB(), EMPTY_CLOB(),26661);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (120312402,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 1:15',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 2:15','5/27/2010 3:40','RADAR','SYS','IEWR','W','5/24/2010','5/24/2010 0:00',to_date('30-MAY-10','DD-MON-RR'),'5/30/2010 0:00',to_date('30-MAY-10','DD-MON-RR'),'5/30/2010 0:00',null,null,'6310.19A','6310.19A','161K','161K','1',null, EMPTY_CLOB(), EMPTY_CLOB(),26669);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (120312502,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 1:15',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 2:15','5/27/2010 3:40','RADAR','SYS','IEWR','W','5/24/2010','5/24/2010 0:00',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 0:00',to_date('30-MAY-10','DD-MON-RR'),'5/30/2010 0:00',null,null,'6310.19A','6310.19A','161F-J','161F-J','8',null, EMPTY_CLOB(), EMPTY_CLOB(),26670);
    
    Insert into FSEP (FAC_ID,FACILITY,FAC_LOCATION,FAC_STATE,REGION,COST_CENTER,ATOW_ORG,ATOW_ORG_DESCRIPTION,SVC_AREA,SECTOR_CODE,FAC_CODE,FAC_STATUS,RESTORATION_CODE,RESPONSIBILITY_CODE,POWER_CODE,FAC_STATUS_DATE,FAC_SWAP_DATE,CHANGE_DATE,GSA_ADDRESS,INV,SDP_TYPE,SDP_IDENT,CONTROL_IDENT,REMOTE_IDENT,MONITOR_IDENT,RUNWAY,ASSOC_AIRPORT,FAC_MPS_SITE,FREQS_IN_PLACE,CONGRESSIONAL_DIS,CONTRACT_MAINT_PER,AIR_COND,FAC_UNITS,ET_PRIMARY_IDENT,ET_PRIMARY_TYPE,ENV_PRIMARY_IDENT,ENV_PRIMARY_TYPE,FAC_CODE_DESC,STATUS_DESC,RESTORATION_DESC,POWER_DESC,LATITUDE,LONGITUDE,ELEVATION,MOD_COUNT,HYPERLINK,FSEPANTAC_ID) values ('EWR','ASR','NEWARK','NJ','EA','081FH','WEW1D','Newark Radar/Env SSC','ESA','EA1FH','453ACA','D','4','A','A',to_date('01-AUG-53','DD-MON-RR'),to_date('01-APR-98','DD-MON-RR'),'10/13/2010 9:22','2K50','R1','TRACO','N90','QHM','EWR','QHM',null,'EWR','ZNY ',0,'10',0,'A',1,null,null,null,null,'ASR-9   STANDARD FACILITY','Commissioned/Full Service','Up to 4 Hours','Denotes a commercial power source a standby engine generator and an Uninterruptible Power Supply (UPS).  This configuration shall provide uninterruptible conditioned power with AC voltage in and AC voltage out.','40.69033','-74.16278','5','2','http://technet.faa.gov/fsep/fsepDetail.asp?recordno=ASREWR',38191);
    Insert into FSEP (FAC_ID,FACILITY,FAC_LOCATION,FAC_STATE,REGION,COST_CENTER,ATOW_ORG,ATOW_ORG_DESCRIPTION,SVC_AREA,SECTOR_CODE,FAC_CODE,FAC_STATUS,RESTORATION_CODE,RESPONSIBILITY_CODE,POWER_CODE,FAC_STATUS_DATE,FAC_SWAP_DATE,CHANGE_DATE,GSA_ADDRESS,INV,SDP_TYPE,SDP_IDENT,CONTROL_IDENT,REMOTE_IDENT,MONITOR_IDENT,RUNWAY,ASSOC_AIRPORT,FAC_MPS_SITE,FREQS_IN_PLACE,CONGRESSIONAL_DIS,CONTRACT_MAINT_PER,AIR_COND,FAC_UNITS,ET_PRIMARY_IDENT,ET_PRIMARY_TYPE,ENV_PRIMARY_IDENT,ENV_PRIMARY_TYPE,FAC_CODE_DESC,STATUS_DESC,RESTORATION_DESC,POWER_DESC,LATITUDE,LONGITUDE,ELEVATION,MOD_COUNT,HYPERLINK,FSEPANTAC_ID) values ('EWR','GS','NEWARK','NJ','EA','081FJ','WEW1C','Newark Nav/Comm SSC','ESA','EA1FJ','314AWA','D','24','A','D',to_date('01-DEC-52','DD-MON-RR'),to_date('01-APR-94','DD-MON-RR'),'9/24/2009 9:51','2K51','6','ATCT','EWR','EWR',null,'QHM','04L','EWR','ZNY ',0,'10',0,'A',1,null,null,null,null,'MARK 1F (SIDEBAND REFERENCE) SINGLE EQUIPMENT CAT I FAC','Commissioned/Full Service','Up to 24 Hours','Denotes a commercial power source and a battery standby power system.  A UPS is not included in this category.','40.68395','-74.17291','11','2','http://technet.faa.gov/fsep/fsepDetail.asp?recordno=GSEWR',38212);
    
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161A','161',1708);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161A','161AB',1709);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161B','161',1736);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161B','161AB',1737);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161',1765);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-->J)',1766);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-->K)',1769);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-D)',1770);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-G)',1771);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-J)',1772);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A--J)',1773);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-K)',1774);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161.(A-C).',1775);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161',1793);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161(A-->J)',1794);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161(A-->K)',1797);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161(A-D)',1798);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(2)','161',1821);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(2)','161(A-->J)',1822);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(2)','161(A-->K)',1825);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161E','161E/H',1826);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161F','161E/H',1827);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161G','161E/H',1828);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161H','161E/H',1829);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161K','161K',1830);
    
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161A','Check transmitter average rf power output','WEEKLY',null,3);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161B','Check transmitter VSWR','WEEKLY',null,4);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161C','Check RMS transmitter pulse width','WEEKLY',null,5);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(1)','Check filament current','WEEKLY',null,6);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(2)','Check focus coil current','WEEKLY',null,7);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(3)','Check Klystron voltage','WEEKLY',null,8);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(4)','Check Klystron current','WEEKLY',null,9);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(5)','Check PFN voltage','WEEKLY',null,10);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(6)','Check vacuum pump current','WEEKLY',null,11);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161E','Check target receiver MDS','WEEKLY',null,12);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161F','Check target receiver NF','WEEKLY',null,13);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161G','Check target receiver recovery','WEEKLY',null,14);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161H','Check weather receiver MDS','WEEKLY',null,15);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161I','Check weather receiver NF','WEEKLY',null,16);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161J','Check weather receiver recovery','WEEKLY',null,17);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161K','Check spare modem operation','WEEKLY',null,18);
    Published by: George Heller on July 13, 2011 10:34

    Hello

    George Heller wrote:
    ... The exact results I wanted to obtain data on the forum is below...

    'PUBLICATION_PARAGRAPH', 'DESCRIPTION', 'FREQUENCY', 'EQUIPMENT_IDENT', 'ACTIVITIES_PERFORMED '.
    161 'a', "Transmitter Check average rf power output", "WEEKLY", "IEWR", 2
    '161 b', "Transmitter Check ROS", "WEEKLY", "IEWR", 2
    "161", "check RMS transmitter pulse width", "WEEKLY", "IEWR", 2
    "" 161 D (1) ","Check filament current","WEEKLY"," ' ", 0
    "" 161 D (2) ","Check focus coil current","WEEKLY"," ' ", 0
    "" 161 D (3) ","Klystron check tension","WEEKLY"," ' ", 0
    "" 161 D (4) ","Check Klystron current","WEEKLY"," ' ", 0
    "" 161 D (5) ","Check Tension of NFP","WEEKLY"," ' ", 0
    "" 161 D (6) ","Check current vacuum pump","WEEKLY"," ' ", 0
    "161F', 'Receiver target check MDS', 'WEEKLY', 'IEWR', 2
    "161F", "Check receiving target NF", "WEEKLY", "IEWR", 2
    '161G', ' Check target receiver recovery ","WEEKLY","IEWR", 2
    '161H', 'Receiver weather check MDS', 'WEEKLY', 'IEWR', 2
    "161I","Check weather receiver NF ', 'WEEKLY',' ', 0 '.
    '161J', 'The weather receiver Check recovery',' ', 0 '.
    "161K',' operation spare modem check", "WEEKLY", "IEWR", 3

    Please put in the form results. Who do you think is easier to read and understand: the results you've posted higher, or these?

    `                                                            EQUI  ACTIV
    PUBLICAT                                                     PMEN  ITIES
    ION_PARA                                                     T_ID  _PERF
    GRAPH    DESCRIPTION                               FREQUENCY ENT   ORMED
    -------- ----------------------------------------- --------- ----- -----
    161A     Check transmitter average rf power output WEEKLY    IEWR      2
    161B     Check transmitter VSWR                    WEEKLY    IEWR      2
    161C     Check RMS transmitter pulse width         WEEKLY              0
    161D(1)  Check filament current                    WEEKLY              0
    161D(2)  Check focus coil current                  WEEKLY              0
    161D(3)  Check Klystron voltage                    WEEKLY              0
    161D(4)  Check Klystron current                    WEEKLY              0
    161D(5)  Check PFN voltage                         WEEKLY              0
    161D(6)  Check vacuum pump current                 WEEKLY              0
    161E     Check target receiver MDS                 WEEKLY    IEWR      2
    161F     Check target receiver NF                  WEEKLY    IEWR      2
    161G     Check target receiver recovery            WEEKLY    IEWR      2
    161H     Check weather receiver MDS                WEEKLY    IEWR      2
    161I     Check weather receiver NF                 WEEKLY              0
    161J     Check weather receiver recovery           WEEKLY              0
    161K     Check spare modem operation               WEEKLY    IEWR      3
    

    Who do you think will encourage people to answer your question? Who do you think is more likely to lead to accurate solutions?

    The following query is pretty close to what you asked:

    SELECT       req.publication_paragraph_number     AS publication_paragraph
    ,       req.description
    ,       req.frequency
    ,       MAX (lpm.equipment_ident)          AS equipment_ident
    ,       COUNT (fsep.fac_id)               AS activities_performed
    FROM           pm_requirements_table          req
    LEFT OUTER JOIN  lpm_paragraph_mapping_table      pmap  ON   req.publication_order         = pmap.publication_order
                                        AND  req.publication_paragraph_number = pmap.publication_paragraph
    LEFT OUTER JOIN  lpm                          ON   TRIM (lpm.publication_paragraph) = pmap.paragraph_alias_mapping
                                          AND  TRIM (lpm.publication_order)         = '6310.19A'
                                        AND  TRUNC(lpm.start_date, 'YEAR')    = TO_DATE ('01/01/2010', 'MM/DD/YYYY')
                                        AND  lpm.fac_ident              = 'EWR'
    LEFT OUTER JOIN  fsep                          ON   fsep.fac_id                   = lpm.fac_ident
                                        AND  fsep.facility               = lpm.fac_type
    GROUP BY  req.publication_paragraph_number
    ,            req.description
    ,       req.frequency
    ORDER BY  req.publication_paragraph_number
    ;
    

    "As you can see, the last two columns, equipment_ident and actiovities_performed, are not what you asked for publication_paragraph ' 161 C". I guess just what you want in these columns. Guess, this isn't a very effective way to solve problems. "Explain what you want in these columns, and how derive you these values in the case of publication_paragraph ' 161 C".

  • getDataBase method returns null

    In the IOM API, I am able to connect to the server of the IOM, but getDatabase gives null

    tcDataProvider db = getDataBase ();
    System.out.Print (dB);... gives null

    Now, it is not null.

    You can move forward.

  • ActionScript 3.0 - when all items are drop, switch to the next scene.

    I want to drag and drop to some coordinates.

    I have two blocks of mobile homes, where player can drag any block in initially to support 1. Then drag another block for the second time on support 2.

    When block does not strike has 1 or 2, it will take end and this block to the original mark.

    When the hit two two details of the holder, then move to the next scene.

    import flash.events.Event;

    Stop (); stop the scene

    var startingPt:Point = new Point (). variable declaration

    var movingBlock:Sprite;

    set var: int = 0; initialize

    var blok1:Boolean = false;

    var blok2:Boolean = false;

    point var endpoint: Boolean = false;

    Block3.addEventListener (MouseEvent.MOUSE_DOWN, startBlockMove); function

    Block2.addEventListener (MouseEvent.MOUSE_DOWN, startBlockMove);

    function startBlockMove(evt:MouseEvent):void {//the object moving

    movingBlock = Sprite (evt.currentTarget);

    startingPt.x = movingBlock.x;

    startingPt.y = movingBlock.y;

    stage.addEventListener (MouseEvent.MOUSE_MOVE, moveBlock);

    }

    function moveBlock(e:MouseEvent):void {call //object based on the mouse coordinates

    movingBlock.x = stage.mouseX;

    movingBlock.y = stage.mouseY;

    }

    stage.addEventListener (MouseEvent.MOUSE_UP, stopMotion); stop moving

    function stopMotion(evt:MouseEvent):void {}

    stage.removeEventListener (MouseEvent.MOUSE_MOVE, moveBlock);

    snapInPlace();

    movingBlock = new Sprite();

    startingPt = new focus();

    }

    function snapInPlace (): void {/ /}

    If (blok1 == false | blok2 == false) {}

    If (holder.hitTestObject (movingBlock)) {//object1 hit the goal

    movingBlock.x = holder.x;

    movingBlock.y = holder.y;

    place ++;

    movingBlock.removeEventListener (MouseEvent.MOUSE_DOWN, startBlockMove);

    blok1 = true;

    }

    ElseIf (holder1.hitTestObject (movingBlock)) {//object2 hit the goal

    movingBlock.x = holder1.x;

    movingBlock.y = holder1.y;

    movingBlock.removeEventListener (MouseEvent.MOUSE_DOWN, startBlockMove);

    blok2 = true;

    }

    else {}

    movingBlock.x = startingPt.x;//if does not hit the goal, the return of original coordinates

    movingBlock.y = startingPt.y;

    blok1 = false;

    blok2 = false;

    }

    }

    Else if (blok1 == true & & blok2 == true) {}

    setTimeout (function () {endpoint = true;)

    trace ("You died!");

    removeEventListener (Event.REMOVED, snapInPlace);

    (Stop (1, "scene 2");}, 1000);

    }

    }

    The output gives the error,

    TypeError: Error #2007: hitTestObject parameter must be null.

    at flash.display::DisplayObject/_hitTest()

    at flash.display::DisplayObject/hitTestObject()

    at Untitled_2_fla::MainTimeline/snapInPlace() [Untitled_2_fla. MainTimeline::frame2:38]

    at Untitled_2_fla::MainTimeline/stopMotion() [Untitled_2_fla. MainTimeline::frame2:31]

    Where to frame2:38

    If (holder.hitTestObject (movingBlock)) {}

    and frame2:31

    snapInPlace();

    How to solve this problem?

    Use this code:

    var startingPt:Point = new focus();

    set var: int = 0;

    Block2.buttonMode = block3.buttonMode = true;

    Block2.addEventListener (MouseEvent.MOUSE_DOWN, startBlockMove);

    Block3.addEventListener (MouseEvent.MOUSE_DOWN, startBlockMove);

    Block2.addEventListener (MouseEvent.MOUSE_UP, stopBlockMove);

    Block3.addEventListener (MouseEvent.MOUSE_UP, stopBlockMove);

    function startBlockMove(evt:MouseEvent):void

    {

    startingPt.x = evt.target.x;

    startingPt.y = evt.target.y;

    evt.target.startDrag ();

    }

    function stopBlockMove(evt:MouseEvent):void

    {

    evt.target.stopDrag ();

    If (evt.target == block2 & evt.target.hitTestObject (holder1))

    {

    evt. Target.x = holder1.x

    evt. Target.y = holder1.y

    evt.target.removeEventListener (MouseEvent.MOUSE_DOWN, startBlockMove);

    place += 1;

    }

    ElseIf (evt.target == block3 & evt.target.hitTestObject (holder2))

    {

    evt. Target.x = holder2.x

    evt. Target.y = holder2.y

    evt.target.removeEventListener (MouseEvent.MOUSE_DOWN, startBlockMove);

    place += 1;

    }

    on the other

    {

    evt. Target.x = startingPt.x

    evt. Target.y = startingPt.y

    }

    ////

    if(placed == 2)

    {

    Stop (1, "scene 2");

    }

    }

  • roll up summation report need a little help.

    Hello guys I have a small question and seems to have struck a written block and I was wondering if someone can help me.
    I have the tables as such
    CREATE TABLE "JAMTESTTRANS"
      (
        "LITERAL1" VARCHAR2(6 BYTE),
        "AMOUNT"   NUMBER(17,2)
      )
      
    
    
      CREATE TABLE "JAMTEST"
      (
        "LITERAL1"      VARCHAR2(6 BYTE),
        "LITERAL1_PRED" VARCHAR2(6 BYTE),
      )
    
    
    --here is the data
    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('67120',  '6712')
    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('6712',   '671')
    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('67130',  '6713')
    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('6713',    '671')
    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('671', '67')
    
    
    INSERT INTO "JAMTESTTRANS" (LITERAL1, AMOUNT) VALUES ('67120', '50')
    INSERT INTO "JAMTESTTRANS" (LITERAL1, AMOUNT) VALUES ('67130', '90')
    INSERT INTO "JAMTESTTRANS" (LITERAL1, AMOUNT) VALUES ('67120', '20')
    INSERT INTO "JAMTESTTRANS" (LITERAL1, AMOUNT) VALUES ('67120', '10')
    now I want to do is end up with the sum of 67
    Since 67120 and 67130, both have the predecessor of 671 I would look for a level and get the $ 67.
    Can't seem to get it.
    Any help would be grateful.


    desired output
    LITERAL1                AMOUNT
    67                          170
    
     
    I know I have to use connect by before somewhere, but how? »

    Hi, Miguel.

    mlov83 wrote:
    Frank, good to see you answer this question. you are brilliant my friend but what if I did

    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('40500', '4050')
    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('4050', '405')
    INSERT INTO "JAMTEST" (LITERAL1, LITERAL1_PRED) VALUES ('405', '40')
    

    Be sure to post the results desired from these sample data.
    Did you mean view all additional lines for jamtesttrans? The solutions I posted earlier will only display nodes that have descendants in jamtesttrans. If you want to include these lines in the output (list NULL until the amount total, perhaps), then do an outer join between the two tables.

    Do you need to CONNECT BY, or you can, just by looking at the values of literal1, if one is one descendant of the other?
    If you really need to CONNECT BY, then you might want this:

    WITH     got_tree     AS
    (
         SELECT     CONNECT_BY_ROOT     literal1_pred     AS root
         ,     literal1
         FROM     jamtest
         START WITH     literal1_pred     IN ('40', '67')
         CONNECT BY     literal1_pred     = PRIOR literal1
    )
    SELECT    t.root
    ,       SUM (j.amount)  AS total_amount
    FROM               got_tree       t
    LEFT OUTER JOIN       jamtesttrans       j  ON  t.literal1  = j.literal1
    GROUP BY  t.root
    ;
    

    Required guess that will give you a list containing between 1 and 50 roots (like ' 40 'and ' 67') at a time. If this isn't what you want, then explain what you want.

    now, I want to be able to have the total to 67, but also for 40? I know I've done my first much simpler test then is my real job. but the real table im working with a over 1mill records I don't think I can post here :-D

    No, it's not practical post 1 000 000 lines of data. Do you really need to? Can't give you an example of what you need with no more than 10 lines of each table?

  • How to load external png image via xml?

    Can someone help me with the addition of a png image to a mc with an instance name.

    I want only to display a single image (no Gallery)

    I would like to get the url of the image via an xml.

    Here's a copy of my current action script which has already pulled in xml data that includes the node with the url of the photo.

    import flash.events.Event;

    import flash.events.MouseEvent;

    import flash.net.URLLoader;

    import flash.net.URLRequest;

    var myXML:XML;

    var myLoader:URLLoader = new URLLoader();

    myLoader.load (new URLRequest ("links.xml"));

    myLoader.addEventListener (Event.COMPLETE, processXML);

    function processXML(e:Event):void

    {

    myXML = new XML (e.target.data);

    trace (myXML);

    menumv.carbtn.addEventListener (MouseEvent.CLICK, openCURL);

    menumv.edubtn.addEventListener (MouseEvent.CLICK, openEURL);

    menumv.psybtn.addEventListener (MouseEvent.CLICK, openPURL);

    menumv.stubtn.addEventListener (MouseEvent.CLICK, openSTURL);

    menumv.busbtn.addEventListener (MouseEvent.CLICK, openBURL);

    menumv.shabtn.addEventListener (MouseEvent.CLICK, openSURL);

    studentmv.stuname.Text = myXML.student.name;

    }

    function openCURL(e:MouseEvent):void

    {

    navigateToURL (new URLRequest (myXML.car.url));

    }

    function openEURL(e:MouseEvent):void

    {

    navigateToURL (new URLRequest (myXML.edu.url));

    }

    function openPURL(e:MouseEvent):void

    {

    navigateToURL (new URLRequest (myXML.psy.url));

    }

    function openSTURL(e:MouseEvent):void

    {

    navigateToURL (new URLRequest (myXML.stu.url));

    }

    function openBURL(e:MouseEvent):void

    {

    navigateToURL (new URLRequest (myXML.bus.url));

    }

    function openSURL(e:MouseEvent):void

    {

    navigateToURL (new URLRequest (myXML.sha.url));

    }

    And here's a copy of the node that contains the url

    <menu>
        <student>
        <name>testnamehere</name>
        <photo>http://10.0.0.2/test/photos/testnamephoto.jpg</photo>
        </student>
    </menu>
    

    I saw this tutorial but it was for a gallery, and I couldn't not to hack and slash to do what I want.

    http://Tuts.flashmint.com/creating-a-simple-XML-Gallery-in-ActionScript3/

    Thanks again in advance for any help.

    Check if this gives null if yes it would output menu.student.photo

    trace (Student.photo)

    var _request:URLRequest = new URLRequest (student.photo);

    var _ldr = new Loader();

    MC's movieclip where you add your image

    mc.addChild (_ldr);

    _ldr. Load (_REQUEST);

    _ldr.contentLoaderInfo.addEventListener (Event.COMPLETE, load_complete, false, 0, true);

    function load_complete (event): void

    {

    whatever it is may be melted in the image

    }

  • wrong exit using the lead feature

    Hello

    I tried to get the number of days between the date of hiring gap in the emp table.
    So the next question
    select hiredate,hiredate -(lead(hiredate) over (partition by empno order by hiredate ))
    from emp
    the foregoing gives NULL values for the columns of the second.

    But if I try the following
    select hiredate,hiredate -(lead(hiredate) over (partition by deptno order by hiredate ))
    from emp
    gives wrong result... and I don't want the release of deptno... I want the output by records for all the...

    Where I am wrong here?

    Thank you

    You don't need to PARTITION BY coz it will consolidate the data...

    SQL> select hiredate,hiredate -(lead(hiredate) over (order by hiredate )) diff
      2  from emp;
    
    HIREDATE        DIFF
    --------- ----------
    17-DEC-80        -65
    20-FEB-81         -2
    22-FEB-81        -39
    02-APR-81        -29
    01-MAY-81        -39
    09-JUN-81        -91
    08-SEP-81        -20
    28-SEP-81        -50
    17-NOV-81        -16
    03-DEC-81          0
    03-DEC-81        -51
    
    HIREDATE        DIFF
    --------- ----------
    23-JAN-82      -1912
    19-APR-87        -34
    23-MAY-87
    
    14 rows selected.
    

Maybe you are looking for

  • When I click on the 'new tab' + sign it flashes blue but the window does not open

    mouse on the new tab brings up the message 'open a new tab '.clicking on new tab causes the + sign flashing in blue but window does not open. If I loaded AVG PC tuneup?

  • Re: AC adapter used by portable computers diverge

    HelloI have an A660-12 q and L670D-146.Laptops have diverge Adpater AC/DC (PA3714U-1ACA = L670D / PA3716E-1AC3). Technical data and plug are almost the same. Can it have problem to swap cards in the other? Best regards for your answers

  • Lumia 520 bluetooth disconect after 5 seconds

    Hello, when I connect my 520 Lumia by bluetooth, the device disconnects after 5 seconds by itself. I installed the latest version of the bluetooth driver, but the problem persists. What should I do?

  • Why Flash my screen when I discover the ITUNES Store?

    Why my PC screen flashing continuously when connected to the web page of ITUNES Store?  This started after updating to the latest version of ITUNES.

  • buckles related

    Hello! In the file attacched, I write a table using loop1. In the loop2 2 I build an array of arrays, but im not able to link the two loops to add a new table to table every time 2 loop in loop change 1. Any suggestion? Thank you Antonio