How do i connect to the oracle database

I just downloaded oracle 9i from your website. I wanted to know how do I receive or create my own username and password so I can access the oracle database.

Hi,
Two user accounts are automatically created with the database:
SYS (default password: CHANGE_ON_INSTALL)
SYSTEM (default password: MANAGER)
(More info at : http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/server.920/a96521/dba.htm#852)
Both these accounts are database adminstrators. You can use either of these to connect to your database and create more users.
To create new users use this SQL command after connecting to your database
SQL> CREATE USER <username> IDENTIFIED BY <password>
SQL> GRANT CREATE SESSION TO <username>
For more information on creating users refer to http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/server.920/a96521/users.htm#16513
Hope this helps.
Sujatha.

Similar Messages

  • How sql developer connects to a oracle database

    hi,
    I wonder how sql developer connects to a oracle database. does it use oracle client like Toad?
    How does it make the connection with oracle server?
    Sameera

    924164 wrote:
    hi,
    I wonder how sql developer connects to a oracle database. does it use oracle client like Toad?
    How does it make the connection with oracle server?
    SameeraWelcome to OTN
    From Left side Tab click on (+) New Connection. Then at the window give a connection name,User name,Password.
    Then provide Host Name, Port and SID
    Click on Test button and then save or connect.
    Hope this will help you

  • How to store image in the oracle database 10.2. using File Maker 10.

    Hi.,
    I want to store image, media file in the oracle database using File Maker as a front end.
    I connect Oracle using odbc from file maker. There are table and in that table there a column "pict" of blob type. but this column is not showing in the file maker.
    2. Here I can not change the data type of any column.
    Now how to store images in the oracle table using odbc or any other tool.
    Regards,
    Shyam

    I wrote an example for my students, you can find it here. It's using PHP as the front end but all you need to do is know how and leverage the stored procedures. All code is downloadable in zip files from the blog.
    http://blog.mclaughlinsoftware.com/php-programming/oracle-lob-processing/

  • How do I connect to the backend database?

    I have both the infrastructure and the mid-tier installed on the same machine. I have created an omniportlet with specific connection information (username/password/connection info) to connect to a back-end (customer) database. Is this the correct methodology to use for connecting to the back-end database? I am concerned that when the portlet is moved to a production system then the connection information will be invalid and the portlet will not work.
    Also, I have created a dblink to the backend database in the PORTAL schema, which exists in the iasdb (also sometimes referred to as the infrastructure repository, infrastructure instance). The iasdb obviously also holds the metadata repository. I can use this link within a DAD to connect to the backend database. My intention was to use this link to get round the problem of invalid connection info when the development system is moved to production, but the link does not work with omniportlets.
    I am confused as to how the backend database is connected to by OAS. Can someone please explain to me how this is done in a system which has separate machines for client, infrastructure, middle (portal) tier and backend database?

    Managed to figure out that I just have to let tnsnames resolve this issue.

  • How database block in forms is connecting to the oracle database

    how is oracle forms connecting to oracle database?

    Thru tnsnames.ora file present in c:\orant\net80\admin and c:\orant\network\admin.
    Hope this helps u.
    Ritika.

  • How can I connect to an oracle database remotely using telnet in DIAdem?

    I need to query an oracle database on a remote server and store the result back in DIAdem. Does anyone know how to telnet through diadem and return the result?

    DIAdem provides you with tools to connect to databases using SQL. Specifically, you can use SQL_Connect to open a connection to a database through a DSN (Data Source Name). The DSN has to be configured on the local machine (Control Panel -> Administrative Tools - > Data Sources) and has to point to the remote Database. You can map a network drive in the local machine so you can browse to your remote Database. The DSN will provide the link between DIAdem and the remote Database.
    If your communication has to be throught telnet, then I suggest you try to use an ActiveX control. VBScript doesn't support Telnet natively, but it does support ActiveX controls. You can create one from Visual Basic or try to find a telnet client that has one already.
    Best Re
    gards,

  • How to store image in the oracle database 10.2.

    Hi.,
    I am working on 10g ids. I have designed a form where there are two fields. Name and picture.
    I want to keep details of the person with their photo.
    I can simply put name but how to insert image in the picture field??
    can you suggest ??
    Thanks.
    Shyam

    Hi
    To store your binary images in an Oracle database, you will need to create a column in your table defined with the BLOB datatype BLOB stands for Binary Large Object. Images from scanners, mpeg files, movie files and so on can all be stored in the BLOB column
    sq>CREATE TABLE test_table (
       id NUMBER,
       image BLOB);then go to
    [http://download-west.oracle.com/docs/cd/B14117_01/appdev.101/b10796/toc.htm]

  • How do I connect to the mobile database in c#?

    I am creating a application in c# for windows mobile 6 using Oracle Database Lite.
    The problems start by not understanding the tutorial in vb of the transports. I want to make the connection string and the program stops with an error.
    The way I am creating the connection string is the following:
    String connectionString = "dsn=msus;uid=system;pwd=" +++ _password;+
    _connection = new OracleConnection(connectionString);+
    _connection.Open();+
    The error in the mobile device is:
    POL-5150 access violation
    Every steps of creating publications items an publication on the Mobile Server was successful. The msync synchronized with no problems. User has privileges for using the application. I think this is not the way of making the connection string, but I can't find the right one!
    Thanks for the support.

    the _password is the password of the user hzenha... which is hzenha... I am send it as an argument to the method that as the code I've shown in the first post. The code is the only one I use about connections to the database... I don't access it elsewhere.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How does one connect to an Oracle Database using OO4O as sysdba using VB 6?

    Hi,
    Can any one give suggestion to connect an Oracle Database using OO4O as sysdba using VB 6.0. Generally it supports only database, userid/password only.
    For Eg:
    Option Explicit
    Dim m_oraSession As Object
    Dim m_oraDatabase As Object
    Private Sub Command1_Click()
    Set m_oraSession = CreateObject("OracleInProcServer.XOraSession")
    Set m_oraDatabase = m_oraSession.DBOpenDatabase("Database", "user/password", 0&)
    MsgBox "Connected to " & m_oraDatabase.Connect & "@" & m_oraDatabase.DatabaseName
    End Sub
    Private Sub Form_Unload(Cancel As Integer)
    Set m_oraDatabase = Nothing
    Set m_oraSession = Nothing
    End Sub
    Thanks & Regards,
    Kishore.P
    E-Mail: [email protected]

    You can't connect AS SYSDBA with OO4O.

  • How do I connect to the gracenote database in iTunes 11?

    In previous versions of iTunes, one could retrieve track information from or send track information to the gracenote database. I cannot find a way to do this in iTunes 11. This matters because iTunes 11 has wiped out some of the data I hand entered when copying CDs into iTunes, particularly in the "composer" field. This is true on my 2 desktop composers (work and home), both Intel iMacs (one from fall 2009, the other from January 2011) running 10.7.5. If I could get the info from gracenote, I save a lot of tedious data entry.

    Yes, just an hour ago, I went to import a CD and discovered this. This is very helpful to know. I'm still bummed that iTunes 11 stripped away some of the additions and corrections I had made to iTunes, and that I can't access Gracenote unless I'm importing a CD. I'd say half a loaf is better than none, but this is more than half a loaf --- more like 2/3 or 3/4. Thanks!

  • Getting error while trying to connect to the oracle database using SQL Deve

    Hi everybody,
    I installed sql developer and want to make a new connection, but it shows:Status: Failure- Test failed:IO Error:The Network Adapter could not establish the connection.
    Please anybody help me. Appreciate you, in help.
    Thank You,

    This is usually a problem with either your connection definition, or the basic network setup.
    Try following the trouble shooting steps here

  • Pb to connecting to the demo database

    hi ,
    i'm newbie :)
    i have just installed TimesTen with demo ,
    i can't see how can i connect to the demo database in the command line (i'm on Linux)
    what's the name of the demo database ?
    thanks for help
    :)

    Y.Brunet, I can not be as sure in my words as you are, since I don't know how other companies and programmers solve these problems, but I cannot easily accept your advice to code dates as Strings.
    In our company's projects everywhere in DB handling code we use PreparedStatements because AFAIK they provide better performance than CallableStatements if frequently used. Also they provide abstraction level - why should I know how the f!@# the Database expects dates/int/float/String... in SQL statements?
    We use several DB servers - M@SQL, Access, Oracle, Ingres - they all handle dates in different way(not to mention that in most DBs date format is customizable). But code written for one server works on others (most of it, of course) because of this level of abstraction.
    Let's leave the driver format the stuff as the DB expects and concentrate on the real work - pass correct values, perform logical checks, improving performance.....
    Mike

  • Connecting to Non-Oracle Databases

    How can we connect to Non-oracle databases like MS-SQL server using Developer Forms and reports?
    can any body please provide steps to do this.

    HI
    to connect to Non-Oracle Database u have to use OCA ,,,u have to define ODBC data source for the database <source1> u want to connect. to connect from the forms or reports
    user name/password@ODBC:source1.
    hope this help u
    try to look for the developer help

  • How to config the oracle database connection pool in IAS

    Hi,
    Does anyone who hows to config the oracle database connection pool in IAS?
    Thanks so much!!!
    [email protected]
    Jacky

    Jacky,
    You need do the following for oracle type4 driver:
    1) register the driver:
    $IAS_HOME/bin/jdbcsetup
    Driver Identifier: Oracle_Type4_816 (whatever name you like)
    Driver Classname: oracle.jdbc.driver.OracleDriver
    Driver Classpath: .../classes12.zip (install this this zip file somewhere
    and add this zip into the Classpath later).
    2) DataSource Setup:
    start iAS Administration Tool (iASAT)
    Choose Database, unfold iAS1 (your app server instance),
    choose External JDBC Datasource -> add: DataSource Registration
    JNDI Name: yourPoolName
    Driver Type: Oracle_Type4_816 (select what you just register)
    DataSource Url: jdbc:oracle:thin:@hostName:portName:dbName
    Username: your_user_name
    Password: your_passwd
    (Datasource Pool: using defaults for now): you can also customrize the
    parameters for the pool.
    3. Add classes12.zip into CLASSPATH.
    In your application, you can use JNDI lookup to get the DataSource from
    which you get the connection from the pool.
    Hope this helps.
    Good luck.
    Xuran
    "Jacky Yan" <[email protected]> wrote in message
    news:9m0tmp$[email protected]..
    Hi,
    Does anyone who hows to config the oracle database connection pool in IAS?
    Thanks so much!!!
    [email protected]
    Jacky

  • Find how many users are connected in the Oracle Server

    Hi,
    I am using Oracle 10g. My question is, is it possible to find how many users are connected in the Oracle Server. We are having one Server and we are having many client machines which will connect the Oracle.
    And one more question in the meanwhile i want to take Backup of one database which client as connected. Is it get any problem to the client machine which is accessing the server. And How to take the backup from the server machine. Any commands to process.
    Thank u...!

    Hi there.
    If You run
    select count(*) from v$session where username is not null;you'll get the number of users connected to Oracle server,
    and yes , you could do backup while users are connect to db you are backing up.
    cheers

Maybe you are looking for

  • Reg Global Variable in PI 7.1

    Dear All We have a scenario where we need to validate contents of variuos fields in an xml file. As the validations are complex we want to store the exceptions inside a global variable so that all the exceptions can be segregated at a single point. C

  • Delta field for generic data source based on view EKBE

    Hello, I am creating a generic datasource based on table EKBE. Can anyone please tell me what field should I use for delta. Is it BUDAT(Posting Date in the Document) or CPUDT(Day On Which Accounting Document Was Entered). Thanks for the help. Praveen

  • Java update error with projects

    h1. Hi, h1. After update Java for Mac OS X relase 6, I can not run any Java project in Xcode 2.1, the run log show this error: [JavaAppLauncher Error] CallStaticVoidMethod() threw an exception Exception in thread "main" java.lang.UnsupportedClassVers

  • Tab opens in new window by itself

    I have several tabs open that I switch between, one of them being Facebook, and that is the only one that ever gives me issues. Sometimes when switching between tabs, the Facebook tab pulls itself out of the group, and into it's own new window, and I

  • Is SRIOV /NPIV supported ?

    Hi, Is SR IOV and NPIV suppoorted in Oracle VM 3.0/1 ? I dont see it being mentioned in the docs. Edited by: 943596 on 13-Sep-2012 08:58