How do I run the namesctl command on linux? Where is it?

I'm new on oracle , and I'm working on gentoo I installed oracle10g standar version, but I want to register an Oracle Names Server Entry, as far I kow, I have to use the namesctl command, but I don't know where is it? so the Oracle Net8 Assistant doesn't either,
Thanks in advance

Accxording to the 'What's New in Oracle Net Services?" chapter of "Oracle® Database Net Services Administrator's Guide - 10g Release 2 (10.2)" manual at http://docs.oracle.com,
"De-support of Oracle Names"

Similar Messages

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

  • How can I run Runtime.exec command in Java To invoke several other javas?

    Dear Friends:
    I met a problem when I want to use a Java program to run other java processes by Runtime.exec command,
    How can I run Runtime.exec command in Java To invoke several other java processes??
    see code below,
    I want to use HelloHappyCall to call both HappyHoliday.java and HellowWorld.java,
    [1]. main program,
    package abc;
    import java.util.*;
    import java.io.*;
    class HelloHappyCall
         public static void main(String[] args){
              try
                   Runtime.getRuntime().exec("java  -version");
                   Runtime.getRuntime().exec("cmd /c java  HelloWorld "); // here start will create a new process..
                   System.out.println("Never mind abt the bach file execution...");
              catch(Exception ex)
                   System.out.println("Exception occured: " + ex);
    } [2]. sub 1 program
    package abc;
    import java.util.*;
    import java.io.*;
    class HelloWorld
         public static void main(String[] args){
         System.out.println("Hellow World");
    } [3]. Sub 2 program:
    package abc;
    import java.util.*;
    import java.io.*;
    class HappyHoliday
         public static void main(String[] args){
         System.out.println("Happy Holiday!!");
    } When I run, I got following:
    Never mind abt the bach file execution...
    I cannot see both Java version and Hellow World print, what is wrong??
    I use eclipse3.2
    Thanks a lot..

    sunnymanman wrote:
    Thanks,
    But How can I see both programs printout
    "Happy Holiday"
    and
    "Hello World"
    ??First of all, you're not even calling the Happy Holiday one. If you want it to do something, you have to invoke it.
    And by the way, in your comments, you mention that in one case, a new process is created. Actually, new processes are created each time you call Runtime.exec.
    Anyway, if you want the output from the processes, you read it using getInputStream from the Process class. In fact, you really should read that stream anyway (read that URL I sent you to find out why).
    If you want to print that output to the screen, then do so as you'd print anything to the screen.
    in notepad HelloWorld.java, I can see it is opened,
    but in Java, not.I have no idea what you're saying here. It's not relevant whether a source code file is opened in Notepad, when running a program.

  • Help:How can I run the J2EE Client Application? Thanks

    Help:How can I run the J2EE Client Application that will access the remote J2EE1.4 application server which runs on another host computer?
    I have developped a stateles senterprise java bean name converter and deloyed it in the j2ee1.4 application server on the host machine A. The converterbean provides the remote home interface and remote interface. At the same time I have developped the j2ee application client named convertappclient. When I access the conveter bean at host computer A through the script 'appclient.bat' as 'appclient -client convertappclient.jar', the client can access the bean sucessfully. Now I want to access the bean through the script 'appclient.bat' at host computer B,what files should I copy from host computer A to host computer B;and what the command line should be like? Thanks!
    The following are the code of the enterprise java bean and it's home interface .
    The client code is also provided.
    The enterprise java bean:
    package converter;
    import java.rmi.RemoteException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import java.math.*;
    public class ConverterBean implements SessionBean {
    BigDecimal yenRate = new BigDecimal("121.6000");
    BigDecimal euroRate = new BigDecimal("0.0077");
    public ConverterBean() {
    public BigDecimal dollarToYen(BigDecimal dollars) {
    BigDecimal result = dollars.multiply(yenRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
    public BigDecimal yenToEuro(BigDecimal yen) {
    BigDecimal result = yen.multiply(euroRate);
    return result.setScale(2, BigDecimal.ROUND_UP);
    public void ejbCreate() {
    public void ejbRemove() {
    public void ejbActivate() {
    public void ejbPassivate() {
    public void setSessionContext(SessionContext sc) {
    The bean's remote home interface :
    package converter;
    import java.rmi.RemoteException;
    import javax.ejb.CreateException;
    import javax.ejb.EJBHome;
    public interface ConverterHome extends EJBHome {
    Converter create() throws RemoteException, CreateException;
    The bean's remote interface:
    package converter;
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    import java.math.*;
    public interface Converter extends EJBObject {
    public BigDecimal dollarToYen(BigDecimal dollars) throws RemoteException;
    public BigDecimal yenToEuro(BigDecimal yen) throws RemoteException;
    The j2ee application client:
    import converter.Converter;
    import converter.ConverterHome;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.rmi.PortableRemoteObject;
    import java.math.BigDecimal;
    public class ConverterClient {
    public static void main(String[] args) {
    try {
    Context initial = new InitialContext();
    System.setProperty("java.naming.factory.initial","org.jnp.interfaces.NamingContextFactory");
                   System.setProperty("java.naming.provider.url","jnp://10.144.97.250:3700");
    Context myEnv = (Context) initial.lookup("java:comp/env");
    Object objref = myEnv.lookup("ejb/SimpleConverter");
    ConverterHome home =
    (ConverterHome) PortableRemoteObject.narrow(objref,
    ConverterHome.class);
    Converter currencyConverter = home.create();
    BigDecimal param = new BigDecimal("100.00");
    BigDecimal amount = currencyConverter.dollarToYen(param);
    System.out.println(amount);
    amount = currencyConverter.yenToEuro(param);
    System.out.println(amount);
    System.exit(0);
    } catch (Exception ex) {
    System.err.println("Caught an unexpected exception!");
    ex.printStackTrace();
    }

    Surprisingly I find an upsurge in the number of posts with this same problem. I recently found a post which gave a nice link for this. Follow the steps and it should help:
    http://docs.sun.com/source/819-0079/dgacc.html#wp1022105

  • Running the curl command on a WSA

    Has anybody tried running the curl command on a WSA? - we're running Async OS 7.1 on our S-660's and unable to run curl on it.
    Thanks.
    Greg                  

    HI Andy,
    Get-MailboxDatabase -Status | Sort-Object DatabaseSize -Descending | Format-Table Name, DatabaseSize, AvailableNewMailboxSpace
    THis will give you the following info:
    Where availablenewmailboxspace (last collum) is white space.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Off2work
    Thats not the true amount:
    Since 2010:
    http://blogs.technet.com/b/exchange/archive/2011/12/14/database-maintenance-in-exchange-2010.aspx
    How can I check whitepace in a database?
    You will need to dismount the database and use ESEUTIL /MS to check the available whitespace in a database. For an example, see
    http://technet.microsoft.com/en-us/library/aa996139(v=EXCHG.65).aspx (note that you have to multiply the number of pages by 32K).
    Note that there is a status property available on databases within Exchange 2010, but it should not be used to determine the amount of total whitespace available within the database:
    Get-MailboxDatabase MDB1 -Status | FL AvailableNewMailboxSpace
    AvailableNewMailboxSpace tells you is how much space is available in the root tree of the database. It does not factor in the free pages within mailbox tables, index tables, etc.  It is not representative of the white space within the database
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • How SAP standard run the interest calculation in AR module

    Dear expert,
    would like to seek for your advise, how SAP standard run the interest calculation in AR module ?
    Also advise,does the interest calculation generate the interest base on the dunning run?What are relationship between interest calculation generate ?
    What are the T-code for running the interest so that able to generate the interest posting according to baseline due date?
    On top of that, does SAP have standard AR interest calculation report and what are the T-code ?
    Between, do you have any ideal the Interest Indicator ZB stand and reminder date it is the last reminder date,waive,KIV and charge Interest and also noted item amount mean for in the AR Interest Calculation report?
    Please help.
    Regards,
    Karen

    Hi,
    Thank you for the promtp reply.
    I still have query would like to seek for your advise.
    1.Does the interest calculation generate the interest base on the dunning run?For example, the interest is only can be post/generated when there is dunning run and vise versa.
    2.What are relationship between interest calculation generate ?Does interest generation depand on the dunning run?
    On top of that, does SAP have standard AR interest calculation report and what are the T-code ?
    3.Between, do you have any ideal the reminder date it is the last reminder date,waive,KIV and charge Interest and also noted item amount mean for in the AR Interest Calculation report?
    4.For posting use F.2B and that will calculate interest on open items of customers. Does this posting is post as noted item or posting document? Beside, do we every day need to run this posting  F.2B in order to update the AR interest calculation report and post the interest for the overdue invoice?
    5.Do you have any reference link/document /SAP notes on calculate interest on arres F.2B?
    a)How the program calculate those overdue invoice for example: does sap calculate the interest  base on interest + due amount until the customer made the payment?
    b) If customer made payment on the due amount and not the interest and vise versa? How theF.2B program logic work on the calculation ?
    Please help.
    Regards,
    KH

  • How do I run a unix command to quit ARD if it is running on a remote server I am trying to access?

    how do I run a unix command to quit ARD if it is running on a remote server I am trying to access?

    killall "Remote Desktop"
    Regards.

  • I recently purchased an HP officejet 6600 and whenever I put in the disk to install the printer nothing pops up. How do I run the disk on my 2011 MacBook Pro?

    I recently purchased an HP Officejet 6600 and whenever I put the disk in to install the software nothing happens. How can I run the program to install it and get started using my printer???

    You should be able to go to HP Web site and download the installer. It sounds like you got a bad CD.

  • How do I run the SW in single phase mode?

    How do I run the SW in single phase mode?

    All you need to do is to modify the FPGA example a little bit, as the below illustrations.

  • I have downloaded elements to my mac and it has installed. how do I run the program?

    I have downloaded elements to my mac and it has installed. How do I run the program.

    Hi David,
    You can simply click on the application to launch it from the 'Applications' folder.

  • Downloaded the pdf converter to word....how do I run the program?

    downloaded the pdf converter to word....how do I run the program?

    Hi seang449,
    Please let me know which software you purchased and for what OS? Is it Adobe Acrobat or Create PDF service?
    After downloading the software you need to run the .exe file (WIN) / .dmg file (MAC) to install the application.

  • How do i run the disk utility to repair permissions:confused;

    how do i run the disk utility to repair permissions
    i think i hav the same problem as you all iv been
    restarting and deleting and renstaling but nothing seems to work
    the only thing i havent don is this repair prmission
    thing can someone type some instuctions on how or lead me where to
    go

    are you using mac OS10.2 or later?
    if so, this is what I did to solve this most frustrating
    problem. Go to Applications/Utilities/Disk Utilities
    In the Disk Utility window, click on your hard drive, make
    sure you're in the First Aid tab, then click on Repair Disk
    Permissions.
    Once the permissions were repaired, I took the advice of
    another user here on the forum and reinstalled Flash Player 6, as
    it was the one that was working before I tried to upgrade and it
    screwed everything up.
    Hope this helps

  • Error Running the following command - "ipsadmin change component iwtUserInfoProvider iwtUserInfoProvider.xml". Please help?

    I am trying the run the ipsadmin command as follows:
    "ipsadmin change component iwtUserInfoProvider iwtUserInfoProvider.xml"
    And I am getting the following error:
    "Profile change failed. More info: com.iplanet.portalserver.ipsadmin.Component"
    I just added some more attributes to the xml file
    that look like these :
    <!- BEGIN NEW ATTRIBUTES -->
    <iwt:Att name="iwtUserInfoProvider-EntryDN"
         desc="Entry DN"
         type="string"
    idx="a204"
         userConfigurable="TRUE">
         <Val>New</Val>
         <Rperm>ADMIN</Rperm><Rperm>OWNER</Rperm>
         <Wperm>ADMIN</Wperm><Wperm>OWNER</Wperm>
    </iwt:Att>
    <!- END NEW ATTRIBUTES -->
    Question:
    1. What did I do wrong?
    2. Is there a log file that stores the ipsadmin
    errors?
    ./ipsadmin -chkxml iwtUserInfoProvider.xml
    returned "Operation completed successfully".
    So I know there is nothing wrong with the xml
    file.
    Any help in fixing this problem is gratefully appreciated.
    Thanks
    Sahadev

    Hi There,
    The ipsadmin tool does not seem to be able to dynamically add any new attributes to a component. the best would be to do a "ipsadmin delete component iwtUserInfoProver" and then "ipsadmin -import iwtUserInfoProvider.xml" this should "update" the component with the new attribute.
    HTH.

  • How do you run the optimizer with fixed orders?

    Hi experts,
    If the planner wishes to prioritize orders based on the customer demand, orders should be set as fixed.
    How do I run the optimizer when using fixed orders??
    Regards,
    Analía Nahmías

    Hi Analia,
    Will you please elaborate more ?
    It looks you are running SNP optimizer and want to use also make use of order prioirty functionlity.
    You may be knowing already the contents below :
    We know that Demand Prioritization functionlity is handled differently in SNP CTM and in SNP Optimizer.
    In SNP CTM, Demand can be sorted by different sort criteria.
    Whereas in SNP-Optimizer, Demand can be aggregated for three demand classes or by customer locations.
    We set prioirties on the SNP Optimizer profile Maintenance for demand classes ,
    1. Sales orders
    2. The Corrected demand forecast
    3.The demand forecast
    Apart from this, we can set flag for priority of location products
    The optimizer considers the priority of location products in combination with the priority of priority classes of the demand. To simplify this combination, we  must group the priorities of the location products into three classes.
    Within every priority class as above, the APO system uses all available cost information to determine the final solution
    With the above way, planner does not have to fix an order.
    regards
    Datta

  • How can i run the example programme without hardware

    Hi,
         We are using NI-9233 for our Project. We would like to run the example programme, the NI-9233 getting started(host).vi ... I would like to ask that how can i run the Programme without Hardware.& How shall i get the input signal (simulating signal)?because we would like to test it while we are waiting for the hardware to be delivered . 
    thanks
    Best regards

    As Mike indicated , " you can use MAX to simulate some (not all) DAQmx devices. There's a NI-USB-9233 device that you can probably use. Open MAX, then expand "My System", the expand "Devices and Interfaces", then right-click on "NI-DAQmx Devices" and select "Create New NI-DAQmx Device -> NI-DAQmx Simulated Device". Select the device from the list. See the online help for MAX for further help.
    If you don't see "NI-DAQmx Devices" in MAX you need to install NI-DAQmx. You can download it from NI here. "
    hi,
         the link you gave me to download is "NI-DAQmx Devices" ... There is no software to download for Labview 8.2.1. So should i use 8.1 or 8.3 instead of 8.2.1 ? If not, can you tell me the CD no. that includes the "NI-DAQmx Devices" folder of Labview 8.2.1 version? Because we can get the cd from our school's component store. Thank you so much.
    Best Regards,
    Su

Maybe you are looking for

  • Is there a way to check if my music(s) can actually play?

    Hello everyone. I'm planning to buy an iPod Shuffle. This question will decide if I'll buy the iPod Shuffle or wait for iPod nano. My firend who own the iPod shuffle said there's a case when certain .mp3, which is a supported file type, just won't pl

  • How do you get up live chat. Need to contact BT r...

    OK so I got my latest bill and BT wanted to up my direct debit charges to £56.00 per month!  I'm only on Option 1 broadband and obviously a call package that is WAY too expensive.  There is no way I can afford that so - somehow - through this complic

  • Snapping is stuck "ON" in FCPX

    Hi! Although I have snapping disabled, I can't trim my clips to a specific timing. The snap function seems to be active even though the "snap tool" isn't highlighted. Every time I try and trim a clip, it snaps to the grid. (Hopefully I'm explaining t

  • Solaris SMF configuration for Oracle CSS service

    Below is the code to create oracle CSS service with solaris SMF, it will create smf service with instance name as "default" where as i need to change it to "css" svc:/application/oracle/css:default change service instance name to svc:/application/ora

  • Part appearing to be ordered in me21n

    Hi Gurus, can anybody plz help me with this? Part number xxxx keeps showing up for me to order thru MRP but there is no opens sales order that I can find.  This is a third party shipment. Can you please explain to me why this keeps appearing on my Cr