[8i] need help on query with a subquery/inline using UNION ALL view

OK, first of all let's start with some background info:
(1) I work in 8i
(2) some samples for my problem (please excuse the additional columns of data not used to this problem; I already had the sample laying around tables):
CREATE TABLE     vbom
(
     part_nbr     char(25)     
,     bom_doc_nbr     char(25)     
,     bill_level     number          
,     comp_part_nbr     char(25)     
,     qty_per          number
);
--technically has primary and foreign keys, but whatever...
--part_nbr is your top level (0) parent
--comp_part_nbr is the specific child
--bom_doc_nbr is the parent of the child (comp_part_nbr) and may be either part_nbr or a child of part_nbr that is also a parent

INSERT INTO vbom
VALUES ('SAMPLE-1','SAMPLE-1', 1,'SAMPLE-2',1);

CREATE TABLE     rqmt
(
     comp_part_nbr     char(25)     
,     prnt_part_nbr     char(25)
,     ord_nbr          char(10)     
,     sub_ord_nbr     char(3)
,     qty_reqd     number
,     qty_issued     number
,     date_reqd     date
,     rqmt_stat     char(2)
,     rqmt_type     char(2)
);

INSERT INTO rqmt
VALUES ('SAMPLE-1','','S0000TEST1',001,30,0,TO_DATE('06/01/2010','mm/dd/yyyy'),'AL','ID');
INSERT INTO rqmt
VALUES ('SAMPLE-2','SAMPLE-1','0000054963',001,15,10,TO_DATE('04/01/2010','mm/dd/yyyy'),'CL','DD');
INSERT INTO rqmt
VALUES ('SAMPLE-2','SAMPLE-1','0000032562',001,5,5,TO_DATE('04/15/2010','mm/dd/yyyy'),'IS','DD');
INSERT INTO rqmt
VALUES ('SAMPLE-2','SAMPLE-1','0000022341',001,5,4,TO_DATE('04/20/2010','mm/dd/yyyy'),'SH','DD');
INSERT INTO rqmt
VALUES ('SAMPLE-2','SAMPLE-1','0000043469',001,10,0,TO_DATE('04/30/2010','mm/dd/yyyy'),'AL','DD');
INSERT INTO rqmt
VALUES ('SAMPLE-2','SAMPLE-1','0000071235',001,10,0,TO_DATE('05/01/2010','mm/dd/yyyy'),'OP','DD');
INSERT INTO rqmt
VALUES ('SAMPLE-2','SAMPLE-1','0000061224',001,5,0,TO_DATE('05/15/2010','mm/dd/yyyy'),'FP','DD');
INSERT INTO rqmt
VALUES ('SAMPLE-2','SAMPLE-1','0000033294',001,5,0,TO_DATE('05/25/2010','mm/dd/yyyy'),'PL','DD');
So, my first question was that I needed to find in the table RQMT who corresponded with everything on my VBOM have vbom.part_nbr table ' SAMPLE-1'. '. (Please note, in reality the VBOM table has thousands of rows of data, rather than just the 1 I have planned, some of them sharing the same vbom.part_nbr, others not). In addition to finding all RQMT data corresponding to the vbom.comp_part_nbr to vbom.part_nbr (where vbom.comp_part_nbr = rqmt.comp_part_nbr), I also need to find RQMT data for vbom.part_nbr itself (then, records where vbom.part_nbr = rqmt.comp_part_nbr).

To resolve this problem, I started with the following query:
SELECT     v.bill_level          AS bill_lvl
,     v.comp_part_nbr          AS component
,     v.bom_doc_nbr          AS parent
FROM     VBOM v
WHERE     v.part_nbr     ='SAMPLE-1'
UNION ALL
SELECT     0               AS bill_lvl
,     'SAMPLE-1'          AS component
,     NULL               AS parent
FROM DUAL
It allows me to add a line to the top of the page parent (vbom.part_nbr), which does not exist in vbom.
My first question is, is UNION ALL of the best way to do it, or could I do a kind of instruction based on the line number box (or something) that would be better? (in this application, or in the final query)

Then, I used the above query as a point of view online:
SELECT     a.bill_lvl
,     a.component
,     a.parent
,     r.ord_nbr
,     r.sub_ord_nbr
,     r.qty_reqd
FROM     (
     SELECT     v.bill_level          AS bill_lvl
     ,     v.comp_part_nbr          AS component
     ,     v.bom_doc_nbr          AS parent
     FROM     VBOM v
     WHERE     v.part_nbr     ='SAMPLE-1'
     UNION ALL
     SELECT     0               AS bill_lvl
     ,     'SAMPLE-1'          AS component
     ,     NULL               AS parent
     FROM DUAL
     ) a
,     RQMT r
WHERE     a.component     = r.comp_part_nbr
The problem here is that I have the same results (7 files) with the above query as I do with:
SELECT     v.bill_level
,     v.comp_part_nbr
,     v.bom_doc_nbr
,     r.ord_nbr
,     r.sub_ord_nbr
,     r.qty_reqd
FROM     VBOM v
,     RQMT r
WHERE     v.comp_part_nbr     = r.comp_part_nbr
AND     v.part_nbr     = 'SAMPLE-1'
.. .it does not include RQMT recording for rqmt.comp_part_nbr = "SAMPLE-1'.

To understand what was going on, I ran:
SELECT     a.bill_lvl
,     a.component
,     a.parent
FROM     (
     SELECT     v.bill_level          AS bill_lvl
     ,     v.comp_part_nbr          AS component
     ,     v.bom_doc_nbr          AS parent
     FROM     VBOM v
     WHERE     v.part_nbr     ='SAMPLE-1'
     UNION ALL
     SELECT     0               AS bill_lvl
     ,     'SAMPLE-1'          AS component
     ,     NULL               AS parent
     FROM DUAL
     ) a
.. .and I get exactly this that I wait, 1 card for the SAMPLE-2 component and 1 plug for SAMPLE-1 (i.e. the recording I generated with the UNION ALL).

Then I ran:
SELECT     r.comp_part_nbr
,     r.ord_nbr
,     r.sub_ord_nbr
,     r.qty_reqd
FROM     RQMT r
WHERE     r.comp_part_nbr like 'SAMPLE-%'
.. .and I get all 8 records, whose SAMPLE-1.

So, it seems that the problem occurred when I join my opinion RQMT one online, although both separately seem to work very well.

A point to note: all parts of parent and child may not be appointed in the same way as in my example. SAMPLE-1 could have children of the SAMPLE-2, abc123, 20735, for example.

Any help on this would be appreciated, thanks!

Hello

Concerns of problem by comparing 8 literal characters ' SAMPLE-1' for the 25-character CHAR column that contains "SAMPLE 1".»
17 spaces including the literal or use LPAD or CAST to 25 characters.
For example:

SELECT     a.bill_lvl
,     a.component
,     a.parent
,     r.ord_nbr
,     r.sub_ord_nbr
,     r.qty_reqd
FROM     (
     SELECT     v.bill_level          AS bill_lvl
     ,     v.comp_part_nbr          AS component
     ,     v.bom_doc_nbr          AS parent
     FROM     VBOM v
     WHERE     v.part_nbr     ='SAMPLE-1'
     UNION ALL
     SELECT     0               AS bill_lvl
     ,     CAST ('SAMPLE-1' AS CHAR (25))               -- CAST added here
                                  AS component
     ,     NULL               AS parent
     FROM DUAL
     ) a
,     RQMT r
WHERE     a.component     = r.comp_part_nbr
;

Is there a reason why you use CHAR instead of VARCHAR2? (One reason other than "I can't change it now.", otherwise said.)

Tags: Database

Similar Questions

  • Need help on query with decimal places and trailing 0

    Community of Oracle I need help in the following situations:

    I received the following query:
    SELECT (SUM ("VALUE1") COUNT ("VALUE2"))
    FROM sometable;

    This returns the following results:
    200
    222,5

    I want to display as 222.50 222,5 value so I tried ROUND(value,2) but then came to the conclusion that the tour will not show drags me 0.
    So now I tried to_char(value,'9999DD00') and of course he's back 200.00 both 222.50.

    Now how to make it conditional so when a number has no decimal place it shows the whole number and when it has a decimal, it shows it in the format to_char(value,'9999DD00')?

    I hope I have made my situation and question correctly and I hope a solution.

    P. S.
    I need to appear like that since it is an average of the prices of the products

    Published by: Jnijman on July 3, 2010 13:06

    You can use CASES and INSTR:

    SQL> with t as ( -- generating sample data:
      2  select 200 col from dual union
      3  select 222.5 from dual
      4  )
      5  --
      6  -- actual query:
      7  --
      8  select col
      9  ,      case
     10           when instr(col, ',') > 0
     11           then to_char(col, '999d00')
     12           else to_char(col, '999' )
     13         end formatted_col
     14  from   t;
    
           COL FORMATT
    ---------- -------
           200  200
         222,5  222,50
    
  • need help for query with case

    Hi, I have the following requirement based on the terms
    Here's the test tables and data
    create table test_r_cd (id , role_code,org_id)
    as 
    select 100,'LOC' ,10 FROM DUAL UNION ALL
    select 100,'LIQ',20  FROM DUAL UNION ALL
    SELECT 100,'STE' ,30 FROM DUAL
    
    CREATE TABLE TEST_SEC_TYP(id,type)
    as
    select 100,1 from dual union all
    select 100,2 from dual 
    
    
    select * from
    test_r_cd cd ,TEST_SEC_TYP typ
    where cd.role_code in (case when (typ.type =1 )
                                             then ('LOC','LIQ')
                                             when (typ.type = 2) 
                                             then ('STE') 
                                             ELSE null
                                             end )
    The expected output is:
    org_id   role_code   type
    10            'LOC'        1       
    20            'LIQ'         1      
    30            'STE'        2    
    Thank you
    SQL> select *
      2  from test_r_cd t1,test_sec_typ t2
      3  where t1.ID = t2.id
      4  and case when role_code in ('LOC','LIQ') then 1
      5           when role_code = 'STE' then 2
      6           else null end = t2.type;
    
            ID ROL     ORG_ID         ID       TYPE
    ---------- --- ---------- ---------- ----------
           100 LOC         10        100          1
           100 LIQ         20        100          1
           100 STE         30        100          2
    
  • Need help for query flat_file type clobdata oracle table data.

    Hi Sir,

    I need help to query oracle table flat file data having given clob type.
    Oracle Version:
    
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE     10.2.0.1.0     Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    
    
    
    Source table
    
      CREATE TABLE order_details 
       (     QUEUE_SEQNUM NUMBER(10,0) NOT NULL ENABLE, 
         LINE_SEQNUM NUMBER(10,0) NOT NULL ENABLE, 
         CHAR_DATA CLOB, 
         OPTIMISTIC_LOCK_KEY NUMBER(20,0)
       ) 
    COLUMN FOR CHAR_DATA FLAT_FILE
    EU,6067AT,AT10,000000402004,NexiumGERDManagementProject,Z435,,ZZ29,NIS-GOLD,AT
    EU,6067AT,AT10,000000402038,NIS-OEU-ARI-2007/1,Z450,,ZZ29,NIS-OEU-ARI-2007/1,AT
    EU,6067AT,AT10,000000402039,SymbicortNISinCOPD,Z450,,ZZ29,NIS-REU-DUM-2007/1,AT
    EU,6067AT,AT10,000000402040,D1443L00044SeroquelXRRuby,Z450,,ZZ29,D1443L00044,AT
    EU,6067AT,AT10,000000402041,NIS-GEU-DUM-2008/1,Z450,,ZZ29,NIS-GEU-DUM-2008/1,AT
    EU,6067AT,AT10,000000402042,SonstigeAktivitätenLCM,Z450,,ZZ29,.,AT
    EU,6067AT,AT10,000000402134,D1680L00002Saxagliptin,Z450,,ZZ29,D1680L00002,AT
    EU,6067AT,AT10,000000402199,SeroquelWaveNIS,Z450,,ZZ29,NIS-NEU-DUM-2009/1,AT
    EU,6067AT,AT10,000000402313,SeroquelExtra(D1443L00082),Z450,,ZZ29,D1443L00082,AT
    EU,6067AT,AT10,000000402517,AtlanticD5130L00006(AZD6140),Z450,,ZZ29,D5130L00006,AT
    EU,6067AT,AT10,000000554494,ArimidexSt.Gallen(13+2),Z142,,ZZ09,,AT
    EU,6067AT,AT10,000000554495,ArimidexASCO(5delegates),Z142,,ZZ09,,AT
    EU,6067AT,AT10,000000554496,ArimidexSanAntonio6delegates,Z142,,ZZ09,,AT
    EU,6067AT,AT10,000000554497,ArimidexBreastCancerSummit(13+2),Z130,,ZZ09,,AT
    EU,6067AT,AT10,000000554498,ArimidexEIH(15delegates),Z130,,ZZ09,,AT
    EU,6067AT,AT10,000000554499,ArimidexNIFA(200delegates),Z135,,ZZ09,,AT
    EU,6067AT,AT10,000000554500,ArimidexNIFAworkshops(8x25),Z135,,ZZ09,,AT
    EU,6067AT,AT10,000000554501,ArimidexPraktischeGyn.Fortbildung,Z147,,ZZ09,,AT
    EU,6067AT,AT10,000000554502,ArimidexAGO,Z147,,ZZ09,,AT
    EU,6067AT,AT10,000000554503,ArimidexHämato/OnkologieKongress,Z147,,ZZ09,,AT
    EU,6067AT,AT10,000000554504,ARIMIDEXGYNäKOLOGENKONGRESS,Z147,,ZZ09,,AT
    EU,6067AT,AT10,000000554505,ArimidexChirurgenkongress,Z147,,ZZ09,,AT
    EXPECTED RESULTS:
    AFFIRM_CODE COMPANY_CODE INTERNAL_ORDER_CODE INTERNAL_ORDER_DESC ENIGMA_ACTIVITY             SUB_ACTIVITY_CODE IN_AFF_IND ORDER_TYPE EXTERNAL_ORDER COUNTRY        
    EU          6067AT       AT10                 000000402004       NEXIUMGERDMANAGEMENTPROJECT     Z435           NULL        ZZ29       NIS-GOLD        AT             
    EU          6068AT       AT11                 000000402005       NEXIUMGERDMANAGEMENTPROJECT     Z435           NULL        ZZ29       NIS-GOLD        AT             

    Sorry, my bad. Without database at hand, I'll try 'baby steps' (borrowed from Frank) so you don't confuse it with errors that I might add (happens far too often already, but at least you won't "swallow" as forum members think is one of the main goals of this fighter - help her learn - providing not only the proverbial fish.)
    Search the Forum - your problem is one of its best sellers. Watching {message identifier: = 10694602} ("split string into" was the key word used in research) you can try something as

    select table_row,
           level clob_row,
           regexp_substr(char_data,'[^' || chr(13) || chr(10) || ']+',1,level) the_line
      from (select to_char(queue_seqnum)||':'||to_char(line_seqnum) table_row,
                   char_data
              from order_details
           )
     connect by regexp_substr(char_data,'[^' || chr(13) || chr(10) || ']+',1,level) is not null
            and prior char_data = char_data
            and prior table_row = table_row
            and prior sys_guid() is not null
    

    to get all the s the_lineall CLOB and after that the use of the example even to get your columns of each the_line.

    Concerning

    Etbin

    Edited by: Etbin on 3.2.2013 09:01

    .. .but I m connected to do things according to the instructions, I can't do something.

    Used to happen to me too and I did as told to the but only after explaining any disadvantages, I was aware of in time. The last sentence is usually: "O.K. now be just and Don't come back with that kind of thing when it turns out that this isn't the right thing."
    rp0428 post - something to remember.

  • Query with a subquery should return a value but does not work

    When I run this SQL, it does not return value:

    SELECT vfn.cat
    OF vfn, valid_fishery vf vps_fishery_ner
    WHERE vfn.plan = vf.plan
    AND vfn.cat = vf.cat
    AND vf.permit_year = 2010
    AND vf.moratorium_fishery 't ='
    AND vfn.vp_num = 211652
    AND vfn.ap_year = 2010
    AND vfn.plan = 'MUL '.
    AND vfn.date_issued = (SELECT MAX (date_issued)
    OF vps_fishery_ner
    WHERE vp_num = 211652
    AND ap_year = 2010);

    To test, I remove the subquery and run it separately:
    SELECT MAX (date_issued)
    OF vps_fishery_ner
    WHERE vp_num = 211652
    AND ap_year = 2010;

    Returns 2 April 10

    Then I paste the date into the original query (using her TRUNCATES the function, of course, since I'm only part DDMMYY hardcode the date):

    SELECT vfn.cat
    OF vfn, valid_fishery vf vps_fishery_ner
    WHERE vfn.plan = vf.plan
    AND vfn.cat = vf.cat
    AND vf.permit_year = 2010
    AND vf.moratorium_fishery 't ='
    AND vfn.vp_num = 211652
    AND vfn.ap_year = 2010
    AND vfn.plan = 'MUL '.
    AND TRUNC (date_issued) = TO_DATE('02-APR-10');

    And returns the required value, "A".

    So why the complete query with a subquery does not work, if the value returned by the subquery is valid and works when you just pasted in there?
    Thank you.

    Hello

    Maybe you should include this in the subquery as well?

    AND vfn.plan = 'MUL'
    
  • Hello, I need help, I can't play the video using Facebook. Works very well in Youtube. I use Safari. Tried different solutions such as changing preferences, reinstalling Flash.

    Hello, I need help, I can't play the video using Facebook. Works very well in Youtube. I use Safari. Tried different solutions such as changing preferences, reinstalling Flash.

    Hello

    Please try following the steps and see if it helps

    1. Please work through this guide.

    https://helpx.Adobe.com/Flash-Player/KB/video-playback-issues.html

    Follow the instructions in the guide on the provision of the dxdiag report and additional information on what you tested and observed.

    2 turn off hardware acceleration in the settings. Steps are mentioned in the link below

    How to disable or enable hardware acceleration?

    Thank you

  • With as subquery block in create MATERIALIZED view or bulk pl/sql

    Hi all

    Can I use the with as subquery block in create MATERIALIZED view?

    or in pl/sql



    -Thank you

    Published by: xwo0owx on March 31, 2011 11:23

    Published by: xwo0owx on March 31, 2011 11:23

    Have you tried to test it? :)

    SQL > SELECT * FROM V$VERSION;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    
    SQL > CREATE VIEW TEST_VIEW
      2  AS
      3  WITH d AS
      4  (
      5          SELECT * FROM DUAL
      6  )
      7  SELECT *
      8  FROM   d
      9  ;
    
    View created.
    
    SQL > SELECT * FROM test_view;
    
    D
    -
    X
    
    SQL > DECLARE
      2          x DUAL.DUMMY%TYPE;
      3  BEGIN
      4          WITH d AS
      5          (
      6                  SELECT * FROM DUAL
      7          )
      8          SELECT dummy
      9          INTO   x
     10          FROM   d
     11          ;
     12
     13          DBMS_OUTPUT.PUT_LINE(x);
     14  END;
     15  /
    X
    
    PL/SQL procedure successfully completed.
    
  • I need help for query AVG

    I need help with a simple query in an ORACLE database. I tried a lot of things that I found on the internet, but none of them worked for me.

    The following query retrieves four lines:

    SELECT sampled_date AS VALUE1, VALUE2 AS result, 0 as value3

    Of asw_lab

    WHERE template_result = 'A' AND analysis = 'B' AND ROWNUM < 5

    ORDER BY sampled_date DESC;

    I would like to calculate a moving average of the last four values with the date of the sample of the last line.

    For example, I have this result for the query above:

    Value1 value2 value3

    01/04/14-16:00 1 0

    01/04/14 15:00 2 0

    01/04/14 14:00 3 0

    01/04/14 13:00 4 0

    I want to extract the below my average/query calculation result:

    Value1 value2 value3

    01/04/14-16:00 2.5 0

    Can you help me create a request to that effect?

    Thank you

    Maybe it's

    Select max (VALUE1) VALUE1, VALUE2 avg (VALUE2), avg (VALUE3) value3

    Of

    (

    SELECT sampled_date AS VALUE1, VALUE2 AS result, 0 as value3

    Of asw_lab

    WHERE template_result = 'A' AND analysis = 'B' AND ROWNUM<>

    )

  • Need help get data with the most recent date of entry into

    Hey guys;

    I need help with fine tuning a query to get the one with the most recent implementation.

    Here's my current query:

    /**********************************************
    Select sge.seal_group_id,
    SGE.equipment_id,
    SGE.effective_date
    of seal_group_equipment EMS.
    seal_group sg
    where equipment_id = 48801
    AND EMS. SEAL_GROUP_ID = SG. SEAL_GROUP_ID
    and sge.end_date is null
    Group of sge.equipment_id, sge.seal_group_id, sge.effective_date
    After having sge.effective_date = max (sge.effective_date)

    ******************************************************/

    Which produces the following results:
    SEAL_GROUP_ID - EQUIPMENT_ID - EFFECTIVE_DATE
    25-48801 - 01/01/1993-00: 00:00
    11730-48801 - 22/08/2003 08:42:11


    What I really need, is to show only the line with the most recent date of entry into
    I hope someone can help
    Thank you

    MAX will not work because the SEAL_GROUP_ID could depart. I would say analytical:

    select seal_group_id,
    equipment_id,
    effective_date
    from (
    select sge.seal_group_id,
    sge.equipment_id,
    sge.effective_date,
    RANK() over (partition by equipment_id order by effective_date desc) r
    from seal_group_equipment sge,
    seal_group sg
    where equipment_id = 48801
    AND SGE.SEAL_GROUP_ID = SG.SEAL_GROUP_ID
    and sge.end_date is null)
    where r = 1;
    

    Keep in mind if two records have the same effective_date, they would both appear.

    Note: query above has not been tested, since there is no script provided.

  • I have a new backup disk (a disk of 5 TB of Seagate) and need help setting up with CCC!

    Hello world

    I have a new backup disk (a disk of 5 TB of Seagate) and could use help setting up with CCC.

    I did in the past without problem, but I want to assure you of a few things:

      1. This particular drive has software available in a folder on the disk backup (w / the PC and Mac versions). But... I intend to use this disk as an exact copy of my iMac HD; It must also be bootable.
      2. Should I format the drive with disk utility? Or load the software to the CCC on the disk and just leave their only backup software?
      3. One last question: I also have a MacBook Air, an iPad and an iPhone. I want to save them as well. Should I put them on separate partitions, I created? Or can we just one big happy family? The last is best.

    One last piece of information: two computers, etc, were all backed up via Time Machine. My data the most important, photos, etc., are also saved on deposit box and/or iCloud on a regular basis.

    Thanks for any suggestions or comments!

    Sally D.

    Delete and partition the drive by making a separate partition for each computer. The iPad and the iPhone is useless their own partition because they back up using iTunes and would appear in the clone of the computer that you use for each save. Each partition must be the size of the current cloned drive that can leave you with additional partitions for other stuff. Then format the drive Mac OS Extended journaled. Do not install any software that came with the drive, none of this is necessary.

    I use a very similar setup with a 3 TB drive. I clone my boot SSD in a single partition, my drive internal 1 Tb in a second, my Macbook to a third party, and I have a fourth partition which is currently empty, because I haven't decided what to do with it yet. I also have a 3 to Apple Time Capsule.

  • Need help - Cisco ASA with the power of fire

    Hello

    Currently, we use asa 5510 without function of firepower. Our goal is to publish web servers and microsoft lync with reverse proxy method. control internet traffic, apply extensions individual file not to download, management of bandwidth etc.

    Is it possible if we add firepower on asa 5510... Please guide me... Thank you

    Power of fire must be installed on the new series X of the SAA.  5512 x, x 5515, 5525 x, etc.

    If you have a 5510, you probably want a 5512 x with an SSD.  Cisco has beams of firepower include the ASAx with SSD and the license of firepower.

    Adds that you must also Firesight management software, and there is a license bundle of 2 camera for under $ 500 that you can install on VMWare.

    Firepower is not reverse proxy, it's transparent online packages, analysis and filtering by URL / Application / and threat mitigation.

    If you want a reverse proxy, you should look into Microsoft ISA server or a Proxy Server reverse dedicated Web.  Cisco gave its product Web Director, who has done this function.

    You can host Web sites behind a firewall of ASA without proxy reverse.  And the ASA has an inspection of the request for HTTP traffic, responsible for watching HTTP requests.  The firepower to the ASA system also has specific signatures that monitor traffic to the web servers and prevent specific vulnerabilities that are known on those servers, so if that is what you want the Reverse Proxy for, then the power of fire module would probably cover your needs.

    Don't forget that until the next quarter firepower system has no decryption on the box, and you might want to wait that the feature is released and put in place, so that you know what size firewall you need protect your network with the SSL decryption.  I believe that the ASA5512x is testing at 75 Mbps stream decrypted via the fire power module, which is about half of what was before CX, then you could use the sizing numbers CX and extrapolate until Cisco releases official decryption numbers.

  • need help for query

    Hello

    I have a table produced, have two columns and below the sample data and I want to select distinct values in this table on the two columns. Please let me know how can achieve us.

    x                                                                y

    ===                                                       ===

    Sony Erricson ~ Lithion Sony Erricson ~ Lithion ~ 6

    Sony Erricson ~ Lithion Sony Erricson ~ Lithion Essentials ~ 2

    Sony Erricson ~ Lithion Sony Erricson ~ Lithion ~ 6

    Lithion ~ Tmobile Lithion Lithion ~ Tmobile Lithion ~ 6

    Sony Erricson ~ Lithion Sony Erricson ~ Lithion ~ 7

    Sony Erricson ~ Lithion Sony Erricson ~ Lithion ~ 8

    output:

    =====

    x                                                                y

    Sony Erricson ~ Lithion Sony Erricson ~ Lithion ~ 6

    Lithion ~ Tmobile Sony Erricson Lithion ~ Lithion Essentials ~ 2

    NULL the Sony Erricson ~ Lithion ~ 7

    NULL the Sony Erricson ~ Lithion ~ 8

    Help is very appreciated.

    THX in advance

    one of the ways below, if this does not help please share create table statement and the data from the sample as insert the script with desired output

    with data
    as
    (
    select 'Sony Erricson~Lithion' prd1,'Sony Erricson~Lithion~6' sub_prd from dual
    union all
    select 'Sony Erricson~Lithion','Sony Erricson~Lithion Essentials~2'  from dual
    union all
    select 'Sony Erricson~Lithion','Sony Erricson~Lithion~6'  from dual
    union all
    select 'Lithion~Tmobile Lithion','Lithion~Tmobile Lithion~6' from dual
    union all
    select 'Sony Erricson~Lithion','Sony Erricson~Lithion~7' from dual
    union all
    select 'Sony Erricson~Lithion','Sony Erricson~Lithion~8' from dual
    )
    select case when rn > 1 then null else prd1 end prd1,
    sub_prd,
    rn2
    from (
    select prd1, sub_prd, row_number() over(partition by prd1 order by prd1) rn,
    row_number() over(partition by prd1,sub_prd order by prd1,sub_prd) rn2 from data
    )
    where rn2 = 1
    order by prd1
    
  • need help setting up mocrosoft send my friend uses netgear wireless rural upstate ny need help for incoming, outgoing server POP3 etc info...

    try to set up my microsoft email in my pc. I need to respond to the need help sbout incomeing craiglist.i and out going.

    I have no idea to find my server address. I use connect netgear wireless.

    Hello

    Looks like you need configure Windows Mail

    you need to configure your e-mail account windows mail with your ISP internet service provider

    They provide you with account settings you need to do

    Ask them to

    username
    password for your access broadband account / distance with them

    Server of incoming POP3 mail
    outgoing mail SMTP server

    and here's how to configure windows mail after getting the email correct account settings

    http://www.vista4beginners.com/Windows-Mail

  • Need help! Re: Sequence Presets understanding &amp; settings + using multiple sequences!

    Hi, I'm newer to Premiere Pro (using the new version of Pro obtained in March 2010 on a PC) and watched all the tutorials (lots of video) and read a LOT about the subject! And I have answered several questions about mine. But there is one main thing (that I'll probably have to divide it into 2 or more questions) that I just got a complete knowledge & really your expert need help on!

    Thank you very, VERY MUCH! Really...

    I have designed/product audio (music) for a while now and when you start a new session just, you select your sample rate & are locked in for the most part therefore... Pretty simple... Now with Pro, when you start your new session, you choose your Preset sequence. Now for this first project, a video clip (3 minutes), the audio is done (as I said) and for the clip, we use images from several sources including: maybe 55% compared with a mini-camera DV, 40% of the .vob files right & the remaining 5% of some mpeg files + a few YouTube videos (we only have it our preserved images of front on YouTube) + some JPEGs (still images). And we plan to export the final video on YouTube and the internet. And we want also ready to be broadcast on both television (MTV, some media, shows, etc.). And Yes, we will also use it on cell phones (even if it is the least important right now). So 3 main exports (which I believe are all made at the end through media encoder).

    • But to choose the right Preset sequence at the beginning, I am confused, unfortunately.   I

    Believe you choose the one that best fits to of your assets sizes & frame rate [in this case, which is a camera film regular DV; & mediainfo said the .vob file = 720 x 480 (4:3) to 29.970 fps MPEG video (NTSC), one of the shots (of our) YouTube = 480 x 270 (16:9) at 29.970 fps STROKE, a MPEG = 352 x 288 (4:3) at 25.000 fps and 2 examples of jpeg = 300 x 400 (size = 57 KB)] and another = 720 x 450 (size = 100 KB)]. So if I am wrong in my assumption on the choice of a pre-defined sequence just on the best corresponds to the your assets rates & sizes, I would choose (I think): DV-NTSC Standard 48 kHz (the 48 just to 41 over our audio sampling frequency). 

    And if all goes well, it is excellent for our export needs YouTube at the end of the process the video & tv as well!

    .. . Is this correct?

    Can I choose the predefined sequence that best matches most of the sizes/frame rate of your assets?

    * And ESPECIALLY... is CE Preset of the sequence is the BEST for this current music video (based on the sources of our assets & where it will be considered when it is finished - mainly of YouTube, & also some TV [for media and broadcasting] - probably on a DVD, I guess)?

    Or I'm wrong, & it (your Preset Sequence) depends on your final product & the output?

    My friend (who admits that he is no expert in some way) explained that I would probably go with HDV 1080 p 30 as this will give a much better value for my release. But after he saw the results in Pro with this setting for my property, he agrees with MY above conclusion instead. 

    When you use the DV - NTSC Standard 48 kHz preset, I saw the asset in the Source monitor Panel (& then dragged the clips to the timeline) & seen in the finale of "Project Monitor" (I think it is called). And they looked decent in this final screen (where I'll crop & use some shared screens sometimes). 

    And when I used his suggestion of 1080 p HDV 30, assets looked ok in the Source monitor Panel (I think), but very little in the final project monitor. 

    • And led me to another big question - when you use the jpeg format which is 1280 x 960 e.g. (largest

    as the previous ones) in the Standard DV NTSC 48 kHz preset, happening in the Source monitor. But when you drag it down to the timeline and view it in the program monitor, the head was cut off, etc. and of course, when you use instead the HDV 1080 p 30 preset, as larger jpeg even adapt very well in the in the program monitor. Now, I understand that this is because the size of the frame (dimensions) close match those of the HDV preset. I get it. What none of us got was however WHY in the DV - NTSC Standard 48 kHz preset, he looks very well in the Source monitor Panel (but not in the program monitor)? (The two were simply put to 'Fit'). We thought he not would not have looked at well & fit fine and complete source of follow-up at first - but that's the difference between this largest jpeg display when it is displayed in two different monitors that really confused us!

    • And the final main confusion on this topic lies in something, that a technician in Adobe, tell us, informing that

    We can create multiple sequences. Now, I saw How to do this in the project Panel, but it's really the full understanding of the workings that we don't get. The tech said: "each sequence MUST have the good frame rates, sizes of images." Ok, you understand - understood. And he said: we can be: convert the size of the image (of this large jpeg example, say reducing) to match the predefined video frame size. But in this way, we would lose the quality (jpeg - assets). And he says: - or - you CAN use multiple sequences for different sources & when everything is completed (the whole video), I just export it them all as a single project! And I have that a sequence may be getting the DV preset (with the heights of these assets corresponding closely to this preset) and another sequence (in the same project) can be the HDV preset (with the heights of remaining assets corresponds closely to the preset instead). , But he couldn't explain was: how you can view your entire music video (3 minutes) in its entirety in Pro. It seems that when you choose a 2nd sequence, it obviously creates on the timeline, and assets that you put in the 1st (DV) timeline is completely separate from the 2nd (HDV) timeline. And you get no display either at the same time (because they are distinct sequences). 

    So... is this true?

    Are we supposed to use multiple sequences within our project to clip one of the assets with a higher (or other) image size/rate?

    And you export sequences as a final clip?

    And if so, HOW the world watch you your video chats (in the monitor of the project with all of your changes - as you change) when you use more than one sequence?

    Sorry, it seems quite stretched out, but I want to answer your questions you can in turn have for me & be clear so I can finally receive clarity on this topic!

    I know it's much, but if you could address all of the above questions (more background or discussion - is but a handful of issues in there), you have my gratitude... we were afraid to start the part of the video of this project is NOT know what sequence preset start with (as "we don't want to be locked into the wrong choice & waste weeks of editing), let alone a good understanding of the 'why' or the ramifications!

    Thank you so very, very well... You have no idea how...

    Rendering is done on a basis as needed. If we do a complex animation with keyframes, or if they have odd source files, they could do. For keyframe animations, I could make this section of the timeline of a dozen or more times. Otherwise, maybe not.

    Rendering is the production of AV files, just for reading. They take a lot of space and will take a while. It's one of the reasons that a Publisher must familiarize themselves with the WAB (work area bar), so that they do things like rendering for all what they might need. Tip: remember to put this back to the full timeline.

    Good luck

    Hunt

  • [Need help] New Alienware X 51 BSOD when using the Ports of USB 3.0

    Hello world

    Today, I received my Alienware X 51.  After you set up the system, I plugged my external hard drive USB 3.0 one of the 3 USB ports on the back of the unit.  The system immediately blue armored and closed.  I let the system restart normally, only to find he Blue filtered and restarted again.  After the third BSOD, I deleted all devices on the computer and let it restart.  It has not crashed this time.  Always plug the devices back to demonstrated that when 3 USB hard drive was plugged into the system, the PC crashed.  I am able to reproduce this constantly: hard drive goes in, system hangs.

    I stayed on the phone with Dell technical support tonight, but all they could tell me to do is find another USB 3 device for test ports with.  Since I have none is available, I'm looking at the community of users for more help.  For the record, I managed to extract the files from BSOD dump.  Here is the latest in graphical format:

    Anyone seen this before?  My troubleshooting course consisted by uninstalling the driver for the Renesas Electronics USB 3 hub controller supplied with the system and reinstall the drivers using a package available on the Dell (http://downloads.dell.com/Pages/Drivers/alienware-x51.html) website.  It did not work.  I also tried to format the hard drive, but the BSOD persisted.  Needless to say, I am ideas.

    The drive works fine in a USB 2 port.  Of course, I am disappointed that I am not able to use the higher speeds of USB 3 port at this time.

    Anyone seen this before?  Any suggestions on next steps?  What information can provide this help?

    Thank you!

    I am surprised that this post was did not yet a member of Dell since there is a patch to do this, apparently, I had this problem when I arrived to an external hard drive a few days ago

    Remove the current driver for Renesas installed on your Alienware then click on the link below

    http://am.Renesas.com/products/tools/introductory_evaluation_tools/starterkits_evaluation_boards/usb_3_demo_card/index.jsp

    or just click here

    installation, this will fix the blue screen issue

Maybe you are looking for

  • What data should I save MANUALLY before you install as 'NEW iPhone '?

    Hi all I get a new iPhone 6 in the bar of genius for various reasons and I'm being advised to do a fresh install of the phone that I understand to be the following: 1. synchronize with me.com (check to verify that all the settings are checked if I ge

  • 9.2 - iOS heavy data use

    I use an iPhone 6 Plus and this morning after my iOS 9.2 update, I went to the Bank and I now have a 5 GB data use on my Verizon bill, for that hour.  I suspect that the update has launched a kind of data for Apple music, iPhotos redownload or docume

  • internal speaker comp. audible with headset

    All of a sudden my internal speaker hp compaqs was audible with the headphones plugged into the outlet. He has never done this before. the internal speaker is audible without headphones plugged in. I have windows xp3 & I had used my system mechanic t

  • This power supply will work with my PC?

    This power supply will work with my PC?  I have a Compaq Presario SR5816F http://www.Newegg.com/product/product.aspx?item=9SIA4CP1GF8726&cm_re=power_supplies_500w-_-9SIA4CP1G... http://www.Amazon.com/solid-gear-series-ATX12V-SDGR-500BX/DP/B00FF7VEJE

  • Sony VGN-AW41ZF "devices and printers" does not display anything, but they work

    devices and printers doesn't ' display anything, although all devices work. The reinstallation of the computer (sony VGN-AW41ZF) and add the devices, they have been posted. Later, we don't know why, "devices and printers" display nothing. Just added