How to delete datasource registration from the administration tool?

Hello,
How could I delete datasource registration from the administration tool?
Thank you
Krisztian

Hi Krisztian,
You can not delete the datasource from the admin tool, but can do so
from the iPlanet registry -
- invoke kregedit
- Go to Software\iPlanet, Application Server, 6.0, DataSource
- Select the datasource you want to delete, Choose Edit-Delete from the menu
to delete the datasource.
Regards,
Jitin Sood.
"Krisztian Maraczi" <[email protected]> wrote in message
news:9kdhb2$[email protected]..
Hello,
How could I delete datasource registration from the administration tool?
Thank you
Krisztian

Similar Messages

  • How to delete a column from the table control in module pool?

    Hi,
      can any one please tell How to delete a column from the table control in module pool?
    thanks in advance
    warm regards
    HareeshKumar N

    hi hareesh,
    I think it is better to hide it.
    How to hide: You can check this link
    Dynamic Hide column in table control

  • How to delete a list from the reading list

    How to delete a list from the reading list

    I assume that you mean in Safari, in which case just swipe across it's name in reading list and you should get a Delete button appear on it.

  • How can delete my account from the adobe cloud

    how can delete my account from the adobe cloud
    I would like to unregister myself from the service

    Hi mehranr34543413,
    Please Contact Customer Care. A Customer Care agent can help you with that request.
    Best,
    Sara

  • How to delete SMS text from the hard drive of a IPhone 3gs

    How do I delete SMS text from the hard drive of a iPhone 3GS

    If you want to delete the messages from within the text app, swipe over the name or number of the sender and hit delete.
    If you are afraid that someone will be able to restore them by ckecking your HD, you will have to set up the phone "as new device" or choose "erase all content and Settings" in Settings/General/Reset. But this willerase the whole phone, not only your text messages.
    How to set up your iPhone or iPod touch as a new device
    Message was edited by: Ingo2711

  • How to delete a Document from the Wiki?

    This seems like I just must be missing something - but a client asked and I'm stumped. So here I have created a Document on my Wiki server and have not figured out how to delete it bafter trying for way too long - here I am.
    Running Mavericks ---
    https://macmini.macmind-ny.com/wiki/pages/00s9P2C/Test_Page.html
    How do I delete this Page completely?
    Thanks so much...
    Michael

    Yes that is my understanding - though as you can see from the screen shot - there is no option to delete the page from the action gear popup. The real issue is that i have a client that has the issue as well - so it is not specific to this installation.
    Here's today's screen shot of a new page created by myself in My Documents - no delete option. How do I fix this?

  • How to delete a value from the nested structure?

    Hi Friends!
    I have a nested structure such as
    multimap<int, map<int ,set<int>>> FinalMul
    It contains sample values
    1=>4--->1
    6=>4--->1
    6=>9--->4
    11=>4--->1
    11=>5--->1   4
    11=>9--->4
    12=>2--->1   4   5
    I want to delete the value 4 from the second and third column,
    So, it looks like
    1=>
    6=>
    6=>9--->
    11=>
    11=>5--->1 
    11=>9--->
    12=>2--->1  5
    after deleting 4, if I have a key(first) (1, 6, 11) and secondkey (second)(6=>9--->,  11=>9--->) with no values, then delete them also.
    Finally it looks like
    11=>5--->1 
    12=>2--->1  5
    Can anyone help me how to solve it?
    I just tried something;
    set<int> tempV;
    map<int, set<int>> tempM;
    multimap<int, map<int, set<int>>> FinalMul
    tempV.insert(1);
    tempM.insert(make_pair(4, tempV));
    FinalMul.insert(make_pair(1, tempM));
    tempV.clear();
    tempM.clear();
    tempV.insert(1);
    tempM.insert(make_pair(4, tempV));
    FinalMul.insert(make_pair(6, tempM));
    tempV.clear();
    tempM.clear();
    tempV.insert(4);
    tempM.insert(make_pair(9, tempV));
    FinalMul.insert(make_pair(6, tempM));
    tempV.clear();
    tempM.clear();
    tempV.insert(1);
    tempM.insert(make_pair(4, tempV));
    FinalMul.insert(make_pair(11, tempM));
    tempV.clear();
    tempM.clear();
    tempV.insert(1); tempV.insert(4);
    tempM.insert(make_pair(5, tempV));
    FinalMul.insert(make_pair(11, tempM));
    tempV.clear();
    tempM.clear();
    tempV.insert(4);
    tempM.insert(make_pair(9, tempV));
    FinalMul.insert(make_pair(11, tempM));
    tempV.clear();
    tempM.clear();
    tempV.insert(1); tempV.insert(4); tempV.insert(5);
    tempM.insert(make_pair(2, tempV));
    FinalMul.insert(make_pair(12, tempM));

    Check this attempt:
    typedef
    set<int>
    SET;
    typedef
    map<int,
    SET>
    MAP;
    typedef
    multimap<int,
    MAP>
    MULTIMAP;
    // remove '4' from second column
    for_each( FinalMul.begin(), FinalMul.end(),
    []( MULTIMAP::value_type
    & mmv )
    MAP & m =
    mmv.second;
    m.erase( 4 );
    // remove '4' from third column and remove empty entries
    for_each( FinalMul.begin(), FinalMul.end(),
    []( MULTIMAP::value_type
    & mmv )
    MAP & m =
    mmv.second;
    for(
    auto i = m.begin(); i != m.end(); )
    SET & s = i->second;
    s.erase( 4 );
    if( s.empty() )
    i = m.erase( i );
    else
    ++i;
    // remove empty entries
    for(
    auto i = FinalMul.begin(); i != FinalMul.end(); )
    MAP & m = i->second;
    if( m.empty() )
    i = FinalMul.erase( i );
    else
    ++i;

  • How to delete hidden buttons from the toolbar

    I have too many hidden buttons in my toolbar.How do I remove some?I cannot drag them back into Customize box because when I open Customize,I cannot access the hidden buttons any more because their little symbol '''>>''' disappears from the toolbar as soon as I open Customize box..I want to get rid off the following ten hidden toolbar buttons:"how>do>I>show>a>
    printer>icon>in>the>toolbar".Thanks.I have Windows 7 .I am a beginner.

    Do you mean Bookmarks or Bookmarks folders on the Bookmarks toolbar?
    You can remove bookmarks in the Bookmarks Manager or you can right-click a bookmark on the toolbar and choose Delete.
    See also http://kb.mozillazine.org/Sorting_and_rearranging_bookmarks_-_Firefox

  • I need the Step by step "dummies" version of how to delete outdated sites from the navigation toolbar.

    My 12 year old daughter would like to remove a few websites from our navigation tool bar and we can't figure out how to delete. All the questions answered on this site so far require a PHD in IT. Can someone please provide us a step by step version on how to remove a few simple sites? Thanks!

    Hello Amy.
    I think we need to clear things out a bit in terms to terminology: the navigation toolbar is the toolbar where, by default, you have the back/forth buttons, the location bar and so on. What you're probably talking about is the bookmarks toolbar, where, by default, some of your bookmarks (those that are stored there) appear. Rightclicking them and selecting ''Delete'' is probably all you need to do?

  • How to delete multiple variables from the variables list

    Hello,
    Iam using FrameMaker 9.0. Is there a way I can select multiple variables from the book and delete them together.
    Thanks,
    CP.

    NO in FM9. Take SQUIDDS TOOLBOX the free tool: 'Formats'
    'Formats' is a very helpful tool for 'deleting' paragraph formats, character formats, cross reference formats, table formats, color definitions and variables.
    You can delete unused one or all formats of selected. For paragraph and character you can also decide to 'add new one in catalog'.
    -Georg

  • How to delete specific photos from the photo stream that Apple TV is using

    I had previously used Aperture with Photostream on my Mac. The Apple TV apparently downloaded those photos. I stopped using Photostream and Aperture, but the photos are still there. The directions posted on this forum say
    If you are using Apple TV Software Update 6.0 or later, choose Photos from the main menu.
    If you are using Apple TV Software Update 5.1, choose Photo Stream from the main menu.
    If you are using Apple TV Software Update 5.0, choose Internet > Photo Stream from the main menu.
    If asked, sign in to your iCloud account.
    With your remote control, navigate to a photo that you want to delete. Press and hold the Select button, then choose Delete Photo.
    There is no Photos on the main menu.
    I want to individually delete some photos. Any ideas/

    Yes, there is an icon called iCloud photos on the main menu. You can go into your photo stream and select the photo(s) you wish to delete.

  • How to delete an app from the iPhone 5s registry?

    I have an app which was from a third party vendor. I have deleted the app from the phone. However, when I reset the phone the icon reappears. When I press the icon it does nothing. I can remove it by deleting the icon. I want to permanently delete the icon. A friend of mine said I may have to go into the registry of the phone to do that. What is the best way to accomplish getting rid of the icon permanently? 

    tjd04 wrote:
    Thanks for the suggestion. Please allow me to provide a little more detail...
    This started with an iPhone 4s and jail broken. Back up was performed to transfer info to new iphone 5s and this came along with it... I had same problem on old iphone. I am looking for solution to remove it permanently.
    Any other thoughts or ideas would be appreciated.
    Right there is your problem.  Per the term of use of this forum you can't get any help for a jailbroken phone.
    YOu will have to look elsewhere.

  • How to delete a list from the reminders in iOS 7?

    i am trying to remove/delete a list in the reminders app. The list does not show up in icloud.

    if the list in not sinced to icloud it will be sinced to on of your other emails you use for back up. find that email and go in to settings-mail,calender,contacts-choose the email you are using as the back up and turn off the backup for the reminders.

  • How to delete all books from the iTunes library which no longer exist on my iPod?

    I was looking through my iTunes libraries today, and I realised that my "books" library was absolutely chock full of old books that I had previously downloaded and deleted years ago, as well as all the books I still currently own/use.
    How can I delete (within iTunes) all of the books that are no longer on my iPod, without going through them all one by one?
    I know for apps you can just delete them all in iTunes and then choose "import purchases" to perfectly replicate apps between the iPod and iTunes, but I don't think you can do that with books.

    After cleaning the library you can connect the device and use the transfer purchases option to copy over those still on the iPod.
    I should add that it is probably a good idea to use Edit > Preferences > Devices and tick Prevent iPods, iPhones, and iPads from syncing automatically.
    tt2

  • How to delete other files(yellow color code) from the hard drive, how to delete other files from the hard drive

    how can i delete the yellow color code items from my hard drive? What are these other files anyway? I wanna save some memory space from my storage.

    Macbook Pro community is here
    Following thread could solve your question.
    https://discussions.apple.com/message/19030300#19030300

Maybe you are looking for

  • Windows 7 too slow on T61

    Hello, I decided to ask for some help after having tried several ways of getting my T61 configured properly with windows 7 without success. Previous history: My T61 was bought with a XP pro downgrade from vista, and it worked extremally well for two

  • How to mark Autoplay in Compressor?

    I need to set the automatically play flag on a bunch of Quicktime videos and would LOVE to do this as I run them through Compressor, but I can't seem to find where to set it. I can't set it in the incredibly horrible and lacking any useful feature Qu

  • POST data without navigating to page

    Hi, I need to POST some data collected in a form to an ASP page hosted by another person. How do I do this without navigating to that ASP page, so I can remain within my own website ? Thanks for the help, M

  • Multi Org Reports

    I am developing reports in Developer 2000, Reports 2.5 that are implemented in Oracle Financials. We have moved to a Multi Org environment, as a result I can no longer see any data in reports that use views. What steps need to be taken to correct thi

  • COMPUTER CRASH LOST MY-ITUNES HOW DO I GET IT ON MY NEW COMPUTER??

    my computer with my i-tumes crashed and i got a new computer and i cant my i-pod to be recognized as the main user. it shows up as a "device" So i cant burn disks or play my music unless my i-pod is hooked up