How to start oracle database server and client in windows 8

Hi at all
I'm a new entry in this forum and I'm a beginner with database oracle.
I used always SQL Server as database and it was easy to use after installation.
With SQL Server configuration management program I could to launch the SQL Server (SQLEXPRESS) service and the database server start up!!
With SQL Server management studio I could to launch the client application, then was establishing a connection to the server and all was working fine!
Now, how to work with oracle database?
I installed oracle server and client version 11g R2 on windows 8, but how can I start the server database? .. and how can I start the client application for querying?
regards in advance.
P.S.: Sorry for my english. 

SomeoneElse
thanks for the response.
I setting the service to start manually because otherwise windows is slow to startup.
In particular I have precisely this oracle service on my operating system after installation.
- ) OracleVssWriterSYSDBA
- ) OracleDBConsolesysdba
- ) OracleJobSchedulerSYSDBA
- ) OracleMTSRecoveryService
- ) OracleOraDb11g_home1ClrAgent
- ) OracleOraDb11g_home1TNSListener
- ) OracleServiceSYSDBA
What are the services that start the server and I have to launch?
What is the client program in menu --> start -- > all program --> Oracle - OraClient 11g home..... that I have to use for querying database?
thanks.

Similar Messages

  • How to start Oracle Application Server 10g on Linux

    Hi,
    I have installed the Oracle Appliacion server and Infrastructure server on Linux. Both I have installed under with Diff. folder
    Can some one please tell me how to start / stop Appliacion server and Infrastructure server on Linux
    We are going to use the these with Oracle EBS 11.5.10.2 .
    Oracle EBS 11.5.10.2 installed in the same Linux server under diff. folder
    Can some one please guide me.
    Thanks,

    You can do as rizla said or go another route.
    We setup profiles to use for all of the oracle homes. Then in the scripts we call the profiles. Easier to migrate and manage in my opinion if you have multiple oracle homes. You can then use profiles when ssh'd into the boxes, too. Both ways will work.
    Example:
    Script which you can chkconfig.
    #!/bin/sh
    # oracle_collabInfra
    # This shell script takes care of starting and stopping Oracle Collab Infra instance.
    #chkconfig: 345 96 14
    # Source function library.
    . /etc/rc.d/init.d/functions
    RETVAL=0
    start () {
    echo $"Starting Collab Suite on the Infra instance..."
    echo $"Starting Listener..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; lsnrctl start"
    sleep 10
    echo $"Starting Metadata Repository..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; sqlplus '/ as sysdba' <<!
    startup;
    exit;
    sleep 10
    echo $"Starting Enterprise Manager Application Server Control..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; emctl start iasconsole"
    sleep 5
    echo $"Starting Infra OID and OC4J_Security processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=OID"
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=OC4J_Security"
    echo $"Starting Infra HTTP_Server processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=HTTP_Server"
    return $RETVAL
    stop () {
    echo $"Stopping Collab Suite on the Infra instance..."
    echo $"Stopping all Infra OPMN managed processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl stopall"
    sleep 5
    echo $"Stopping Enterprise Manager Application Server Control..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; emctl stop iasconsole"
    sleep 10
    echo $"Stopping Metadata Repository..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; sqlplus '/ as sysdba' <<!
    shutdown immediate;
    exit;
    sleep 10
    echo $"Stopping Listener..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; lsnrctl stop"
    return $RETVAL
    restart () {
    stop
    start
    RETVAL=$?
    return $RETVAL
    # See how we were called.
    case "$1" in
    start)
    start
    stop)
    stop
    restart)
    restart
    echo $"Usage: $0 {start|stop|restart}"
    RETVAL=1
    esac
    exit $RETVAL
    profile:
    export ORACLE_BASE=/opt/oracle
    export ORACLE_HOME=$ORACLE_BASE/collabInfra
    export ORACLE_SID=orcl
    export TMP=/tmp
    export TMPDIR=/tmp
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    export PATH=/bin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/kerberos/bin:/usr/local/bin:/usr/X11R6/bin:$HOME/bin:$ORACLE_HOME/bin:$ORACLE_HOME/opmn/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/backup_restore
    unset USERNAME

  • Unable to start Oracle BI server and Presentation Service

    I am unable to start the Bi Server and presentation service . I start stop, options in service window is coming disabled. Please can any body help on this?

    Hi,
    Please check if you have started the Oracle BI Java host service.
    Check if the OC4j is started.
    Check the event viewer logs. Also check on what account the service is starting.
    Hope this helps ...
    Thanks,
    Anita

  • How to start Oracle database in solaris Machine

    I installed Oracle database in my solaris machine. Everything went fine .. I was able to install it and test the database if it's working or not.
    Something happened that made me shut down and restart the solaris machine, the problem is that Oracle is not running, so I have to start it manually, and I'm not sure how to do that ... Is there a way to start Oracle automatically once the solaris machine is started ...
    I'm using the SSH Secure Shell Client to configure and install everything into the solaris machine ..

    Here is the work around for starting oracle instance automatically.
    1) logon the system as root user.
    2) under /etc/init.d/ directory, create a file name oraclestart(name the file to what you feel comfortable). eg: /etc/init.d/oraclestart.
    with the following content:
    #!/bin/sh
    # Created by Henry Nguyen
    # Date 10/11/2005
    # Script to automatic start and stop oracle instances on server
    ORACLE_HOME=/export/home/oracle/product/9.2.0.1.0 (diffrent on your system)
    if [ ! -f $ORACLE_HOME/bin/dbstart || ! -f $ORACLE_HOME/bin/dbshut ]; then
    echo missing oracle start/stop script
    exit 1
    fi
    case "$1" in
    'start')
    su - oracle -c '$ORACLE_HOME/bin/dbstart'
    su - oracle -c '$ORACLE_HOME/bin/lsnrctl start'
    'stop')
    su - oracle -c '$ORACLE_HOME/bin/lsnrctl stop'
    su - oracle -c '$ORACLE_HOME/bin/dbshut'
    esac
    3) create 2 soft link as following:
    ln -s /etc/init.d/oraclestart /etc/rc2.d/S99oraclestart
    ln -s /etc/init.d/oraclestart /etc/rc0.d/K10oraclestart
    Note the S99 and K10: that are Solaris priorities to when start and stop an oracle instance and those letter must be capitalized.
    Hope this will help you

  • How to configure ODI for server and client correct?

    Hi forum,
    this is my first post and i hope you guys can help me out ...
    i
    am new to ODI and WLS and in my case ODI need to run on a server where a couple of clients can connect to, work on the same project with their own workspaces and accounts.
    The database will be located on the same server.
    As far as i understood, i need to install the the ODI Java EE type (not the standalone type) with a WLS ?!
    iI already nstalled
    JDK 6u41 (x64),
    ODI 11g (11.1.1.6, generic),
    Oracle DB 11g R2 enterprise and
    WebLogic 11g (10.3.6, generic)
    on the Server and now i am trying to connect to the ODI repositories from a client with an ODI standalone installation.
    I am now trying to insert a Data Source into the physical agemt (not even sure if i need to do this in my case).
    Following these instructions (http://docs.oracle.com/cd/E17904_01/integrate.1111/e12643/setup_topology.htm#CHDHJBAD) i get an ODI-26029 error.
    Below are some configuration information of the software i installed.
    h3. ODI
    Installation:
    Installationtype: full
    Oracle home directory: Oracle_ODI1
    Agent name: odi_agent
    Agent port: 1987
    Repositories/connection:
    Master repository user = odim
    Work repository user = odiw
    Work repository name = WORKREP1
    JDBC connection string = jdbc:oracle:thin:@localhost:1521:orcl
    *odim and odiw have been created manually with grant options on connect and resource
    Physical agent (with no datasource defined):
    Name = OracleDIAgent
    Host = localhost
    Webapplicationcontext = oraclediagent
    Port = 8001
    Protocol = http
    Physical data server:
    Name = oracle_db_11gr2
    User = odiw
    JDBC connection string = jdbc:oracle:thin:@localhost:1521:orcl
    Physical schema:
    Schema (schema) = ODIW
    Schema (work schema) = ODIW
    Context = aMIS_dev
    Logical schema = oracle_db_11gr2
    Logiacal schema
    Context = aMIS_dev
    Physical schema = oracle_db_11gr2.ODIW
    Context:
    Name = aMIS_dev
    Logical agent = OracleDIAgent
    Physical agent = OracleDIAgent
    Logical schema = oracle_db_11gr2
    Physical schema = oracle_db_11gr2.ODIW
    Logical schema:
    Name = oracle_db_11gr2
    Context = aMIS_dev
    Physical schema = oracle_db_11gr2.ODIW
    Logical agent
    Name = OracleDIAgent
    Context = aMIS_dev
    Physical Agent = OracleDIAgent
    h3. Oracle DB 11g R2
    Installation
    Global database name = orcl.otera.local
    SID = orcl
    h3. WebLogic 11g:
    +1. generate new basic WebLogic Server domain+
    Domainname = ODI-DOMAIN
    Admin name = weblogic
    Admin server name = AdminServer
    Listening port = 7001
    Managed server name = odi_server1
    Managed server port = 8001
    +2. extend an existing WebLogic domain+
    Choose extension source: ODI - Agent, ODI - Agent Libraries, Oracle JRF
    Window: Configure JDBC compontent schema:
    Driver = Oracle's Driver (Thin) for Instance connection; Versions: 9.0.1 and higher
    Schema owner = odim
    DBMS/Service = orcl
    Hostname = localhost
    Port = 1521
    Client name = LocalODIMachine
    Listening address of the accountmanager = localhost
    Listening port of the accountmanager = 5556
    Really hope you guys can help me quick.
    Thanks in advance

    Hi DecaXD,
    thank you for quick response :)
    on the client site i tried to establish the connection to the work repository with the following connection information:
    Login information*:
    Oracle Data Integrator Connection
    Login name = odi_server
    User = SUPERVISOR
    Database connection (Master Repository):
    User = odim
    URL = jdbc:oracle:thin:@<server ip>:1521:orcl
    A work repository could be found, but the connection failed! (?!)
    " ODI-26130: Connection to the repository failed.
    oracle.odi.core.config.NotWorkRepositorySchemaException: ODI-10147: Repository type mismatches.     
    Could not get JDBC Connection; nested exception is java.sql.SQLException: Unable to start the Universal Connection Pool: oracle.ucp.UniversalConnectionPoolException: Invalid SQL-Query for validating the connection (+translated from german into english+) "
    my ODI configuration on the server site (loged in as: odiw):
    topology tab*:
    Physical architecture:
    Technology:
    Definition:
    Dataserver name = oracle_db_11gr2
    User = odiw
    JDBC-URL = jdbc:oracle:thin:@10.168.178.131:1521:orcl
    Datasource:
    Agent = OracleDIAgent
    JNDI-Name = [DataSourceName]
    Agents:
    Definition:
    Name = OracleDIAgent
    Host = <IP of the server>
    Port = 8001
    Webapplicationcontext = oraclediagent
    Datasources:
    Dataserver = oracle_db_11gr2
    JNDI-Name = [DataSourceName]
    Logical architecture:
    Technology:
    Defintion:
    Name = oracle_db_11gr2
    Context = aMIS_dev
    Physical schema = oracle_db_11gr2.ODIW
    Agent:
    Name = OracleDIAgent
    Context = aMIS_dev
    Physical agent = OracleDIAgent
    when i test the connection of the data server (topology>physical architecture>technology>oracle>oracle_db_11gr2) with the OracleDIAgent i receive the
    " ODI-26039: Connection failed.
    oracle.odi.runtime.agent.invocation.InvocationException: javax.naming.NameNotFoundException: Unable to resolve '[DataSourceName]'. Resolved ''; remaining name '[DataSourceName]' "
    since testing the connection on the server site failed in first place, i couldn't test the connection on the client site.

  • How to start Pointbase database server

    I browse the tools provided by J2EE but didn't found such element? How to do that?
    Thanks

    PointBase database has been replaced with Derby database in 8.2 release of the Application Server (and in corresponding J2EE SDK bundle). So, while the functionality is essentially the same, you might need to note this if the documentation you are trying to follow references PointBase.

  • How to install oracle database 11g express edition on Windows 7

    Hi Guys,
    i am trying to download and install Oracle database 11g express edition on windows7 and i can't seem to get it right. i did get the download but when i try to install, it keeps saying it appears to be an invalid archive.
    Please help..

    Action - Refer to the logs or contact OracleFinding the problem is the key. "Refer to the logs" is the only option, XE has no oracle support offerings.
    Which plugin failed, and why did it fail will be important clues. There should be error messages in the log that will be helpful.
    Otherwise, we don't have much help to offer. Fixing a problem means identifying the problem and performing steps to correct it, if there a fix is available.
    A MOS lookup on the ins-20802 error has snippets from one installer session, this one is from an x64 install. Not x86. To paraphrase the details:
    ... Created a new file <drive>:<OH path>\cfgtoollogs\configToolAllCommands
    SEVERE: java.io.IOException: Access is denied
    ...So from those symptoms, the user trying to run the installer does not have appropriate rights on that drive and/or folder. The fix for that particular problem is adding the user to the local administrators group. And rerunning the install. After running the deinstall steps to clean up the installation. As specified in the XE install guide for Windows.
    http://docs.oracle.com/cd/E17781_01/install.112/e18803/toc.htm
    Also note the System Requirements, it specifies a System architecture Intel x86, which is not X64. There is no X64 installer for XE on Windows. So it might work. Or it might not if your host is x64.
    So if that is your particular error, verify that your user is in the local admins group. Either use the local users and groups applet (Start/Run/lusrmgr.msc) and open up the Administrators group. Click the Add button. Find your user. If your OS user is a windows domain user, be sure you have authenticated to the domain.
    Try the `net ...` list of the adminis group, that should reveal whom is indeed in the local administrators group:
    net localgroup administrators
    Administrator
    <domain>\Domain Admins ... # ??? is the host in windows domain ???
    <domain>\Local Admins
    <domain>\<user1>
    <user2>
    <user3>
    echo %USERNAME%
    # if relevant:
    echo %USERDOMAIN%Like it also states in the Windows install guide, under Permission Required quote:
    ... must be a member of the Administrators group on Windows to install Oracle Database XE.

  • Unable to start Oracle Database Express Edition (XE) on window 7 - 64 bit

    I installed Oracle Database Express Edition (XE) on a WINDOWS 7 - 64 bit machine. I tried "Get Started" and http://localhost:8080/apex. It does not start/connect of anything. Please help.
    Thanks.
    Debbie

    I received the following message from lsnrctl status
    and sqlplus / as sysdba.
    C:\>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 20-JUL-2012 17:09
    :16
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MW777SXH4ITNY4.dir.svc.a
    ccenture.com)(PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    32-bit Windows Error: 1004: Unknown error
    C:\>sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.2.0 Production on Fri Jul 20 17:10:04 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    SQL> select sysdate from dual
    2 /
    SYSDATE
    20-JUL-12
    SQL>
    Does this mean I am up and running? I selected from dual. I will continue to play with the DB.
    If I download SQL Developer, should the version be for 32-bit or 64-bit for PC - Windows 7 - 64 - bit?
    Thanks.
    Edited by: 893328 on Jul 20, 2012 2:58 PM
    Edited by: 893328 on Jul 20, 2012 2:58 PM

  • How to configure oracle 9i server

    Hi,
    I am a newbie to oracle. I need to configure oracle server for studying PL/SQL. I have SQL*Plus: Release 9.0.1.0.1 in it. I need a username and password on my localhost to login to it. I dont know how to run Oracle Database Server for it and how to create an user account. Could someone direct me how to do it? I just need to login to SQL Plus and study it.

    Do yourself a favor and deinstall 9i. It is obsolete and currently in desupport.
    If your intent is to learn Oracle then download 11g and use it instead.
    Then go to Morgan's Library at www.psoug.org and you can use the index to find demos you can use to learn all basic functionality.
    Feel free to contact me off-line if you have questions about the library.

  • Software to connect to a Oracle database server.

    Does anyone know of software that enables me to connect to a Oracle database server, and check out the content? Doesn't need to have a gui.
    Orjanp...

    JAVA + JDBC type 4.

  • Today My c: drive crashed...i had all my oracle database files and others in other resp drives.How to start by DB again as my services are destroyed.?!

    Today My c: drive crashed...i had all my oracle database files and others in other resp drives.How to start by DB again as my services are destroyed.?!
    or how to create a service for the database i had previously ??
    any help
    Aravind.

    AravindanJ wrote:
    Today My c: drive crashed...i had all my oracle database files and others in other resp drives.How to start by DB again as my services are destroyed.?!
    or how to create a service for the database i had previously ??
    any help
    Aravind.
    Where did Oracle software reside before  the failure & now?
    How do I ask a question on the forums?
    https://forums.oracle.com/message/9362002#9362002

  • How to access a PDF file from Oracle DATABASE SERVER

    Hi
    I have some pdf files in "\home2\docs" directory in Oracle database server 10g. (OS is Linux) I want to access those pdf files from my client system through Oracle Forms. How is it possible?
    Please Help!!!! It is very urgent !!!
    Expecting fast response!!!!!
    Bye

    hi
    Thank u for ur response.
    Initially i tried to access pdf file from database server. I didn't get any solution for that. So I copied all my pdf files to Application server which is in Linux environment at "/home2/docs" directory.
    I gave the following command for accessing the pdf files kept in Lnux Application Server from Oracle 10g forms in a button press trigger.
    web.show_document('http://192.168.1.53:7779/home2/docs/test.pdf');
    It says "page cannot be found"
    So I copied one of the pdf file named "test.pdf" to "/oracle/oas10g/IasHome/forms90/java" in Linux Application Server . Then the following command
    web.show_document('http://192.168.1.53:7779/forms90/java/test.pdf');
    has opened the the pdf file in browser.
    192.168.1.53 is my Linux Application Server IP. and 7779 is the port.
    Actually we have lacs of pdf files. So i cannot keep all the pdf files in "/oracle/oas10g/IasHome/forms90/java" directory in Linux Application Server. And also all the pdf files not in the same directory , "/home2/docs" some of the pdf files r in the subdirectories of "/home2/docs/" like /home2/docs/sub1, /home2/docs/sub2, /home2/docs/sub3 etc.
    Then how to configure my "/oracle/oas10g/IasHome/forms90/server/forms90.conf" file for retrieving pdf files from "/home2/docs/" and its subdirectories. Is Anything other than this, required for solving my problems.
    Now My PDF files r in LINUX APPLICATION SERVER not in database server.
    Please help!! It is VERY URGENT!!!

  • Connection between  oracle 9i server and oracle 9i client

    hi there,
    i have installed both oracle 9i server and oracle 9i client in my system.how can i connect these two to have connection between these server and client?
    Because i was using only 9i server for creating database and for other purposes.i have not used 9i client yet.
    Please write me the answer.
    Thanks in advance.

    Hi Balu,
    If you have the Oracle 9i Client, you can just edit your TNSNAMES.ora file of your client to have a TNS Entry for your new Database & try connecting it. You just need to try TNSPING & ensure that you can reach the Listener.
    Are you facing any specific problems ?
    Regards,
    Sandeep

  • How can i start oracle databases? i am using Oracle 8.1.6 for linux.

    when i run dbstart,it gives me following message:
    Database "ora4cweb" warm started.
    but when i use sqlplus,it says:
    ORA-01034: ORACLE not available
    i made a mistake ,i shutdown my linux before i shutdown oracle databases,how can i start oracle databases now?thanks in advance.

    try it without the scripts...
    login to linux as oracle
    start server manager
    svrmgrl
    connect internal
    startup
    select sysdate from dual;if that works
    exitcheck listener
    lsnrctl
    statif nothing running type
    start
    exitnull

  • How to create connection to cluster of Oracle database server?

    Hi, all!
    I have to create connection to Oracle cluster. How to do that?
    I can make a connection to one server but to cluster ....
    I saw many documents but without any result.

    Hello
    Two servers with oracle database server installed organized as a cluster.
    Both server work in parallel, when one of them stop work the other takes connection automaticaly.
    The connection to the cluster is not usual as a one server.
    I have to specify both servers.Any time i can make a connection to one of them but when he stop work my connection will be broken.
    Because of that the servers work under oracle server software.
    So i can make a connection to one of them and both.
    This is made because it is for production firm with many test computers that work 24/7 and send information to this oracle server.
    So i have to make a connection to the general oracle cluster (the two servers simultaneously).
    I saw some connection strings to do tha written on Visual Basic but i have no idea how to do that in C/C++.
    There is no information about that in the Oracle tutorials and manuals.
    I need this explanation because i make a connection without TNS config file.
    Can you help me?
    I will be very appreciated.

Maybe you are looking for

  • Cannot update or restore ipod Shuffle

    Having trouble restoring my iPod shuffle with iTunes7- it says that it cannot be restored because it contains files that are in use by another application. This message also appears when I try to eject the Shuffle in iTunes. I also noticed that of th

  • SQL-Loader Control file for Tab-delimited fields

    i want to import a text-file with TAB-DELIMITED fields and a line-break + return at the end of each record. a want to do this by sql-loader and a control file. please, can someone give me the statement: e.g. load data infile 'exaple.txt' ....... (...

  • Photoshop CS6 bug? Can't use brush tool on newly created layer.

    Has anyone encountered this problem before - I'm using a Wacom intuos 2 and working up some illustraitons, but whenever I create a new layer, the brush tool goes completely defunct and makes absolutely no marks on the document. I have gotten in the h

  • How to do image with input text?

    hi,iam using jdveloper 11.1.2.3.0 my requirement as follows... i have input text beside of that input text i need to display image of create insert(not below of input text)

  • MIDP???

    Hi, Now I know where to get the java packages I have been looking for. Thanks for the nice guy, how helped me with this matter. I am now trying to install MIDP to my windows 2000, but all my tries went in vain. I can't install MIDP, because I can't r