CONTEXT  TOP 10 ISSUES

제품 : ORACLE SERVER
작성날짜 : 2002-05-15
CONTEXT TOP 10 ISSUES
========================
Explanation
1. 프로시져 컴파일시 PLS-00201 과 "PL/SQL:Statement ignored" 에러의 발생하는
문제.
Stored procedure 컴파일시 다음과 같은 메시지가 나올 경우
PLS-00201 : identifiier 'CTXSYS.CTX_QUERY' must be declared
PL/SQL : Statement ignored
ctxsys 유저에서 해당 사용자에게 CTX_QUERY 에 대한 execute 권한을 준다.
-> grant execute on ctx_query to <user>;
2. UNIX에서 ps 명령으로 ctxsys 유저의 패스워드를 볼 수 있는 문제.
Unix에서 ps 명령으로 보면 다음과 같이 ctxsys 유저의 패스워드를
볼 수 있다.
/oracle/ora805/ctxsrv -user ctxsys/ctxsys -personality ...
이 경우 다음 password 파일을 사용하여 ctxsrv를 기동시키면 패스워드를
보이지 않게 할 수 있다.
passwordfile.txt 파일에 ctxsys/<ctxsys password> 형식으로 편집한 후
ctxsrv -personality QDM < passwordfile.txt &
3 Two Step Query 실행시 ORA-20000, DRG-10801, DRG10010 이 발생하는 문제.
     Two-Step ConText query를 실행하면 다음과 같이 error가 발생할 경우
     exec ctx_query.contains('PROJ_DESC_POLICY','customer','RESULT4');
     ERROR at line 1:
     ORA-20000: ConText error:
     DRG-10801: text query failed
     DRG-10010: REQUIRED COLUMN DOES NOT EXIST IN RESULT TABLE
     -> 이 error는 result table에 textkey2 column이 없기 때문에 나는 error
이다.
     composite textkey에 적절한 textkeyN를 가진 result table을 생성한다.
     예) exec ctx_ddl.create_policy(policy_name=> 'Proj_desc_policy',
     colspec=>'tprojects.column',textkey=> 'proj,title');
     Composite index가 'proj' 와 'title'의 두 column을 참조한다.
     create table result4(textkey,textkey2,score,conid);
4. 64k가 넘는 파일을 CTXLOAD로 올릴때 DRG-11514, DRG-11508, DRG-11505가
발생하는 문제.
64k가 넘는 파일을 ctxload로 올릴때 DRG-11514, DRG-11508, DRG-11505가
발생할 경우 ctxload command 에서 -longsize를 반드시 지정해 주어야 한다.
예) ctxload -user scott/tiger -table htmltable -load loadhtm2
-separate -longsize 100
5. Context Linguistics 서버 기동시 DRG-00100 및 "Server shutting down"
에러가 발생하는 문제.
설치할 때 context의 linguistic 설정이 완결되지 않아 발생한 문제로 다음
과같이 해결할 수 있다.
cd $ORACLE_HOME/ctx/admin
imp ctxsys/ctxsys file=ctxset.dmp full=y ignore=y
6. 다른 사용자가 생성한 테이블에 대해 select priviledge를 부여 받고도, 그
테이블에 대해 만든 policy로 structured query를 실행 할 경우 DRG-100[50801] 및
ORA-1031가 발생하는 문제.
select priviledge 이외에 grant option을 받아야 한다.
grant select on <tablename> to <사용자명> with grant option;
7. 다른 사용자가 생성한 테이블에 만든 policy로 질의 실행시 ORA-20000,
DRG-10801, DRG10502, ORA-06512 가 발생하는 문제.
ERROR at line 1:
ORA_20000: Context error:
DRG-10801: text query failed
DRG-10502: policy 'policy name' does not exist
ORA-06512: at "CTXSYS.DRUE", line 180
ORA-06512: at "CTXSYS.CTX_QUERY", line 1417
ORA-06512: at line 1
이와 같은 에러 메시지가 뜰 경우 policy 및 index가 정상적으로 생성이
되었는지, 그리고 대상 table에 대한 select 권한을 부여 받았는지 확인해 본
다.
8. Policy 생성시 ORA-200000 과 DRG-10503 이 발생하는 문제.
exec ctx_ddl.create_policy('POLICY_NAME', 'table.tablecolumn');
ORA-20000
DRG-10503 suitable textkey not found
이와 같은 에러가 발생할 경우 해당 테이블에 primary key를 지정해 주어야
한다.
alter table <table_name> add constraint primary key (column_name);
9. Context 사용자를 cascade 옵션을 사용해서 drop 한 후 context server를
기동시킬 때 DRG-50301,ORA-20000, DRG-11000, ORA-02292 가 발생하면서 기동이 되지 않는 문제.
Context server 기동시 다음과 같은 에러메시지가 나오는 것은 사용자를
cascade option으로 drop 시켰기 때문이다.
DRG-50301 Server error reading request queue
ORA-20000 Context error
DRG-11000 failed to perform recovery for a server or client
ORA-02292 integrity constraint (%s.%s) violated -child record found
이것은 drop 된 context 사용자의 index, policy, preference가 계속 존재 하기 때문이다.
해결책은 drop된 사용자와 동일한 이름으로 user를 만들고, 기존에 부여된
role (ctxsys, ctxapp, ctxuser) 를 부여해 준 후, index, policy,
reference를 순서대로 삭제해 주면 된다.
10. Policy 생성시 DRG-10537, ORA-06512 발생하는 문제.
exec ctx_ddl.create_policy('POLICY_NAME', 'tablename.colname');
DRG-10537 textkey <col_name> length of 80 exceeds limit
ORA-6512 at ctxsys.drue, line 110
ORA-6512 at ctxsys.drue, line 833
이 문제는 textkey가 시스템상에서 한계치인 64k를 넘어 설 경우 발생한다.
exec ctx_ddl.create_policy(policy_name => 'POLICYNAME',
colspec => 'tablename.colname', textkey => 'tablename.keycolname')
과 같이 명시적으로 primary key 컬럼을 지정해 주어 unique constraint를
가진 모든컬럼이 textkey에 포함되지 않도록 해 본다.
Reference Ducumment
---------------------

There is nothing like Top issues with it!!!!
If you need to use DBlinks then you ought to use it, thats simple.
The only thing is that you need to be aware of some facts:
1) You should get access to the remote database for creating the DB links. Sometimes remote databases are goverened by different SLAs and hence its diffucult to get access to userid/password.
2) Evaluate carefully before creating public database links, that might expose your remote database to all the local database accounts without your knowledge.
3) With DB links comes into picture districuted transactions and hence expect execution plans etc behaving different in comparison to sqls accessing the same DB.
4) Also be ready to view more DBA_2pc_pending and DBA_2pc_neighbors DD views, since due to any instablity in network between local and remote DB there might be in-doubt transactions.
5) when clonding the PROD DB to test database, make sure to wipe out the dblinks so that nothing from test points to prod environment.

Similar Messages

  • Top issues with Dreamweaver on Mac OS 10.9 (Maverick)

    Hi all,
    For a list of issues with using Dreamweaver on Mac OS, and the workaround solutions, see https://helpx.adobe.com/dreamweaver.html. The issues are listed under Top Issues.
    Also, if you have problems loading Dreamweaver because of missing fonts, contact customer care (http://helpx.adobe.com/contact.html) for help.
    Thanks,
    Preran

    Moving this discussion to the Adobe Media Encoder forum.
    A/V Warrior I would recommend reviewing your installation logs to verify that no installation errors occurred.  Please see Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html for information on how to locate and interpret your installation log files.  Please feel free to post any specific errors you discover to this discussion.
    Also in case it is applicable can you please provide the specifics regarding the computer hardware you are running Premiere Pro CC and the Adobe Media Encoder on?  Please see http://www.adobe.com/products/premiere/tech-specs.html for a guide of the hardware specifics which may be applicable.  You will also want to verify that you meet or exceed the system requirements.

  • Synchronizing Top Issues with SAP

    In the SAP Engagement and Service Delivery work center I have created a Top Issue and sent it to SAP. They can see it and change it. However I don't see the changes they make on their side. The SM:TOP ISSUE TRANSFER job is running and transfers data to SAP I just don't see their updates. Is there something missing or are Top Issues just a one-way communication?

    >
    David Hill wrote:
    > In the SAP Engagement and Service Delivery work center I have created a Top Issue and sent it to SAP. They can see it and change it. However I don't see the changes they make on their side. The SM:TOP ISSUE TRANSFER job is running and transfers data to SAP I just don't see their updates. Is there something missing or are Top Issues just a one-way communication?
    Top Issues are edited in customer SolMan, updates are transferred to SAP.
    Memos at SAP are not synchronized back. Relevant information needs to be entered in Top Issue in customer SolMan.
    Regards, Ruediger

  • Adobe now providing RSS Feeds to Top Issues

    Adobe are now providing RSS Feeds to Photoshop Top Issues and Recent Knowledgebase Tech docs.
    Links to these feeds are now displayed in the Forum Header. You should drag those links to a newsreader or RSS Reader Browser add-on in order to view them.

    I believe that there are a number of features of Bridge that are only available when you have more of the Suite than just Photoshop.
    Bridge Center and its contents is one of them.
    That would make sense because Bridge Center is really designed to provide links between the various applications that are part of the CS2 Suite.
    Bridge Center provides numerous tools: Synchronized Color Management, Version Cue project index (I don't personally use VC at this time); Tips & Tricks and "Help" tabs; the RSS Reader; and Management/Indexing and hot link application launching for recent Files, Folders, and File Groups (files from different applications that are used in a particular job).

  • Valign top issues - please help!

    hi hi,
    ok I am not a beginner but not quite an expert (yet!) Small issue:
    I built this page and want it to all to align to the top of the page. I added valign="top", however still does not work. Did I place it in the wrong spot? Here is my test page:
    http://hungry4web.net/zac_test/
    I am working in CS3, on a Mac, and I have tested/viewed it in Firefox, Safari and a really old IE, and it does not align in any.
    Any help and guidance you can provide is SUPER appreciated!
    Thank you!

    You need to use margin on the body - add the following to your body rule you have in the head of the document:
    <!--
    body {
        background-color: #deebf4;
    margin: 0 auto;     /* add this to set the top to 0 */
    -->
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Flash trapallkeys and context menu issue on Mac

    Hi
    Using Flash CS3 and AS2. There seems to be a conflict when trapping all keys and with the context menu on Mac. If I have a Flash movie with a single line of code:
    fscommand("trapallkeys", "true"); 
    When I open the resulting swf in either the standalone Flash Player or if I publish as a Mac projector, when I right-click I get the context menu appear as normal, but none of the menu items work - nothing is triggered and the menu disappears. This is even the case for "Settings..." and "About Flash Player..." items. If I open the swf in a browser or run the movie from the Flash authoring environment, then the context menu works - but of course the fscommand is not run in these circumstances.
    I've tried publishing for different Flash Player versions (down to 5!) and running in different Flash Players (a couple of version 9's and the latest version 10). 
    Has/can anyone get the fscommand to run AND the context menu to work together in the standalone Flash Player or the Mac projector? By the way, this only seems to be an issue on the Mac version - both work together on a Windows machine. 
    Any help at all would be greatly appreciated. 
    Thanks, Mark

    Hello Rohan,
    We had the same issues as you described and we're on NW 2004s patch 9.
    We applied the OSS note 909314 (as SAP suggested) and those two issues were resolved.
    Thanks,
    Elena.

  • My Top Issues with iPhone 6 + iOS 8.0.2

    I'm having a bevy of issues with my new iPhone 6 and iOS 8.0.2... I thought I'd put some of these out to stud, as those smarter than I have found resolves for... I'd love to enjoy this device, but some of the issues are completely off-putting. They are as follows:
    1. Email is setup to push, however when it is read on the computer, the notification no longer disappears from the lock screen until the phone is unlocked. Prior to upgrading, the notifications would immediately disappear when the emails were opened on the desktop. There seemed to be perfect sync between the mobile device and email interface.
    2. The lingering notification "1" on top of the Settings icon. Not sure how to get rid of it, but combed through and don't have any outstanding updates or backups.
    3. Certain applications arbitrarly lag or freeze (i.e. Facebook, Mail, etc...). Applications either shut-down or restart. Happens less frequently, but more so than previous device/iOS.
    4. Text message and email searches don't work. If I type in the name of a contact in Messaging, unless it's a very recent contact - it doesn't populate with results. Same is roughly the case for email.
    Any ideas on the above? Thanks guys.

    The transference of software between devices can come with problems. The only way to overcome those issues is troubleshooting. I'm sorry it is too much of a hassle to ensure your device is in proper working order. It is far less of a hassle then dealing with problems and complaining about them. Good luck with your device.

  • Saving Interactive reports in a SaaS context an issue?

    Hi,
    at the company I'm working for, we have an application that is used by different client. Each client uses the same application but they all have different CSS and they can customize things like they want. To diffentiate each client, obviously we use different ID.
    Now, we haven't move to 3.1 yet (still 3.0) and we find the interactive report interesting. But when it comes to the "save report" function. That's where using the same application for different clients becomes an issue. Each user can save their own report with their own filters. But since, APEX recognize the user only by it's username, if 2 users from 2 different clients share the same username, the changes made by user 1 will be seen by user 2 and vice versa.
    We have a 3.1 environment and I've tested the above and indeed, that is the case. Could we find a workaround? Where are the reports information saved?
    Thanks, Reginald
    Edited by: reggieh on Nov 17, 2008 11:19 AM

    Scott
    Now here's something that was pointed out to me : What happens when you change username? By the way things are working, I would think that you automatically lose your saved reports right?
    Now, I was wondering if there could be a way to override the APP_USER value, or if it can only be modified by the APEX login API? Because, I thought, that maybe I could put the userid instead of the username in the APP_USER, so that even if the user changes his username, he would still have all his saved reports.
    Now I thought about puting the username entered in an application item, then passing the userid in the login API, but that wouldn't make a lot of sense, because it would mean that I would go get the userid before the person is not even validated to the system. It would probably work, but I don't think it's a clean way of doing things. So the best would be to actually override the APP_USER while IN my custom login function that is called by the API.
    If I'm correct, the p_password parameter of my custom function is assigned to APP_USER once that function returns true, right?
    I know that is a lot of questions! So, thanks a lot for your time!
    Edited by: reggieh on Nov 17, 2008 1:58 PM

  • Making  photo folders on the desk top- issue?

    Currently all my photos are organized in iPhoto by date/roll#. Each picture is given the automatic titles like Pict0008.jpg by iPhoto. Occasionally i want to select certain photos and organize them on the desk top into folders I create. When I drag a photo I took in december titled Pict0001.jpg into the folder on the desktop and then try to drag a photo I took in Feb (which also happens to be called Pict0001.jpg) I get a dialog boxs asking me if I want to replace the older version with the newer one. I understand why it is doing this but I can't seem to by pass the dialog box by retitling the newer photo. Even if I retitle both photos iPhoto still continues to read the original # name it gave the photo when it was imported into iphoto. How can I do this?
    Thanks in advance

    melanie,
    When you rename a photo in iPhoto you are giving it a title which is only reflected within iPhoto. the image name stays the same in the Finder. That is why if you just drag the images from the iPhoto window to the desktop they still have the original file name. In order to change the file name you have to export the image and use either the title or album name as the naming scheme. This does change the image name to the title/album in the Finder for the exported image.

  • Webdynpro model context mapping issue

    Hi,
    I have created a faceless Web Dynpro model component (DC1) and an UI Component (DC2).
    DC1 is an used component in DC2.
    After mapping the model node from the interface controller of DC1 to DC2 it says "Referenced model class is missing".
    I asume, I should add the model as used model to DC2 as well.
    But when I proceed this way I am wondering why you should create a seperate model Web Dynpro DC? Where are the Pros?
    Can anybody tell my how to proceed with this issue?
    Are there any best practices how to use a central model DC in Webdynpro and access the data via interface mapping from other DCs?
    Thanks ahead

    Hi Bernd,
    For reusability, model component and functional components are seperated. In model component, all the model created which are used for all func components. and In Func component usage model component based on the requirement to use number of model that web dynpro componetization
    >But when I proceed this way I am wondering why you should create a seperate model Web Dynpro DC? Where are the Pros?
    Can anybody tell my how to proceed with this issue?
    For seperation of business logic model component from visual component.
    Componentization, resualbilty, easy to maintain etc
    Are there any best practices how to use a central model DC in Webdynpro and access the data via interface mapping from other DCs?
    Please refer to [Here |http://www.williamcui.com/blog/resources/principles_patterns_and_practices_in_web_dynpro_for_java.swf] and go through [Articles|http://www.sdn.sap.com/irj/scn/articles-webdynpro-all?startindex=161] and [Blogs|http://www.sdn.sap.com/irj/scn/weblogs?blog=/weblogs/topic/43] and [Wikkies|http://wiki.sdn.sap.com/wiki/display/WDJava/WelcometoWebDynproJava%21]
    Hope it helps
    Regards
    Arun

  • Initial Context Security Issue

    Hi, I wonder if someone can help me with this one??
    The problem we are experiencing is that we have a remote client that connects
    to 2 completely independent Weblogic 6.1 instances, and it appears that, under
    certain circumstances, that the initial contexts actually become "confused", so
    as to create a situation both initial contexts have been initialized successfully,
    and after a while it appears that a connection to server B is attempted with the
    principal and credential values of server A, obviously causing account lockouts
    seeing as the user account does not exist on server B.
    I have established through testing that this condition can be avoided by either
    setting InitialContext.SECURITY_AUTHENTICATION = "none" and by not providing InitialContext.SECURITY_PRINCIPAL
    and InitialContext.SECURITY_CREDENTIALS values for both client connections, or
    by setting InitialContext.SECURITY_AUTHENTICATION = "simple", supplying valid
    InitialContext.SECURITY_PRINCIPAL and InitialContext.SECURITY_CREDENTIALS values
    for each server, and by reinitializing the InitialContext object before each and
    every remote lookup.
    We have decided to implement a InitialContext.SECURITY_AUTHENTICATION = "none"
    policy, allowing us not to reinitialize the InitialContext objects every single
    time. Obviously, this is not the preferred way!
    I would appreciate any light on this, as this is causing us huge headaches, not
    to mention the fact that one of the connections become completely unusable and
    therefore denies any service whatsoever from one of the servers
    Thanks in advance!

    Hi,
    This should probably have to be handled with Cisco directly or through the company that got you the license.
    To my understanding there is a possibility that the you would first install one license key and the other license might be upgrade from the previous license to the next limit of the licensed feature.
    I have had several occasions where I have been provided with the wrong license and have had to contact Cisco/supplier again to get the correct licenses for my device.
    While I was posting this reply I checked the Licensing document for the ASA models. It would seem to me that there is no 25 Security Content License for the ASAs. The closes are 20 SC license and 50 SC license
    Check this document:
    http://www.cisco.com/en/US/docs/security/asa/asa84/configuration/guide/intro_license.html#wp1230400
    - Jouni

  • External context mapping issue: cannot create nodes,no mapping defined yet

    Hello everybody,
    I'm trying to use the external context mapping as it is explained in http://help.sap.com/saphelp_nw04/helpdata/en/d7/e551cf896c3a49bb87bb4ce38c99c8/frameset.htm
    I did it in the past without any problem, but now, when i try to create a new node, i get the error "cannot create nodes,no mapping defined yet." This error appears as i try to create an element of the node (in the Internal Component), this way:
         IPruebaNodoElement elto = wdContext.nodePruebaNodo().createPruebaNodoElement();
         elto.setPrueba("Esto es una prueba");
         wdContext.nodePruebaNodo().addElement(elto);
    The mapping is correctly done in the "Embedder Component", and the attribute "isInputElement"=true in the Interface Controller of the "Internal Component".
    Any idea, any clue?
    Thank you very much in advance
    Isidro López

    Frankly speaking: I just read again, but very carefully, all the steps explained at
    http://help.sap.com/saphelp_nw04/helpdata/en/d7/e551cf896c3a49bb87bb4ce38c99c8/frameset.htm.
    Read it carefully and try to implement that example, that could be really helpful.

  • Set context privilages issue

    Hi
    I create a procedure but get this error.
    CREATE OR REPLACE package body SearcProduct_Pkg  is
    procedure SearchProVar(PCode in varchar2, Storeid in number,Usertype in varchar2) is
    begin
    dbms_session.set_context(
    namespace => 'paramsNew1', attribute => 'PCode', value => PCode);
    dbms_session.set_context(
    namespace => 'paramsNew1', attribute => 'Storeid', value => Storeid);
    dbms_session.set_context(
    namespace => 'paramsNew1', attribute => 'Usertype', value => Usertype);
    dbms_output.put_line('pcode is'||PCode);
    end SearchProVar;
    end SearcProduct_Pkg;
    when i execute it
    like
    SQL>  DECLARE
      2     PCODE VARCHAR2(200);
      3     STOREID NUMBER;
      4     USERTYPE VARCHAR2(200);
      5
      6   BEGIN
      7     PCODE := '655454';
      8     STOREID := 5030;
      9     USERTYPE := NULL;
    10
    11     UMESH.SEARCPRODUCT_PKG.SEARCHPROVAR ( PCODE, STOREID, USERTYPE );
    12   END;
    13   /
    DECLARE
    ERROR at line 1:
    ORA-01031: insufficient privileges
    ORA-06512: at "SYS.DBMS_SESSION", line 82
    ORA-06512: at "UMESH.SEARCPRODUCT_PKG", line 4
    ORA-06512: at line 11thanks.
    Message was edited by:
    umesh049

    No
    Sir
    can u tell me how to create it.
    i did some new work but it gives me same error.
    SQL> create context some_context using SEARCPRODUCT_PKG;
    Context created.
    SQL> create package some_package as
      2
      3      procedure set_value_in_context(some_value in varchar2);
      4
      5  end some_package;
      6  /
    Package created.
    SQL>
    SQL> create package body some_package as
      2
      3      procedure set_value_in_context(some_value in varchar2) is
      4      begin
      5          dbms_session.set_context('some_context', 'some_attribute', some_value);
      6      end set_value_in_context;
      7
      8  end some_package;
      9  /
    Package body created.
    SQL>
    SQL> exec some_package.set_value_in_context('foo');
    BEGIN some_package.set_value_in_context('foo'); END;
    ERROR at line 1:
    ORA-01031: insufficient privileges
    ORA-06512: at "SYS.DBMS_SESSION", line 82
    ORA-06512: at "UMESH.SOME_PACKAGE", line 5
    ORA-06512: at line 1thanks
    Message was edited by:
    umesh049

  • Twitter api and $("#Stage").css("margin","top") issue

    I put the twitter api from commonedge.org into my web project.
    But I couldn't get it to work until i removed this from my stage:
    $("#Stage").css("margin","top").
    Once it was removed, the twitter api worked fine... 
    when I put it back in, it stops working again.
    I'm puzzled why this is?
    Anyone have an idea?

    Ok,... so I figured out this was a line from hell... and I dont even know where I got it from
    (as I've been juggling learning edge's actions/codes and messing things up).
    Not only the twitter, but nothing else worked, symbols, actions, mouse and touch functions until I removed this line.
    Once I deleted $("#Stage").css("margin","top") from the stage... it's all happy again
    (until I put something else in that i have no clue what does)
    it would be interesting though, if anyone knows if there EVER would be a reason to have this line?
    And why it would/could kill all other functions?

  • Context.bind issues

    Hello,
    I am trying to bind an object to jndi context. Code follows
    props.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    props.put(Context.PROVIDER_URL,"t3://localhost:7001");
    // bind the datasource to the context ("oracle/thin")
    ctx = ctx.createSubcontext("oracle");
    ctx.bind("thin", ods);
    ods is of type oracle.jdbc.pool.OracleDataSource
    When i do this I get following error, any idea?
    javax.naming.NamingException [Root exception is java.rmi.RemoteException: oracle.jdbc.pool.OracleCon
    nectionCacheManager]
    last two lines in printstacktrace are:
    at weblogic.jndi.internal.WLEventContextImpl.copyObject(Ljava.lang.Object;)Ljava.lang.Object
    ;(WLEventContextImpl.java:368)
    at weblogic.jndi.internal.WLEventContextImpl.bind(Ljava.lang.String;Ljava.lang.Object;)V(WLEventContextImpl.java:278)
    ... 17 more
    Thanks,
    Shailesh

    Shailesh Ligade <[email protected]> writes:
    I don't think you are allowed to do this.
    andy
    Hello,
    I am trying to bind an object to jndi context. Code follows
    props.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    props.put(Context.PROVIDER_URL,"t3://localhost:7001");
    // bind the datasource to the context ("oracle/thin")
    ctx = ctx.createSubcontext("oracle");
    ctx.bind("thin", ods);
    ods is of type oracle.jdbc.pool.OracleDataSource
    When i do this I get following error, any idea?
    javax.naming.NamingException [Root exception is java.rmi.RemoteException: oracle.jdbc.pool.OracleCon
    nectionCacheManager]
    last two lines in printstacktrace are:
    at weblogic.jndi.internal.WLEventContextImpl.copyObject(Ljava.lang.Object;)Ljava.lang.Object
    ;(WLEventContextImpl.java:368)
    at weblogic.jndi.internal.WLEventContextImpl.bind(Ljava.lang.String;Ljava.lang.Object;)V(WLEventContextImpl.java:278)
    .. 17 more
    Thanks,
    Shailesh--

Maybe you are looking for

  • Adaptiva Software Distribution not working with Cisco APs in Local Mode

    A worldwide customer would like to use a new Software distribution system called Adaptiva to replace SCCM within Windows environment. As far as I understand, Adaptiva is designed to work like a snowball system. A single PC at a remote side can be "in

  • Can't configure USB2 on Satellite Pro A10

    Hi I just inherited an A10.. I replaced the HD and installed a fresh copy of XP Pro..sourced as many drivers as possible here. all is well except If I plug in a USB2 memory stick I get a message saying a high speed device is plugged in a non-high spe

  • ABAP Proxy Import Structure

    ok. Guys and gals I have limited ABAP expierence and have a simple question around loops. I have an ABAP proxy setup that receives an XML file and stores the contents in the INPUT method. The two structures under Item I am working with are I_HEADER a

  • Arabic text in flash cs5.5

    Hi everyone, I just wanted to confirm that rendering arabic text correctly (from right to left) has to be done in TLF, as I understand from the research I've done so far that it can not be done in classic mode. Also, is setting the direction to "from

  • PROTECT DOES NOT SHOW CONTACTS IN BACKED UP DATA; 8530

    Hello, when I attempted to restore my data from Blackberry Protect I do not see CONTACTS in the list of data that has been backed upand available to be restored. I checked the under OPTIONS in the app menu to verify that I had selected contacts and a