Reg: Error using Parallel_Enable in pipeline, function.

Hi Experts,

This might be a simple question, surely, I forgot something.

CREATE or REPLACE PACKAGE parallel_pipelined_update AS

TYPE rec_x IS RENDERING)
rep_per NUMBER,
unikid NUMBER
);

TYPE histdetl_tab IS TABLE OF THE rec_x

INDEX BY PLS_INTEGER;

-TYPE histdetl_tab IS TABLE OF THE histdetl;


TYPE histdetl_refcur IS REF CURSOR RETURN histdetl;

FUNCTION fn_parallel_update (input_cur_query IN histdetl_refcur)
Histdetl_tab RETURN PIPELINED
PARALLEL_ENABLE (PARTITION input_cur_query IN ALL);

END parallel_pipelined_update;
/

During execution of this error are-

Line of text Pos

1 pack of Create, executed in 0.24 sec.

14 12 PLS-00630: pipeline functions must have a collection of supported return type

The total run of dry weather 1.16.

What may be a possible reason? Please notify.

-Nordine

(on Oracle 11.2.0.3.0)

To be more precise, who made the statement of histdetl_tab a table nested (as opposed to a PL/SQL table) would be supported.

TYPE histdetl_tab IS TABLE OF rec_x INDEX OF PLS_INTEGER;

Tags: Database

Similar Questions

  • How to use a PIPELINED function shaped 10g?

    Hi guys,.

    When I tried to use a PIPELINED function in the forms, I got the message:

    -Function called from SQL PL/SQL must return the legal value of Type SQL

    FOR rec_dev IN (SELECT *)
    TABLE (p1196.f_executa (August 1, 2010 ", - pdDataInicial"))
    August 30, 2010 ", - pdDataFinal"
    5,-pnCodAdm
    NULL,--pnCdsCod
    NULL,--pnAdmsSrvCod
    NULL,--pnAcao
    NULL)))
    LOOP
    vnQtdeEstornos: = vnQtdeEstornos + rec_dev.qtde_estornos;
    vnVlrTotalCredito: = vnVlrTotalCredito + rec_dev.valor_credito;
    END LOOP;

    Can someone help me?

    Cree

    You can not. One possibility would be to wrap your function in the pipeline in a view, or you can write a stored procedure that returns a strong Ref cursor instead.

    see you soon

  • PLS-00630: pipeline functions must have a collection of supported return type

    Hello, I created a TYPE of OBJECT and function PLSQL as shown below, but the function compile errors with that follows. Don't know where is the problem?
    PLS-00630: pipelined functions must have a supported collection return type
    It's about Oracle 10 g r2
    CREATE OR REPLACE TYPE cxs_plsql_profiler_object_type AS OBJECT (
       cxs_object_name      VARCHAR2 (128),
       cxs_object_type      VARCHAR2 (19),
       cxs_object_status    VARCHAR2 (7),
       cxs_read_execution   NUMBER,
       cxs_buffer_gets      NUMBER,
       cxs_disk_reads       NUMBER,
       cxs_executions       NUMBER,
       cxs_sorts            NUMBER,
       cxs_sharable_mem     NUMBER,
       cxs_address          NUMBER,
       cxs_hashvalue        NUMBER,
       cxs_osuser           VARCHAR2 (30),
       cxs_username         VARCHAR2 (30),
       cxs_module           VARCHAR2 (48),
       cxs_machine          VARCHAR2 (64),
       cxs_status           VARCHAR2 (8),
       cxs_terminal         VARCHAR2 (16),
       cxs_percentconsume   NUMBER,
       cxs_percentrepeat    NUMBER,
       cxs_plan             VARCHAR2 (120),
       target_name          VARCHAR2 (200),
       referenced_name      VARCHAR2 (200),
       referenced_type      VARCHAR2 (200),
       targetowner          VARCHAR2 (200),
       refowner             VARCHAR2 (200)
    )
    and here are the API
        FUNCTION CXS_GENERATE_PLSQL_PROFILER
    RETURN cxs_plsql_profiler_object_type
    PIPELINED IS
    out_rec cxs_plsql_profiler_object_type ;
    
    plsbatch plsql_batch;
    skount integer;
    dpendrec depend_tab;
    dkount integer;
    
    
    
    
    CURSOR objects
          IS
             SELECT object_name, object_type
               FROM dba_objects
              WHERE status = 'VALID'
                AND owner NOT IN ('SYS', 'SYSTEM')
                AND object_type IN ('PACKAGE', 'PROCEDURE', 'FUNCTION');
    
          CURSOR apis (p_object dba_objects.object_name%TYPE)
          IS
             SELECT DISTINCT *
                        FROM (SELECT   SUBSTR (a.sql_text, 1, 50) sql_text,
                                       TRUNC
                                          (  a.disk_reads
                                           / DECODE (a.executions,
                                                     0, 1,
                                                     a.executions
                                                    )
                                          ) reads_per_execution,
                                       a.buffer_gets, a.disk_reads, a.executions,
                                       a.sorts, a.sharable_mem, a.address,
                                       a.hash_value, b.osuser, b.username,
                                       b.module, b.machine, b.status, b.terminal,
                                       ROUND
                                          (cxs_db_info.kompute_percentofsql
                                                                   (a.sharable_mem),
                                           5
                                          ) percentkonsume,
                                       cxs_db_info.kount_repeat
                                                             (b.osuser,
                                                              b.terminal
                                                             ) percentr,
                                       c.operation explainplan
                                  FROM v$sqlarea a, v$session b, v$sql_plan c
                                 WHERE b.sql_hash_value = a.hash_value
                                   AND b.sql_address = a.address
                                   AND a.hash_value = c.hash_value
                                   AND a.address = c.address
                                   AND b.status = 'ACTIVE'
                                   AND UPPER (a.sql_text) LIKE
                                                            '%' || p_object || '%'
                                   AND c.ID = 0
                              ORDER BY 2 DESC)
                       WHERE ROWNUM <= 50;   --profile option
    BEGIN
    
    skount := 0;
    dkount := 0;
    
     FOR i IN objects
          LOOP
             FOR j IN apis (i.object_name)
             LOOP
                skount := skount + 1;
                plsbatch(skount).cxs_object_name  := i.object_name;
       plsbatch(skount).cxs_object_type      :=  i.object_type;
       plsbatch(skount).cxs_object_status    :=  i.object_status;
       plsbatch(skount).cxs_read_execution   := j.reads_per_execution;
       plsbatch(skount).cxs_buffer_gets      := j.buffer_gets;
       plsbatch(skount).cxs_disk_reads       := j.disk_reads;
       plsbatch(skount).cxs_executions       := j.executions;
       plsbatch(skount).cxs_sorts            := j.sorts;
       plsbatch(skount).cxs_sharable_mem     := j.sharable_mem;
       plsbatch(skount).cxs_address          := j.address;
       plsbatch(skount).cxs_hashvalue        := j.hashvalue;
       plsbatch(skount).cxs_osuser           := j.osuser;
       plsbatch(skount).cxs_username         := j.username;
       plsbatch(skount).cxs_module           := j.module;
       plsbatch(skount).cxs_machine          := j.machine;
       plsbatch(skount).cxs_status           := j.status;
       plsbatch(skount).cxs_terminal         := j.terminal;
       plsbatch(skount).cxs_percentconsume   := j.percentconsume;
       plsbatch(skount).cxs_percentrepeat    := j.percentrepeat;
       plsbatch(skount).cxs_plan             := j.explainplan;
             END LOOP;
    
             FOR dd IN dpend (i.object_name)
             LOOP
                dkount := dkount + 1;
                dependrec (dkount).target_name := dd.NAME;
                dependrec (dkount).refname := dd.referenced_name;
                dependrec (dkount).reftype := dd.referenced_type;
                dependrec (dkount).target_owner := dd.owner;
                dependrec (dkount).refowner := dd.referenced_owner;
             END LOOP;
          END LOOP;
    
    for a in 1..skount loop
    
       out_rec.cxs_object_type      := plsbatch(a).object_type;
       out_rec.cxs_object_status    := plsbatch(a).object_status;
       out_rec.cxs_read_execution   := plsbatch(a).reads_per_execution;
       out_rec.cxs_buffer_gets      := plsbatch(a).buffer_gets;
       out_rec.cxs_disk_reads       := plsbatch(a).disk_reads;
       out_rec.cxs_executions       := plsbatch(a).executions;
       out_rec.cxs_sorts            := plsbatch(a).sorts;
       out_rec.cxs_sharable_mem     := plsbatch(a).sharable_mem;
       out_rec.cxs_address          := plsbatch(a).address;
       out_rec.cxs_hashvalue        := plsbatch(a).hashvalue;
       out_rec.cxs_osuser           := plsbatch(a).osuser;
       out_rec.cxs_username         := plsbatch(a).username;
       out_rec.cxs_module           := plsbatch(a).module;
       out_rec.cxs_machine          := plsbatch(a).machine;
       out_rec.cxs_status           := plsbatch(a).status;
       out_rec.cxs_terminal         := plsbatch(a).terminal;
       out_rec.cxs_percentconsume   := plsbatch(a).percentconsume;
       out_rec.cxs_percentrepeat    := plsbatch(a).percentrepeat;
       out_rec.cxs_plan             := plsbatch(a).explainplan;
       PIPE ROW(out_rec);
    end loop;
    
    
    for b in 1..dkount loop
        out_rec.target_name := dd.NAME;
                out_rec.refname := dependrec (b).referenced_name;
                out_rec.reftype := dependrec (b).referenced_type;
                out_rec.target_owner := dependrec (b).owner;
                out_rec.refowner := dependrec (b).referenced_owner;
                PIPE ROW(out_rec);
     end loop;
    RETURN;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(DBMS_UTILITY.format_error_backtrace);
    DBMS_OUTPUT.PUT_LINE(SQLCODE);
    DBMS_OUTPUT.PUT_LINE(SQLERRM);
    END; 
    and here's tradtional types of tables that are used in the code above.
     TYPE type_plsql_rec IS RECORD (
       cxs_object_name      VARCHAR2 (128),
       cxs_object_type      VARCHAR2 (19),
       cxs_object_status    VARCHAR2 (7),
       cxs_read_execution   NUMBER,
       cxs_buffer_gets      NUMBER,
       cxs_disk_reads       NUMBER,
       cxs_executions       NUMBER,
       cxs_sorts            NUMBER,
       cxs_sharable_mem     NUMBER,
       cxs_address          NUMBER,
       cxs_hashvalue        NUMBER,
       cxs_osuser           VARCHAR2 (30),
       cxs_username         VARCHAR2 (30),
       cxs_module           VARCHAR2 (48),
       cxs_machine          VARCHAR2 (64),
       cxs_status           VARCHAR2 (8),
       cxs_terminal         VARCHAR2 (16),
       cxs_percentconsume   NUMBER,
       cxs_percentrepeat    NUMBER,
       cxs_plan             VARCHAR2 (120)
       );
    
       TYPE plsql_batch IS TABLE OF type_plsql_rec
          INDEX BY BINARY_INTEGER;
          
          
           TYPE type_depend_tab IS RECORD (
          target_name    dba_dependencies.NAME%TYPE,
          refname        dba_dependencies.referenced_name%TYPE,
          reftype        dba_dependencies.referenced_type%TYPE,
          target_owner   dba_dependencies.owner%TYPE,
          refowner       dba_dependencies.referenced_owner%TYPE
       );
    
       TYPE depend_tab IS TABLE OF type_depend_tab
          INDEX BY BINARY_INTEGER;
    Thank you for your time in reading this post

    R

    Johan says:
    Sorry!.
    Actually, I meant

    I thought as well.

    Typos can be expensive however. As a probe of NASA Mars in 99, which was lost due to a simple mathematical error - a confusion between English and metric units. ;-)

    Or screw up a server in reason to use a Unix fork() where the client process think that it is the parent and the beginning more children who believe they are also parents of spawning... (one of my mistakes of kewlest never) :-)

  • Error when run through the function of path to add-in with writing to the amusement of the worksheet

    Hello world

    I wondered why the error no. 7 is coming as being attached, when I run the program.

    My intention is to write (from the FIFO) data in the worksheet by using entry for measuring function. I connected 1 d table at the entrance of table 1 d of this function. I connecetd the file port add this sub VI to the controller of the file add. I couldn't connect with indicator file add. Wire broken watch by doing this.

    Can you give me a suggestion needed to overcome this error and accomplish my data record using this sub VI (write to spreadsheet.vi)?

    Required attachments are provided for your convenience.

    Thank you.


  • Fatal error: call to a member function find() a non-object in www/index.php on line 27 /app/

    Fatal error: Call to a member function find() on a non-object in www/index.php on line 27 /app/,.

    I get this message when I try to open a Web page, is there an easy solution?

    Hello

    1 - is the question confined with any particular Web site?

    2. what web browser do you use?

    3. don't you make changes to the computer until the problem occurred?

    I suggest you to try the steps below and check if it helps.

    Method 1: Try the steps from the link below.

    Can't access some Web sites in Internet Explorer: http://support.Microsoft.com/kb/967897

    Important: Reset Internet Explorer to its default configuration. This step will disable also any add-ons, plug-ins or toolbars that are installed. Although this solution is fast, it also means that, if you want to use one of these modules in the future, they must be reinstalled.

    Method 2: How to troubleshoot script errors

    in Internet Explorer on Windows computers: http://support.microsoft.com/kb/308260

    Hope this information is useful.

  • Error message: "an internal support function returned an error" trying to attach files in emails.

    Original title: Error message-not invited

    Trying to electronic. Error message: 'an internal support function returned an error.'

    Hello

    Which email client you are using?

    If you are facing the issue in Microsoft Office, you can post your question in the Microsoft Office community & get help support professionals.

    Hope the helps of information.

    Please post back and we do know.

  • Why I can't use the nested aggregate function?

    Hello Experts,

    Why I can't use the nested aggregate function? There is not an ora-00979 group by error of expression.

    Oracle Database 11 g Release 11.2.0.4.0 - 64 bit Production

    Select

       SUM (BOX WHEN (KSD_CREATEDATE BETWEEN TRUNC((KSD_CREATEDATE)) AND TRUNC(MIN(KSD_CREATEDATE)) +60) THEN 1  ELSE 0 END) AS col

    DE TABLE_3_4

    GROUP BY STC_FIRMANO

    Thank you

    GROUP BY will manage the SUM function, but the MIN is used incorrectly - use another SELECTION to get it, or work with only with a single line. Otherwise, you could do WITH... get the SUM of SELECT MIN...

  • The document has been changed since its creation and use of the extended functionality is no longer available

    I have Adobe Acrobat Reader DC 2015.016.20039 on my system. I filled a form using Foxit Reader. When I tried to open the form with Adobe Acrobat Reader DC I received the error "the document enabled extended in Adobe Acrobat Reader DC features. The document has been changed since its creation and use of the extended functionality is no longer available. Please contact the author for the original version of this document.

    I tried other PDF programs, no problem at the opening of this form.

    Ashampoo_Snap_2016.05.17_02h01m01s_002_.png

    Function "Activation reader" comes from the original shape, and it's essentially a digital signature. It is specific for the free product of Viewer PDF by Adobe (aka Adobe (Acrobat) Reader).

    The problem is that only Adobe products are able to (re) make these documents without breaking the seal of the digital signature.

    So, what happened in your case is the Foxit Viewer broke the seal during the recording of back and what's. Using Acrobat, you can save a copy of the form, and then continue will fill. Otherwise, you will be better off to start over, but stay with viewers Adobe PDF all the time, working with the form, or with a different Viewer, once again all the time you work with the shape.

    BTW, player XI and most recent no. have more need of extended for more rights blocked by previous versions of Reader. This is not enough in this case; only, it would be useful for the sender of the form.

    Update (after rereading of the original message): if it's just for viewing or print the form, you can ignore this message. You can also try to save just, you have a version of player who no longer has the rights extended (at your risk).

    I hope this can help.

  • Using user defined global functions

    Hello
    I put implement Error Handling in a package. The logic goes like this:
    If the call to the first interface fails, KO called the proc error using what error message is retrieved, written to a file and an e-mail notification is sent.
    The code below is written in the procedure.

    OdiOutFile-FILE=E:\OraHome_2\oracledi\demo\Assignmnt\ErrorLog.log
    ErrMesg: "< % = odiRef.getPrevStepLog ("MESSAGE") % > '"

    Now, I need to implement using a global function that can be used through interfaces to implement the error handling.
    I want to club the code used above with the sending of a notification by e-mail.

    Can someone pls guide me if I have my approach is correct and how this approach can be implemented using the global function?

    Thank you.

    Published by: RitikaS on December 18, 2009 02:19

    Hi Ritika,

    May I suggest a method?

    Build a package, describe your flow of interface, the (failed) k of each interface, call OdiSendMail.

    In the OdiSendMail set all settings such as mail server, from and to, subject to body of message code below, paste

    Previous step <%=odiRef.getPrevStepLog("STEP_NAME")%> with the session number <%=odiRef.getPrevStepLog("SESS_NO")%> failed with the error message

    * <%=odiRef.getPrevStepLog("MESSAGE")%>. *

    Please look in the operator for more details.

    So, what will the ODI is, it will send a notification to the recipient with the error message, the session number, and the name of the interface.

    Sample:

    Step previous INT_LOAD_AGE with the number of session 1822124 failed with the error message

    17002: null: java.sql.SQLException: IO exception: the network adapter could not establish the connection
    java.sql.SQLException: IO exception: the network adapter could not establish the connection
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
    to oracle.jdbc.driver.PhysicalConnection. (PhysicalConnection.java:361)
    to oracle.jdbc.driver.T4CConnection. (T4CConnection.java:151)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:595)
    at com.sunopsis.sql.SnpsConnection.u (SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.c (SnpsConnection.java)
    at com.sunopsis.sql.i.run (i.java)
    .

    Please look in the operator for more details.

    Makes sense?

    http://img259.imageshack.us/img259/1704/screenshot003.jpg

    PS: Please close your threads accordingly award points (useful/correct) help experts for you with impatience.

    Thank you
    Guru

  • How to use the xp20 extension functions?

    Hello everyone,

    I want to use Java (JAXP) to perform XSL transformations using the xp20 extension functions (http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20).

    Transformation of"basic" is at work,
    Seller: < xsl: value - of select = "system-property('xsl:vendor')" / >
    Version: < xsl: value - of select = "system-property('xsl:version')" / >

    results in:
    Vendor: Oracle Corporation.
    Version: 2

    However, when I try < xsl: value - of select = "xp20:current - dateTime ()" / > (Yes, the namespace is declared), I get the following error:
    XML-22043: Fehler (error) bei Erweiterungsfunktion: method 'current-dateTime"non found
    (roughly: Error (error) according to the extension: "current-dateTime" method not found)

    This is after you have added the bpm - services.jar to my classpath. Before, I had a "class not found" (or something like that...).

    Assume that something is missing in my classpath - can I anyone tell me who I need to add the jar files and where to find them? This should be compatible with the suite and JDeveloper 10.1.3.4 SOA 10.1.3.4

    Thank you very much

    Finch

    4526876 October 9, 2006 bpm - services.jar (of soa_windows_x86_bpel_101310.zip)

    1211311 xmlparserv2.jar (from oracle xdk - 10.2.0.2.0)

    Don't run with all the exits, no variable set CLASSPATH, no ORACLE_ * defined variables:

    % java -cp "xmlparserv2.jar;bpm-services.jar" oracle.xml.parser.v2.oraxsl -w -v -debug -l input.xml -s date.xsl -r out
    Release version: Oracle XML Developers Kit 10.2.0.2.0 - Production
    1 XML document will be transformed using XSLT stylesheet specified in date.xsl with 1 thread
    Parsing file date.xsl
    Parsing file input.xml
    Transforming XML document specified in input.xml
    

    It seems to be a classpath issue. Try with java-verbose and you should see a line like

    ...
    [Loaded oracle.tip.pc.services.functions.Xpath20 from file://path/to/bpm-services.jar]
    ...
    
  • HELP to ' SQL error: ORA-00937: not a function of simple-group.

    < p >
    Hello world:

    I have a forum based on oracle 11g database. There two tables: article of thread and the relationship between the two is "one-to-many.

    I want to list the total number of seen of all the discussions in each section, and I write the sql code:

    Select s.secname, sum (sum1) of join of s section

    (select secid, sum1 sum (thrviewednum) of the Group of threads by secid) tt WE s.secid = tt.secid;



    The 'secid' column is the pharmacokinetics of the section table and FK of the table of thread, the "thrviewednum" the number of views of a thread.

    But I get the error:

    Error in the command line: 1 column: 7

    Error report:

    SQL error: ORA-00937: not a function of simple-group

    I can't understand the problem, could someone help me? Thank you.
    < /p >

    Hello

    Use this

    Select s.secname, sum (sum1) of join of s section

    (select secid, sum1 sum (thrviewednum) of the thread by secid group) THE group s.secid tt = tt.secid by s.secname;

    This is because the select statement contains a column that is not part of any group function, so this column must be there in the group by clause

    Concerning

  • How not to use the squint no functionality?

    I forgot how not to use the squint no functionality. Can anyone help?

    18.0 Firefox was released last Tuesday, you need to update.

    See if this FAQ for NoSquint answers your questions.

    https://urandom.ca/NoSquint/#FAQ

  • How to use the Print Screen function?

    I've seen various descriptions of how to use the print screen function.

    It would be nice to actually tell one that works.  None have worked for me.

    [Fn] and Prt SCr does not work.

    CTRL and Prt SCr does not work.

    CTRL, Alt, and Prt SCr does not work.

    [Fn], Ctrl and Prt SCr does not work.

    If anyone knows the correct method to activate the screen capture function which would be a good thing.

    From the looks of things, HP has a big problem with this function.

    Here's a microsoft articleon the use of the screenshot function.

    This should answer your questions.

    Thanks for taking a peek.

  • Using the Excel sort function through tiara.

    Hello

    I'm looking to make use of the sorting function in Excel via DIAdem. I export the data of my. TOC files in a newspaper running in Excel, and I'd like to be able to sort out a selection, in ascending order, based on the data in the first column.

    Everyone has achieved something close to that?

    I appreciate any help you can offer.

    Hey Kevin,

    I was look a little on the web about the issue you are experiencing. Honestly, I'm not an expert on ActiveX scripting, however I found out something that at least might be useful about the method in script of the Excel worksheets. If you take a look at the second point on this link, how certain methods and properties are disabled when a control tool is active and above all they talk about the method out and that they offer as workaround to activate another element on the sheet before calling the method out.

    I hope that you will find useful for your development as well!

    Best regards,

  • Sims House Party, the installation program starts, then immediately closes, gives me the error "0 x 80040707 - call function DLL crashed: SORTS." PathGetSpecialFolder.

    original title: error number: 0 x 80040707
    When I try to install the Sims House Party, the installer launches and then immediately closes, gives me the error "0 x 80040707 - call function DLL crashed: SORTS." PathGetSpecialFolder.

    According to the compatility of Windows 7, the House Party is compatible under 64-bit and 32-bit Windows 7. I tried to install it on another computer running Windows 7 32 bit and the error does not occur.

    I am running Windows 7 Professional 64 bit.

    Looks like that method 1 solved my problem.  Normally, I would get this message several times a day.  For more than 3 hours I applied the method 1, and the error has not appeared again.  Thank you very much.

Maybe you are looking for

  • drive DVD - auto eject tray

    Hello. I had this problem for two weeks. While working on my laptop, the DVD tray ejects automatically out. There is no disk/cd player. And it happens randomly. I tried to reinstall the storage driver, but it worked as well. Please help me with an ef

  • Look at an Iplayer on TV via laptop

    I've been able to use the laptop to watch TV through the TV using an HDMI cable.  For some reason any it has stopped working.  I clicked on the monitors to activate 2 in the control panel and reset the screen resolution.  Any ideas anyone?  Just get

  • MD3220i lock problem

    Hi all We have a strange problem with the md3220i. The system is brand new, we opened the packages and the power of the system, but we have something strange with the newspapers. We cannot communicate with the controller. That's what we see in the pa

  • HP ENVY 14 t - 3000 SPECTRUM CTO PC laptop - adapter

    I am trying to find the right power for this new notebook (spectrum Envy 14).  The trick seems different from what I can find, and a few other forum messages seem to indicate that HP recommends not correct sometimes.

  • Number of records issue - need recommendation

    Hi - I'm changing sizes of an ASM disk and I have the opportunity to change the number of disks at the same time. Original config was of 3 disks, but grew up in 5 to support growth.  Growth is now expected to be static.  I'm trying to find a recommen