How to shutdown db throgh dos prompt

Dear All
Please tell me complete process of how to shutdown database oracle9i through dos prompt
With Regards
Husnain

Microsoft Windows 2000 [Version 5.00.2195]
(C) Copyright 1985-2000 Microsoft Corp.
C:\Documents and Settings\raja.baskar>sqlplus
SQL*Plus: Release 9.2.0.8.0 - Production on Wed Jun 25 15:10:28 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Enter user-name: sys@test as sysdba
Enter password:
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.8.0 - Production
SQL> shut immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL>
Regards
RajaBaskar

Similar Messages

  • How to run Java on Dos prompt

    HI~~
    I am new to Java and really need help.
    I have a program which requires a file as an argument and the file name should be provided as a command line argument.
    In dos prompt, how do I tell computer which file is the input file for the program to take as an argument?
    Thank you very much for helping me out.

    suppose your file in java is Hello.java
    Compile it(javac Hello.java) . u get Hello.class
    Now suppose your input file is file.txt
    So at the command prompt
    type
    c:\>java Hello file.txt
    This will cause the args[0] to be initialised to file.txt
    How to use it , u have to figure out.
    Regards
    Manoj.

  • How can i set the dos can compile and excute the jar file?please help?

    How can i set the dos prompt can compile my .java file and execute my jar file.

    Go to where you downloaded your Java SDK. Look around for a button labled "Installation." Click the button. Download the installation instructions. Read them. Then read them again.

  • How do you get to the DOS prompt so that you can type in the info to help get into itunes store???  One post said search cmd, right click, run as administrator but where is the search cmd??

    Have been struggling for days trying to get into the itunes store.  Have contacted support with no help.  I have been reading how some have typed something into a DOS prompt and have resolved their issues.  One stated to "search cmd, right click, and run as admininstrator" but where is this?  There was also a post about typing something into the DOS prompt....how do I get to this?  Can someone please help??? SOOOOO FRUSTRATING.  Thanks much...Carrie (Mike's wife:))

    One stated to "search cmd, right click, and run as admininstrator" but where is this?
    In the search field in your Vista start menu, type cmd
    Next, right-click on the cmd that comes up and select "Run as administrator".

  • How to Compile this prog. i DOS prompt.

    Hey Friends,
    I don't know how to compile this prog. on DOS prompt, kindly tell.
    // My Java Prog.
    package package1;
    import java.awt.Graphics;
    import java.lang.Number;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.awt.Color;
    import java.awt.event.*;
    import java.applet.Applet;
    import java.io.*;
    import java.util.*;
    import java.Applet.*;
    /* <applet code="abc" width=600 height=1000 > </applet> */
    public class abc extends Applet implements Runnable {
    Hashtable dataFile = new Hashtable();
    StringBuffer sb;
    String Date,Time,Freq;
    double KarDmd,KarDwl,KarShr,KarGen;
    boolean flag = true ;
    Thread myThread = null;
    * init
    public void init(){
    setBackground(Color.gray);
    * start
    public void start() {
    System.out.println("Start called"+this.getDocumentBase());
    System.out.println("Start called"+this.getCodeBase());
    myThread = new Thread(this );
    myThread.start();
    }//close thread
    public void run(){
    while (flag){
    try {
    URL url = new URL(this.getCodeBase(),"servlet/FileReadingServlet");
    HttpMessage message = new HttpMessage(url);
    InputStream in = message.sendGetMesage(null);
    ObjectInputStream ois = new ObjectInputStream(in);
    //String readStream = (String)ois.readObject();
    dataFile = (Hashtable)ois.readObject();
    //sb = new StringBuffer(readStream);
    System.out.println("Applet Read :"+dataFile);
    this.repaint();
    try {
    Thread.sleep(10000);
    }catch (InterruptedException io){}
    }catch (Exception e){
    e.printStackTrace();
    flag = false;
    }//while
    }//close run
    public void paint (Graphics g){
    g.clearRect(0,0,700,450);
    g.drawString("Date :", 500,16);
    g.drawString((String)dataFile.get("DATE"), 550,16);
    g.drawString("TIME:",500,32);
    g.drawString((String)dataFile.get("TIME"), 550,32);
    g.drawString("FREQ :",500,48);
    g.drawString((String)dataFile.get("FREQ"), 550,48);
    // "KARNATAKA"
    g.setColor(Color.cyan);
    g.drawRect(10,50,150,100);
    g.fillRect(10,50,150,100);
    g.setColor(Color.black);
    g.drawString("KARNATAKA",25,65);
    g.drawLine(160,100,250,100);
    g.drawString("GENERATION ",12,87);
    String KAR_GEN = this.getGeneration((String)dataFile.get("KAR_DMD"),
    (String)dataFile.get("KAR_DRL"));
    g.drawString(KAR_GEN ,120,87);
    g.drawString("SCHEDULE",12,107);
    g.drawString((String)dataFile.get("KAR_SHD"),120,107);
    g.drawString("DRAWL ",12,127);
    g.drawString((String)dataFile.get("KAR_DRL"),120,127);
    g.drawString("DEMAND ",12,147);
    g.drawString((String)dataFile.get("KAR_DMD"),120,147);
    g.drawLine(92,70,92,150);
    //"KAPS"
    g.setColor(Color.green);
    g.drawRect(12,5,85,30);
    g.fillRect(12,5,85,30);
    g.setColor(Color.black);
    g.drawString("KAPS",14,20);
    g.drawString("DEMAND:",14,35);
    g.drawString((String)dataFile.get("KAPS_DMD"),70,35);
    //"GOA"
    g.setColor(Color.magenta);
    g.drawRect(100,5,85,30);
    g.fillRect(100,5,85,30);
    g.setColor(Color.black);
    g.drawString("GOA",104,20);
    g.drawString("DEMAND:", 104,35);
    g.drawString((String)dataFile.get("GOA_DMD"),160,35);
    // "ANDHRA PRADESH"
    g.setColor(Color.orange);
    g.drawRect(250,50,150,100);
    g.fillRect(250,50,150,100);
    g.setColor(Color.black);
    g.drawLine(32,37,32,50);
    g.drawLine(110,35,110,50);
    g.drawString("ANDHRA PRADESH",268,65);
    g.drawString("GENERATION ",252,87);
    String AP_GEN = this.getGeneration((String)dataFile.get("AP_DMD"),
    (String)dataFile.get("AP_DRL"));
    g.drawString(AP_GEN,350,87);
    g.drawString("SCHEDULE",252,107);
    g.drawString((String)dataFile.get("AP_SHD"),350,107);
    g.drawString("DRAWL",252,127);
    g.drawString((String)dataFile.get("AP_DRL"),350,127);
    g.drawString("DEMAND",252,147);
    g.drawString((String)dataFile.get("AP_DMD"),350,147);
    g.drawLine(332,70,332,150);
    // "NTPC"
    g.setColor(Color.pink);
    g.drawRect(250,3,85,30);
    g.fillRect(250,3,85,30);
    g.setColor(Color.black);
    g.drawString("NTPC",252,14);
    g.drawString("DEMAND:",252,30);
    g.drawString((String)dataFile.get("NTPC_DMD"),305,30);
    //"HVDC"
    g.setColor(Color.green);
    g.drawRect(350,3,85,30);
    g.fillRect(350,3,85,30);
    g.setColor(Color.black);
    g.drawString("HVDC",352,14);
    g.drawString("DEMAND:",352,30);
    g.drawString((String)dataFile.get("HVDC_DMD"),405,30);
    //"GAUZACK"
    g.setColor(Color.magenta);
    g.drawRect(450,80,90,30);
    g.fillRect(450,80,90,30);
    g.setColor(Color.black);
    g.drawString("GAZ",452,90);
    g.drawString("DEMAND:",452,105);
    g.drawString((String)dataFile.get("GAZ_DMD"),510,105);
    g.drawLine(160,250,250,250);
    g.drawLine(85,150,85,200);
    g.drawLine(160,125,250,225);
    g.drawLine(270,300,270,330);
    g.drawLine(370,300,370,330);
    g.drawLine(400,230,450,230);
    g.drawLine(400,100,450,100);
    g.drawLine(270,33,270,50);
    g.drawLine(370,33,370,50);
    //"KERALA"
    g.setColor(Color.green);
    g.drawRect(10,200,150,100);
    g.fillRect(10,200,150,100);
    g.setColor(Color.black);
    g.drawString("KERALA",62,215);
    g.drawString("GENERATION ",12,237);
    String KER_GEN = this.getGeneration((String)dataFile.get("KER_DMD"),
    (String)dataFile.get("KER_DRL"));
    g.drawString((String)dataFile.get("KER_GEN"),120,237);
    g.drawString("SCHEDULE ",12,257);
    g.drawString((String)dataFile.get("KER_SHD"),120,257);
    g.drawString("DRAWL",12,277);
    g.drawString((String)dataFile.get("KER_DRL"),120,277);
    g.drawString("DEMAND",12,297);
    g.drawString((String)dataFile.get("KER_DMD"),120,297);
    //"TAMIL NADU"
    g.drawLine(92,220,92,300);
    g.drawLine(325,150,325,200);
    g.setColor(Color.yellow);
    g.drawRect(250,200,150,100);
    g.fillRect(250,200,150,100);
    g.setColor(Color.black);
    g.drawString("TAMIL NADU",272,215);
    g.drawString("GENERATION ",252,237);
    String TN_GEN = this.getGeneration((String)dataFile.get("TN_DMD"),
    (String)dataFile.get("TN_DRL"));
    g.drawString((String)dataFile.get("TN_GEN"),350,237);
    g.drawString("SCHEDULE ",252,257);
    g.drawString((String)dataFile.get("TN_SHD"),350,257);
    g.drawString("DRAWL ",252,277);
    g.drawString((String)dataFile.get("TN_DRL"),350,277);
    g.drawString("DEMAND:",252,297);
    g.drawString((String)dataFile.get("TN_DMD"),350,297);
    g.drawLine(332,220,332,300);
    // "PONDYCHERRY"
    g.setColor(Color.magenta);
    g.drawRect(450,220,90,30);
    g.fillRect(450,220,90,30);
    g.setColor(Color.black);
    g.drawString("PDY",452,230);
    g.drawString("DEMAND:",452,245);
    g.drawString((String)dataFile.get("PDY_DMD"),510,245);
    //"NLY"
    g.setColor(Color.green);
    g.drawRect(250,330,90,30);
    g.fillRect(250,330,90,30);
    g.setColor(Color.black);
    g.drawString("NLY",252,340);
    g.drawString("DEMAND:",252,355);
    g.drawString((String)dataFile.get("NLY_DMD"),310,355);
    //"MAPS"
    g.setColor(Color.pink);
    g.drawRect(350,330,90,30);
    g.fillRect(350,330,90,30);
    g.setColor(Color.black);
    g.drawString("MAPS",352,340);
    g.drawString("DEMAND:",352,355);
    g.drawString((String)dataFile.get("MAPS_DMD"),410,355);
    g.setColor(Color.black);
    //g.drawLine(440,306,620,306);
    //g.drawLine(440,332,620,332);
    //g.drawLine(440,358,620,358);
    //g.drawLine(530,280,530,388);
    for(int i=70;i<150;i=i+20) g.drawLine(10,i,160,i);
    for(int i=70;i<150;i=i+20) g.drawLine(250,i,400,i);
    for(int i=220;i<300;i=i+20) g.drawLine(10,i,160,i);
    for(int i=220;i<300;i=i+20) g.drawLine(250,i,400,i); }//close paint
    * stop
    public void stop() {
    myThread.destroy();
    * destroy
    public void destroy() {
    * getAppletInfo
    * @return java.lang.String
    public String getAppletInfo() {
    return "Applet Information";
    private String getGeneration(String DMD,String DRL){
    double _gen = 0;
    if ( ( DMD != null) && ( DRL != null)){
    Double DMDOB = new Double(DMD);
    Double DRLOB = new Double(DRL);
    gen = DMDOB.doubleValue() - _DRLOB.doubleValue();
    return new Double (_gen).toString();
    } //close class

    Change your directory to the directory above package1.
    Assuming that you've got d:/projects/src/package1/abc.java you'd want to be in d:/projects/src.
    Run javac referencing the abc class relatively:
    d:\projects\src> javac package1/abc.javaThis should get you abc.class in the package1 directory.
    Hope this helps.

  • How To Boot Windows 7 from Windows 7 DOS Prompt?

    I got hit by the GVU virus.  Spent a week poking around and made some interesting discoveries!
    The GVU virus appears to lock you out of your computer always going to a page in german demanding 100 euros to restore it.
    If you reboot while pressing F8 you can get to the debug page which lists several options including boot to DOS prompt.
    Select this option.
    Windows 7 will boot and ask you to login.  Do this.
    Your computer will now go to the DOS prompt.
    On a second computer I installed an up to date copy of Spybot.  Using explorer I found the Spybot directory tree under Program files and copied it to a jump drive.
    Remove the jump drive from the second computer and insert it in your sick computer.
    On the sick computer you are at the DOS Prompt. Type explorer and press enter.
    A window will open similar to windows 7 explorer.  Right clicks will not work, but you will find all the usual right click menu items under Files and Edit on the menu bar.
    Click View then Refresh to display your jump drive.  You may have to do this a couple of times, but your jump drive will appear in the usual spot.
    Select the spybot directory on your jump drive and launch spybot.  Run a systems scan and delete every thing it finds.  Do this step Several times.
    Reboot your computer.
    Select Boot windows as normal.
    It will ask you to login in. Do so.
    Your computer will boot to explorer, the version that you saw in step 9.
    Press CTL + ALT + Delete then select Task Manager
    Task Manager will launch.  If you click the process tab you will see only ten or so processes are running.
    Click on the applications tab, then in the bottom right corner click on the button New Task.
    Type win and press enter.
    You will notice that the number of processes will jump to 90 give or take.  When CPU use drops to 5% again or there abouts click new task again.
    You are now in windows 7 minus the task bar but with networking etc.
    Enter a windows program such as Outlook and press enter.  Outlook will boot and run perfectly.  I suspect that most windows programs will also run perfectly.
    I know if you boot from your windows 7 DVD you can repair your system to normal.  My question is can I do this without the disk?  At this point I can do all my usual tasks, just without the convenience of the task bar and start button.  I
    am in the middle of unpacking from a move, cannn't find my Windows 7 install disk.  I am so close to getting this computer back to running normally but I am not sure what to do next.  Can someone help?
    Bob Jones

    Hi,
    If you system files are corrupted, we can use SFC to fix missing and corrupted system file:
    http://support.microsoft.com/kb/929833/en-us
    this could be performed in command prompt mode.
    If you have any feedback on our support, please click
    here
    Alex Zhao
    TechNet Community Support

  • Can do applets at the Dos prompt but how in JBuilder7 ? HELP ! ! !

    Dear People,
    After two days of successfully doing applets at the Dos prompt
    I am trying to do a first applet in JBuilder7 Personal Edition
    I did
    1) New
    2) applet (double click)
    3) renamed the .java file and .html file so the names
    matched the name of my class.
    4) typed in my source code
    The error message said
    "cannot access directory objectdraw"
    but when I do:
    Tools | Configure Libraries | Required Libraries
    I see the objectdraw library listed
    Your assistance is appreciated
    below is the applet code
    Stan
    package stan_an_eventful_approach_ch1_makebox;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import objectdraw.*;
    public class MakeBox extends WindowController
    public void begin()
    public void onMousePress(Location point)
    new FilledRect(30,150,30,20,canvas);
    }

    Borland has an excellent set of newsgroups and very helpful assistants (known as TeamB). I suggest you visit borland.com and ask there.

  • How to execute PL/SQL from DOS PROMPT?

    Hello:
    I've seen that executing an SQl script via DOS prompt involves @script name, however all this seems to do is open the line editor. A GET command displays my script and sets the cursor on the next available line with the last line of the script with an asterics beside it. as does using the @scriptname command. I cannot do any commands like SAVE, RUN, etc.
    Any help is appreciated.

    Do you have a final / in your script to execute it (which is presumably an anon pl/sql block).

  • How to run Hello.jaja in MS DOS Prompt ?

    Hi, this is my first programming assingment. And i need help on opening the file using MS DOS Prompt.
    This is what have done so far in MS DOS Prompt. But, it does not work.
    C:\WINDOWS> cd c:\
    C:\>cd c:java_rp\lab3\Hello Project\Hello.java
    Too many parameters - Project\Hello.java
    Help will be appreciated !
    Thank You

    Hello, marc_huhardeaux
    I finally got it working. Thanks for you help.
    This is what i did:
    C:\windows> cd c:\java_rp\Lab3\HelloProject
    C:\java_rp\Lab3\HelloProject> java hello
    Then i press return. and then it executed correctly.
    Hello World
    You said to: first use the compilator command : javac hello.java ther type this command to execute it : java hello
    I tried using: javac hello.java and nothing happend just got a bad command.
    Then i just typed: java hello, then it executed correctly.
    Thank You

  • How to shutdown Oracle9iAS Reports Services?

    In DOS prompt,
    rwserver server=paper_test
    A pop-up window appears showing:
    Oracle9iAS Reports Services
    Version: 9.0.2.0.3
    Name: paper_test
    Status: Report Server is ready
    Jobs in Queue: 0
    Active Engines: 2
    Another report server engine called "mywin2000" is automatically started when OC4J Instance is started.
    How can I shutdown the other server engine "mywin2000"?

    hello,
    you have to set the IN_PROCESS parameter in the rwservlet.properties to NO to prevent the in-process server from beeing started.
    regards,
    philipp

  • Urgent ! how to run swing from dos

    hi
    how should i run swing program through dos prompt.when found in i tried compiling from c:\jdk\bin i got an error "package javax.swing not import".
    viji

    what you willdo is this,
    at the top of your code type the line.
    import javax.swing.*;
    //for event type the next line..
    import javax.swing.event.*;
    import java.awt.event.*;
    I think this should solve your problem.

  • Running java command from DOS prompt

    Hi,
    When I run java from the DOS prompt (NT) in any other location than the JDK bin directory, I get the following error:
    Error opening registry key 'Software\JavaSoft\Java Runtime Environment'
    My understanding is to be able to run this from anywhere you need to add the tools.jar file to the CLASSPATH, which I have done.
    There is no entry in the Registry for Software\JavaSoft...etc, has anyone any idea what my problem is and how I can solve it?
    Thanks in advance

    Hi,
    I am running Java 2 SDK, Standard Edition Version 1.2.2 running on NT. It was installed as part of Oracles JDeveloper IDE and is running on NT.
    All I want to be able to do is run java from the command line e.g. 'java myclass', to run a standalone Java program. I can run 'javac myclass.java' to compile the program without any problems, but my understanding is that to do this all I need is to have the '.../java1.2/bin' directory included in the 'PATH' variable, whereas to run the java runtime you need to include the tools.jar in the CLASSPATH variable.
    As I said previously I can run the 'java myclass' command from the '../java1.2/bin' directory, just not from anywhere else. As for whats in the code, does not matter you should be able to type just java on the command line and it will come back with an error prompting for the class name. Here is an example of what happens:
    I:\>java
    Error opening registry key 'Software\JavaSoft\Java Runtime Environment'
    However if I change to the correct directory, I get:
    D:\oracle\JDev32\java1.2\bin>java
    Usage: java [-options] class [args...]
    (to execute a class)
    or java -jar [-options] jarfile [args...]
    (to execute a jar file)
    where options include:
    -cp -classpath <directories and zip/jar files separated by ;>
    set search path for application classes and resources
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version
    -? -help print this help message
    -X print help on non-standard options
    The contents of my PATH and CLASSPATH variable are shown below, Thanks again.
    I:\>PATH
    PATH=D:\oracle\BIN;D:\oracle\Apache\Perl\5.00503\bin\mswin32-x86;C:\Program Files\Oracle\jre\1.1.7\b
    in;D:\oracle\ora8i\bin;C:\DMINT40\Win32\Bin;C:\WINNT\system32;C:\WINNT;C:\Program Files\Symantec\pcA
    nywhere;d:\oracle\jdev32\java1.2\bin;d:\downloads\oraxml\bin;d:\oracle\jdev32\java1.2\lib\tools.jar
    I:\>echo %CLASSPATH%
    d:\oracle\jdev32\java1.2\lib\tools.jar;d:\oracle\apache\apache\htdocs\web-inf\classes;d:\oracle\apac
    he\jserv\servlets

  • How to execute   .sql whitn dos

    i don't know how to execute one text.sql(exemple one procedure) with MsDos.
    thanks

    friend
    i think you can execute a script from the MS DOS prompt like this . you need to write the script in a text file like the
    example i have used below.
    create a text file called t.sql with content as
    create table test_today(n number);
    exit
    Run the following command at MSDOS prompt to execute the script
    sqlplus -s username/password@connect_string @t.sql
    the above script will create a table called test_today and u can see the output as table_created on the screen
    if u want to suppress the feedback just put the following line as first line in the script t.sql
    SET FEEDBACK OFF
    hope this helps you
    thanks & regards
    Prakash Eranki
    [email protected]

  • Can I pass a command to the DOS prompt  from my program?

    Hi everyone,
    I'm a Java newbee..and have a relatively small doubt:
    Can I pass any DOS command to the console,say "for setting a class path " to the DOS PROMPT LIKE "PATH = %PATH%;D:\BEA\WEBLOGIC700\USER_PROJECTS\DOMAIN3" from a simple java program?
    Thank u in advance,
    moritala.

    Yes you can call a command in a DOS command shell although obviously not in a platform independant manner.
    However it won't have the effect you want it to. The command shell will open, you will set the classpath and then that shell will close - the classpath setting will not affect the already running java application (the one that opened the command shell). To load classes not on the classpath create a custom ClassLoader and use that to load the classes from your new location (this is, in essence how application servers allow multiple applications to have their own sets of classes without interference).
    BTW what does this have to do with JDBC?
    Hope this helps
    Talden

  • Executing a JAVA program from a DOS prompt vs the START = RUN dialog

    Another novice programmer question...I hope you have the patience...
    I have a demo JAVA program that runs fine on my Windows PC when I execute it from a DOS prompt:
    K:\COMMON\ITS\STEVEB\java\WhileDemo>java WhileDemo
    Count is: 1
    Count is: 2
    Count is: 3
    Count is: 4
    Count is: 5
    Count is: 6
    Count is: 7
    Count is: 8
    Count is: 9
    Count is: 10Can I run this same command from the Windows START => RUN dialog? If I cut an paste the same command, 'K:\COMMON\ITS\STEVEB\java\WhileDemo>java WhileDemo', into the START => RUN dialog I get the following error:
    "Windows cannot find 'K:\COMMON\ITS\STEVEB\java\WhileDemo>java WhileDemo'. Make sure you have typed the name correctly, and then try again. To search for a file, click the Start button and then click Search."
    Is what I'm attempting to do even possible? Any insights would be greatly appreciated. Thanks.

    Will a .JAR keep the window from closing on exit? Nope... creating java-archives (jar's) is just the next step down the "how to publish my java application" road. You will eventually (almost certainly) need to progress that far... but there's no rush.
    Compiling to and running from class files will do for now.
    If you want a command prompt which stays open then open it yourself... Start ~ run: cmd (on NT, XP, Fista)
    See also: "cmd here" is one of the windows power toys: http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx

Maybe you are looking for

  • Connecting Log & Capture to an External Display

    Forum, I am using FCP for my current project. While logging footage from my camera I thought it would be easier if I could hook up the Preview area of the Log & Capture window to an external device such as a display. Is this possible? How do I achiev

  • How can I get an item and it's attachments from the current list using SP's JavaScript Client Object Model on newform.aspx?

    I only recently learned/read about SharePoint's JavaScript Client Object Model. I'm reading online trying to figure this out but not having much luck. On newform.aspx (and dispform.aspx) I want to get the current list, the last item created, and it's

  • IPhoto integration in Pages 2.0 ?

    The basic premise of iLife has always been integration of all its parts. However, I am disappointed to see that, from what I can tell, there is no direct integration of iPhoto into Pages. The Insert command simply brings up a file browser window that

  • Regarding Module Configuration of  Receiver JMS Adapter

    Hi, Now i am working on IDoc to JMS interface, I am facing complexity in creating the structure in Module tab of Receiver JMS Adapter. Because the target system is expecting fixed length file so i should use the Local EJBs available in Module tab of

  • Setting up a Scanner

    I have two All-In-One Machines on two different wireless networks and had no problem setting up the printers. But, being very new to the Mac (one week), I have no idea how to set up the scanners in them. I used the help function and it said I can eit