Urgent - Does report 6.0 release supports collection types

Hi,
We went through the report 6.0 of developer 6.0(beta). There we
found that it does currently supports all Oracle8 features. The
major unsupported features are:
1. Collection types (nested tables and varying arrays).
2. Stored procedures that return object values.
But for our forthcoming project we need extensive supports of
oracle 8 new features like REF, nested table, varying arrays as
well as stored procedures that return object values.
So can anybody tell me whether Developer 6.0 realease version
supports those features.
Thanks & regards.
Ashokejyoti Biswas
null

Mahesh Gangarapu (guest) wrote:
: RESPECTED Seniors and Fellow Partners,
: When I first loaded O8 ver 8.0.4.xxx and then tried to load
: dev6 . The D6 installation used remove my primary database
: created . Then I devised a plan I loaded D6 first and then
: installed O8 ver 8.0.4 . The initial (primary) database was
: created and i could connect from D6 to my O8 database . But the
: problem now is that THE D6 supports simple OBJECT types but it
: does not support NESTED TABLES . The ERROR i get is DATABASE
: ERROR 1
: can you help me out with this problem of mine
: THAnk you
: Mahesh
Hi Mahesh
I've tried this in Forms5.0 and ended up with an error which says
unsupported network data type.
The only way, as far as I know , to use a new object feature in
Oracle 8 through developer R2.x or also R6.0 (i haven't seen
this) is use a data block created with a stored procedure at the
back end. U can use REF cursor as one of the parameters in the
procedure and table type as another parameter. This option will
definitely work for U. I have done this some time . U should
create a package with procedures to select , insert , delete and
update respectively and when U associate a block with this Forms
will tale care of coding triggers like
select-procedure
insert-procedure
delete-procedure
update-procedure
lock-procedure
Bye Rajesh
null

Similar Messages

  • Does the final Release 5.1 Support ear type deployment in Weblogic

    I down loaded final Release 5.1 and trying to find deploying different
    modules using using ear (Enterprise Archieve), I can not find
    any documents.
    Does the final Release support ear type deploying or not.
    Regards
    Krishna

    No, it supports war and jar deployments only.
    -- Rob
    Krishna Chaganti wrote:
    I down loaded final Release 5.1 and trying to find deploying different
    modules using using ear (Enterprise Archieve), I can not find
    any documents.
    Does the final Release support ear type deploying or not.
    Regards
    Krishna

  • Collection type supported in Oracle Forms Forms [32 Bit] Version 6.0.8.11.3

    Hi
    I am trying to call this from forms.
    I am getting error no data found whenever this calles IF condition but from backend if run it from a script it works fine.
    So I was thinking whether Forms PL/SQL version supports collection types.
    I am using Forms [32 Bit] Version 6.0.8.11.3 (Production) for Oracle Application 11.5.10 version.
    IF (p_emp_ids.COUNT > 0) THEN
    FOR r IN v_emp_ids.FIRST..v_pkg_ids.LAST LOOP
    Thanks in Advance

    Is it just a a typo that the IF is on P_emp_ids and the loop is on V_em_ids?
    However: the NO_DATA_FOUND exception suggests that you may be falling down a crack in your collection. If you have a missing element between FIRST and LAST you will get a no_data_found. Suppose these elements are there:
    (1), (2). (3), (5), (6)
    You will start at FIRST (1) and finish at LAST (6). But your loop on R will try to find the element at (4). Which isn't there. Oops...
    To prove that's what's happening, you can wrap the inside of the loop with an exception handler
       BEGIN
          do the access to v_emp_ids(r)
       EXCEPTION
          WHEN NO_DATA_FOUND then (log a message with the value if R in it)
       END;If you want to walk a collection with gaps (a "sparse" collection), this is the way:
      DECLARE
         r pls_integer;
      BEGIN
         r := v_empids.FIRST
         LOOP
             EXIT when r IS NULL;
             do the business on v_empids(r);
             r := v_empids(r).NEXT;
         END LOOP;Now, why didn't this work in Forms, but did on the server? Possible reasons:
    - your back end script was set up differently - so you had a dense collection (no gaps)
    - Client side PL/SQL is different from server side (is it still version 1.x?)
    HTH
    Regards Nigel
    Message was edited by:
    nthomas

  • Collection type support in Forms version 6.0.8.11.3

    Hi
    I am trying to call this from forms.
    I am getting error no data found whenever this calls IF condition but from backend if run it from a script it works fine.
    So I was thinking whether Forms PL/SQL version supports collection types.
    I am using Forms [32 Bit] Version 6.0.8.11.3 (Production).
    IF (p_emp_ids.COUNT > 0) THEN
    FOR r IN v_emp_ids.FIRST..v_pkg_ids.LAST LOOP
    Thanks in Advance

    Is it just a a typo that the IF is on P_emp_ids and the loop is on V_em_ids?
    However: the NO_DATA_FOUND exception suggests that you may be falling down a crack in your collection. If you have a missing element between FIRST and LAST you will get a no_data_found. Suppose these elements are there:
    (1), (2). (3), (5), (6)
    You will start at FIRST (1) and finish at LAST (6). But your loop on R will try to find the element at (4). Which isn't there. Oops...
    To prove that's what's happening, you can wrap the inside of the loop with an exception handler
       BEGIN
          do the access to v_emp_ids(r)
       EXCEPTION
          WHEN NO_DATA_FOUND then (log a message with the value if R in it)
       END;If you want to walk a collection with gaps (a "sparse" collection), this is the way:
      DECLARE
         r pls_integer;
      BEGIN
         r := v_empids.FIRST
         LOOP
             EXIT when r IS NULL;
             do the business on v_empids(r);
             r := v_empids(r).NEXT;
         END LOOP;Now, why didn't this work in Forms, but did on the server? Possible reasons:
    - your back end script was set up differently - so you had a dense collection (no gaps)
    - Client side PL/SQL is different from server side (is it still version 1.x?)
    HTH
    Regards Nigel
    Message was edited by:
    nthomas

  • Does Report Builder 6i support Spatial Functions

    Does Report Builder 6i support spatial functions? I would like to use the following query in a report:
    SELECT id, rseq
    FROM gps a, user_sdo_geom_metadata m
    WHERE m.table_name = 'GPS'
    and mdsys.sdo_lrs.is_geom_segment_defined (a.geom, m.diminfo) = 'FALSE' and a.id like '01%'
    It does not recognize the spatial LRS function. This query does not return geometries but rather will only return tabular information.
    Thanks
    Dave

    Hello,
    Your colleague is right. Even if the SQL query is executed by the DB server , Reports needs to parse the SQL query.
    The SQL parser included in Reports 6i is based on 8.0.6
    You can see this version in the Reports Builder help :
    Menu : Help -> About Reports Builder ...
    ORACLE Server Release 8.0.6.0.0
    Regards

  • Waht is the email address to report a refund. I paid monthly subscription for Fring but it does not work and Fring support asked me to report this to Apple support.?

    Waht is the email address to report a refund. I paid monthly subscription for Fring but it does not work and Fring support asked me to report this to Apple support? I'm not aable to report this issue to the right people??

    For issues with an iTunes Store purchase, email:
    http://apple.com/support/itunes/contact/

  • Crystal Reports server XI release 2 java Integration - Urgent

    Post Author: premnathk.chn
    CA Forum: JAVA
    Hi,
      I am trying to evaluvate Crystal Reports server XI release 2 and i face problems in integrating it with java. can sombody help me out?
    Also when i try to open a report using INFOVIEW i get a cannot open connection error.
    thank & regards,
    Prem

    What problems exactly are you running into?  Are you getting errors?  Also - the infoview error is most likely that the report can't connect to the database - or that the account that the Page or RAS server is running under can't see the database server.  Try running the page server and RAS server under a user account that has domain privileges
    a programmer learning programming from perl is like a chemisty student learning the definition of "exothermic" with dynamite

  • Crystal Reports server XI release 2  -Urgent

    Hi,
      I am trying to evaluvate Crystal Reports server XI release 2 and i face problems in integrating it with java. can sombody help me out?
    Also when i try to open a report using INFOVIEW i get a cannot open connection error.
    thank & regards,
    Prem

    What problems exactly are you running into?  Are you getting errors?  Also - the infoview error is most likely that the report can't connect to the database - or that the account that the Page or RAS server is running under can't see the database server.  Try running the page server and RAS server under a user account that has domain privileges
    a programmer learning programming from perl is like a chemisty student learning the definition of "exothermic" with dynamite

  • Does Adobe have a tech support contact for Flash on browsers?

    I am looking how to escalate to Adobe Tech Support but paying 29 bux an hour for some recruited college Grad that knows to little doesnt suit me.
    Bought an HP Quad and it had Win7 home so poorly installed, configured, overloaded with junk, would not backup, when it did backup and create a repair disk they wouldnt restore.  HP's preloaded Win7 build both IE8 and Firefox were crashing with both BSOD and Browsers not responding and dying. Firefox never responds to anything, Microsoft indicates is an add on problem but I think it can be a flash issue although it occurs much more on Wiin7 (ANY Version) for 32 or 64 bit.  I have been screwing with this for a month screaming at Microsoft and Mozilla but its a waste of time.  
    Microsoft forums are polluted for Win7 browser BSOD and Browser halting then crashing posts, there answer is disable add-ons.  I cant surf the net without add ons so that is a stupid reponse of finger pointing, giving appearance that Msoft, Adobe and Mozilla dont communicate.  No company will take ownership and drive the issue to find the root cause and where ever that cause is make them fix it, Msfot, Adobe of Firefox.   so what do ya do?
        The HP PC with horrible preload of win7 finally died and killed the build but Microsoft was equally useless in helping me repair that preloaded junk even though the OS is theres.    I BOUGHT real disks because HP couldnt support the mess - HP couldnt support chewing food let alone the mess they place on PC's with 90% asian parts with old drivers.   Eleven escaltions starting on DAY 1 of ownership of a Pavilion.  Hundreds of crash dump error reports sent to Firefox has still gone unresponsed, as they employ the 5th ammendment ,method of silence without support and Msoft remove all add on is laughable but proves HP. Firefox and MicroSoft wont assume responsibilty.  
    This sucks as all three gloat and boast about a HIGH levels of support and awards won for support but it is all myth, and laughably a lie but I still want it repaired.   28 years in IT - retired I feel qualififed to make the observation.
    I never attempted to contact Adobe but I get redirected after seeing the warning about 39 bucks an hour to answer a phone for a freeware add-on.
    Does anyone know of have a escalation path to a real person at adobe or department beause tthis site redirects from the ASK Adobe Support link meaning I cant even mail a question to then,  Already a BAD sign but the driver is free, but they wrote, and millions are having issue so where is there support -  Why bother writing  the addon if people cant even ask a question.
    So does any know if they support the flash add-on without charging?     a Glitch they might want to know about is flash 10.0.0.1 shows in Win7 Event logs as version 0.0.0.1 and I have logs showing that an addon report from the DEP (Data Execution Service) saw an add-on go to a non executalbe memory region whenthe only add-on I have is flash.
    Google for IE8 Browser Crash 566,500, Win7 Browser crash 1,500,000,  Firefox crashing 587,000, Firefox flash crash 1,420,000, Adobe flash crash 1,820,000,   are 4,615,500 google posts found for one issue and I know there are more than that failing but Im sick of the whole thing so adobe is my last gasp.   Please respond if you have a fix or path to escalate to adobe.
    Thanks.
    What a mess that no company so far stands up willing to take ownership of this just to find the root cause.

    I don't have a definitive answer, but I would guess you won't find a tech support service dedicated to the Flash Player since it is free software and customers apparently have problems getting tech support for the products they buy.  But here are a couple of things worth considering.
    Try posting/looking thru the Flash Player forum...
    http://forums.adobe.com/community/webplayers/flash_player
    Try submitting a bug report...
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • USELESS ONLINE HELP FACILITIES For all the amazing productivity aids that APPLE offers the world I have to report that their online support service is worse than useless and has recently been the source of immense time wasting and irritation.

    USELESS ONLINE HELP FACILITIES
    For all the amazing productivity aids that APPLE offers the world I have to report that their online support service is worse than useless and has recently been the source of immense time wasting and irritation.
    Incident 1. Since many months attempts to download new and updated APPs produced a response – Apple ID Disabled. I had no time to consult an APPLE Store due to work in distant lands. When I finally visited yesterday I was told that as my IPAD has been reported as stolen, and APPLE in its wisdom had blocked its usage! I am not sure how they became so misinformed and nobody every advised me while with a few swift moves APPLE could have located me by email address or SKYPE.
    Incident 2. Once the above anomaly had been fixed I tried to down load a newspaper and diligently input my address, credit card number and personal data. Repeatedly I was advised that my Credit Card was invalid and my postal code was incorrect! Really!
    I was left to guess that having moved from UK to the US I should have advised APPLE! Not being told of this requirement brought about a second visit to APPLE Store in the same day to waste both mine and their time with a routine anomaly. How parochial in the context of a globalized world!
    In each case I tried to resolve the issues using online access to a help line and by calling by phone at the numbers on the APPLE Website. In each of four separate occasions I diligently went through the routine and  ended up with a message that thanked me for contacting Apple followed by a polite ‘Good Bye’!
    In desperation I went to an Apple Store for the second time in a day as it is close to where I live when I am not working. On both occasions I was courteously attended to by Apple Staff.
    However, my work is usually far away from the US and it is generally many thousands of miles to the nearest Apple Store therefore online help is viewed as imperative if one is to resolve issues away from home.
    Why can Apple not provide a clearly marked EMAIL address and Telephone number at a Help Desk with real people to respond to requests for help? It would cost nothing in relative terms and might restore my high level of anti-APPLE sentiment that these two recent events have provoked.
    Peter Hanney
    Miami, Fl.

    Why can Apple not provide a clearly marked EMAIL address and Telephone number at a Help Desk with real people to respond to requests for help?
    If that is your question, the answer is at the bottom right of this web page. It is clearly marked "Contact Us" and is the best way, really the only way, to contact Apple.
    If there were a publicly posted email address for concerns such as yours, it would be quickly filled with spam in about three minutes, thereby becoming instantly useless to you and everyone else. Apple would need to change it hourly, if not more often. That is also the reason you ought not to post your name, location, and what appears to be your iPad's serial number on this publicly viewable website.
    Apple does not respond here and I can find no other questions for your fellow Apple users to answer.

  • HP 8500 printer will not print fast on firefox, but does on Safari. HP support says it is a problem with firefox. Can you help me out?

    Question
    HP 8500 printer will not print fast on firefox, but does on Safari. HP support says it is a problem with firefox. Can you help me out? edit

    Thank you for posting your list of installed Extensions. One of them might be intercepting the menu command. Since you have the Add-on Compatibility Reporter, it's possible that an older add-on that doesn't actually work well with Firefox 5 could be to blame. Could you try disabling the "HP Smart Web Printing" extension and see whether that makes any difference?
    Also, you can simulate a print button on a web site by pasting this to the location bar and pressing Enter. You also can save it as a bookmark for easier access (when scripts are saved as bookmarks, we call them bookmarklets). Hopefully you won't need it for long.
    <br>javascript:void(window.print());

  • OPs Center Release supporting Solaris 11 provisioning

    hi all
    Does anybody know when comes the Ops Center release supporting the provisioning of Solaris 11 ?
    kind regards
    Sven

    In the next release of Ops Center you can provision Solaris 11 via an excellent integration with Solaris Automated Installer. To find out more information about future products from Oracle, please contact your local sales or service representative.

  • Does the Catalyst 2960x-48TD support Cisco's IGMP Snooping MIB?

    Does the Catalyst 2960x-48TD support Cisco's IGMP Snooping MIB?  We have a number of switches from different vendors and have recently begun switching to Cisco's, however unlike the other brands I am unable to audit the IGMP Snooping settings via SNMP.  It appears that while the switch supports IGMP Snooping it does not support the CISCO MIB for IGMP Snooping.  Is this a known bug and is it fixed in any of the later releases?
    Our company is purchasing and deploying C2960X-48TD's and I am tasked with updating our system audit software 

    Hi Sean,
    Nov 21 15:40:42.390: %MCAST-SPSTBY-6-ETRACK_STATS_LIMIT_EXCEEDED: Number of entries in IGMP snooping explicit-tracking statistics has exceeded the maximum limit (32000)
    The above log message is written because the number of explicit-tracking statistics entries is bounded to avoid monopolizing of system resources by IGMP/MLD snooping. The explicit-tracking statistics database maximum size is set to the same as that of explicit-tracking limit.
    The statistics are split into two banks: permanent and volatile. The statistics entries will be stored permanently (volatile) until the permanent entries threshold is reached, after which the statistics will be stored temporarily up to the database maximum size. When the size of the database exceeds the permanent threshold, a group will be removed on receiving an IGMP/MLD leave. Groups can be removed whether they were installed above or below the permanent threshold. If the number of statistics entries grows beyond the maximum size of the database, then no statistics will be stored for any newly formed groups.
    You can disable ip igmp snooping explicit-tracking by the following
    1) Configure "no ip igmp snooping explicit-tracking"
    2) Configure "ip igmp snooping limit track 0" on global.
    3) After ET is disabled, please do a "clear ip igmp snooping statistics".
    Here is a reference URL (please make sure you copy and paste the entire link to the browser):
    http://www.cisco.com/en/US/docs/switches/lan/catalyst6500/ios/12.2SX/configuration/guide/snooigmp.html#wp1062242
    HTH
    Luke

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

    Hello, I created an TYPE of OBJECT and a PLSQL Function as shown below, but the function compilation errors with following. Not sure where is the issue?
    PLS-00630: pipelined functions must have a supported collection return typeThis is on Oracle 10g 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 is 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 below are tradtional table types that are used in 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

    Thank you Billy and Saubhik,
    I have followed your guidelines and was able to resolve this error. Now, after successfully compiling the code, I attempted to execute it in a following way.
    SELECT * FROM TABLE (cxs_generate_plsql_profiler);It gives following error: ORA-00904: "CXS_GENERATE_PLSQL_PROFILER": invalid identifier
    I also tried putting in quotes like below
    SELECT * FROM TABLE ('cxs_generate_plsql_profiler');Then, it gives following error:
    ORA-22905: cannot access rows from a non-nested table item
    Any Idea where I am doing wrong?
    Thanks,
    R

  • Report All SCCM clients and Collections

    Hi all
    I'm trying to create report
    All SCCM clients and Collections
    But I can't convert multiple rows (collections) in one row
    I got:
    Name        Collection Name
    ps1             serverDP
    ps1               Adobe
    ps2                CRT
    ps2               Note
    I need:
    Name        Collection Name
    ps1             serverDP ,Adobe
    ps2                 CRT,Note
    Im using following query ....but it doesn't work .Need help!!!  
    select
    v_FullCollectionMembership
    .Name
    as Name,
    CollName
    =
    stuff((SELECT
    + v_Collection.Name
    from
    v_Collection
    where
    v_Collection.CollectionID
    = v_FullCollectionMembership.CollectionID
    FOR
    XML
    PATH('')
    ), 1,
    1,'')
    FROM v_FullCollectionMembership
    Gerkin

    Hi,
    I recommend you use Report Builder to create the report.
    Using Matrix and LookupSet to merge the table.
    =join(LookupSet(Fields!Name.Value, Fields!Name.Value, Fields!CollName.Value, "DataSet_name"), ",")
    For more information, please review the link below:
    Adding a Matrix (Reporting Services)
    http://technet.microsoft.com/en-us/library/ms157334(v=SQL.100).aspx
    LookupSet Function (Report Builder and SSRS)
    http://msdn.microsoft.com/en-IN/library/ee240819.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for