Creating  a  data  base

hi!
how do I create a database in oracle

the following link on metalink would help you thr the steps in creation of oracle database
http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/create.htm#1000691

Similar Messages

  • How we create new data base in oracle 10g express edition

    hello every body.. i student of B tech n new user of oracle so please help me how we creat new data base in oracle 10g express edition

    Hello, Oracle XE can not create more than one instance, the other editions yes, but like other editions XE allows you to create database schemas, schemas logically grouped objects like tables, views, indexes created by a user. By creating an Oracle user is associated with a schema of the same name.
    Using SYS or system accounts for creating user accounts.
    Syntax to create a user:
    create user Your_user
    IDENTIFIED BY password
    default tablespace users;
    grant connect, resources to your_user;
    Edited by: rober584812 on Jun 25, 2010 9:03 PM

  • Can I use my Address Book to create a data base and then merge from it to create mailing labels?

    Is it possible to use my Address Book to create a data base and then merge from it to create mailing labels?
    Thanks,
    CF

    I know one way, it is not elegant but it does work.
    1. Open Thunderbird. (download here: https://www.mozilla.org/EN/thunderbird/)
    2. Click on Address Book.
    3. On the left in the new window is a list of your Address books and groups. Select the one you want.
    Your addresses will appear to the right.
    4. In Thunderbird / Tools select Export, and Save as "Comma Separated".
    You can open that list of addresses in Excel or in FileMaker Pro. Mail merge proceeds from there.

  • Problems in creating a data base structure

    Hi all,
    I am creating a structure and one of the fields is cond_value with component type kbetr (konp-kbetr). When i am trying to activate it its showing an error like
    Diagnosis
    You must specify reference tables and reference fields for fields containing currency amounts or quantity data. You have specified either only the reference field or the reference table and have not maintained either entry.
    Procedure
    Add the missing entry. You can do this with the single field maintenance function of the table.
    Could somebody please help me with this...
    thanks,
    kiran.

    Hi Kiran,
    You are trying to create a structure with currency fields. Please note that for Currency and Quantity fields you have to define reference fields.
    Please define the following at reference field for Currency :
    RV13A-KONWA
    Regards,
    Lanka

  • Unable to create a data base

    Hi
    I'm just trying to create a database in webmatrix by following steps :
    database>new database>filling the fields username : root and password :root >Here I have this error : "unable to connect to any of the specified MySQL hosts"
    I unstalled the mySQL and Installed it agaain , but in any of it's steps It didn't want the user or pass ! :-?
    but my problem didn't fixed 
    I copied the error details here :
    Unable to connect to any of the specified MySQL hosts.
    MySql.Data.MySqlClient.MySqlException (0x80004005): Unable to connect to any of the specified MySQL hosts.
       at MySql.Data.MySqlClient.NativeDriver.Open()
       at MySql.Data.MySqlClient.Driver.Open()
       at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
       at MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
       at MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
       at MySql.Data.MySqlClient.MySqlPool.GetConnection()
       at MySql.Data.MySqlClient.MySqlConnection.Open()
       at Microsoft.WebMatrix.DatabaseManager.MySqlDatabase.MySqlDatabaseProvider.TestConnection(String connectionString)
       at Microsoft.WebMatrix.DatabaseManager.IisDbManagerModuleService.TestConnection(DatabaseConnection databaseConnection, String configPathState)
       at Microsoft.WebMatrix.DatabaseManager.Client.ClientConnection.Test(ManagementConfigurationPath configPath)
       at Microsoft.WebMatrix.DatabaseManager.Client.DatabaseHierarchyInfo.EnsureLoaded()

    My problem changed
    I reinstalled MySQL and proceeded to Excute level
    there had this error
    Unable to create new database.
    Access denied for user 'root'@'localhost' (using password: YES)
    and also in webmatrix :
    Unable to create new database.
    Access denied for user 'root'@'localhost' (using password: YES)
    MySql.Data.MySqlClient.MySqlException (0x80004005): Access denied for user 'root'@'localhost' (using password: YES)
       at MySql.Data.MySqlClient.MySqlStream.ReadPacket()
       at MySql.Data.MySqlClient.NativeDriver.AuthenticateNew(Boolean reset)
       at MySql.Data.MySqlClient.NativeDriver.Authenticate(Boolean reset)
       at MySql.Data.MySqlClient.NativeDriver.Open()
       at MySql.Data.MySqlClient.Driver.Open()
       at MySql.Data.MySqlClient.Driver.Create(MySqlConnectionStringBuilder settings)
       at MySql.Data.MySqlClient.MySqlPool.GetPooledConnection()
       at MySql.Data.MySqlClient.MySqlPool.TryToGetDriver()
       at MySql.Data.MySqlClient.MySqlPool.GetConnection()
       at MySql.Data.MySqlClient.MySqlConnection.Open()
       at Microsoft.WebMatrix.DatabaseManager.MySqlDatabase.MySqlDatabaseProvider.CreateDatabase(String adminConnectionString, String databaseName, String userName, String password)
       at Microsoft.WebMatrix.DatabaseManager.IisDbManagerModuleService.CreateDatabase(DatabaseConnection databaseConnection, String configPathState)
       at Microsoft.WebMatrix.DatabaseManager.Client.DBManagerController.CreateDatabase(ProviderInfo providerInfo, DatabaseConnection databaseConnection)
       at Microsoft.WebMatrix.DatabaseManager.Client.DBManagerController.<>c__DisplayClassa.<AddDatabase>b__6()
       at System.Threading.Tasks.Task.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    Hi,
    I am afraid that this is not the proper forum for this issue, since this issue is related to MySQL which belongs to third-party.
    I would suggest you post this issue in the other popular forum or connect with its publisher to get help.
    Reference:
    http://forums.mysql.com/
    In addition, you could check whether you could log with that user account to narrow down this issue.
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to create temp. data base using 10g edition

    i was usining oracle 10g edition and got a problem
    create table #albums (
    ERROR at line 1:
    ora-00911:invalid character
    could you please sort this problem out.
    thanking you
    gourav

    or try this:
    create table "#albums" (Ah, yes.
    Another one who loves to forever use double-quotes around identifiers. Very proper thing to do, especially useful in trouble shooting environments such as SQLPlus. <g>
    BTW: The proper way to handle temp tables in Oracle is to learn about Global Temporary Tables.

  • Create data base table with EXEC SQL

    Hello,
    I nead to create o data base table with EXEC SQL in an Abap program.
    My code is :
    TRY.
       EXEC SQL.
          CREATE table zt_hello ( mandt char(4) NOT NULL,
                                  kunnr char(10) NOT NULL,
                                  PRIMARY KEY (mandt, kunnr) )
        ENDEXEC.
      CATCH cx_sy_native_sql_error INTO exc_ref.
        error_text = exc_ref->get_text( ).
    ENDTRY.
    IF sy-subrc = 0.
      COMMIT WORK.
    ENDIF.
    But it still not working.
    Can you help me please.
    Thanks.
    Edited by: widad soubhi on Jul 14, 2010 5:26 PM

    Please refer this code
    REPORT z_struct_create .
    DATA: my_row(500) TYPE c,
    my_file_1 LIKE my_row OCCURS 0 WITH HEADER LINE.
    DATA: dd02v TYPE dd02v.
    DATA: my_file_tab1 LIKE dd03p OCCURS 0 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME TITLE text
    NO INTERVALS.
    PARAMETERS:
    name TYPE ddobjname,
    testo TYPE text40,
    file_1 LIKE rlgrap-filename.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK blk.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file_1.
    PERFORM file_selection USING file_1.
    INITIALIZATION.
    text = text-001.
    START-OF-SELECTION.
    IF file_1 IS INITIAL.
    MESSAGE ID 'Z0017_BDI' TYPE 'I' NUMBER 001.
    EXIT.
    ENDIF.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = file_1
    filetype = 'ASC'
    TABLES
    data_tab = my_file_1.
    IF sy-subrc 0.
    MESSAGE ID 'Z0017_BDI' TYPE 'I' NUMBER 002.
    EXIT.
    ENDIF.
    LOOP AT my_file_1.
    IF sy-tabix > 1.
    CLEAR my_file_tab1.
    SPLIT my_file_1 AT ';' INTO
    my_file_tab1-fieldname
    my_file_tab1-datatype
    my_file_tab1-leng
    my_file_tab1-decimals
    my_file_tab1-ddtext
    my_file_tab1-inttype = 'C'.
    my_file_tab1-INTLEN = my_file_tab1-leng.
    my_file_tab1-tabname = name.
    my_file_tab1-position = sy-tabix - 1.
    my_file_tab1-ddlanguage = sy-langu.
    my_file_tab1-OUTPUTLEN = my_file_tab1-leng.
    APPEND my_file_tab1.
    ENDIF.
    ENDLOOP.
    dd02v-tabname = name.
    dd02v-ddlanguage = sy-langu.
    dd02v-tabclass = 'INTTAB'.
    dd02v-DDTEXT = testo.
    dd02v-MASTERLANG = sy-langu.
    IF NOT my_file_tab1[] IS INITIAL.
    CALL FUNCTION 'DDIF_TABL_PUT'
    EXPORTING
    name = name
    dd02v_wa = dd02v
    TABLES
    dd03p_tab = my_file_tab1
    EXCEPTIONS
    tabl_not_found = 1
    name_inconsistent = 2
    tabl_inconsistent = 3
    put_failure = 4
    put_refused = 5
    OTHERS = 6
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ELSE.
    MESSAGE ID 'Z0017_BDI' TYPE 'I' NUMBER 003.
    EXIT.
    ENDIF.
    *& Form file_selection
    -->P_FILE_1 text
    FORM file_selection USING p_file.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    def_filename = ''
    def_path = 'c:\'
    mask = ',.,..'
    mode = '0'
    title = 'Selezione file'
    IMPORTING
    filename = p_file
    RC = RCODE
    EXCEPTIONS
    inv_winsys = 1
    no_batch = 2
    selection_cancel = 3
    selection_error = 4
    OTHERS = 5.
    ENDFORM. " file_selection
    File Template:
    Fieldname;Data Type;Lentgh;Dec.;Descr.
    FIELD1;CHAR;000020;000000;my field 1
    FIELD2;CHAR;000008;000000;my field 2
    FIELD3;CHAR;000007;000000;my field 3
    FIELD4;CHAR;000006;000000;my field 4

  • Problem In Data Base Creation... Oracle 10g server in windows server 2008

    I have installed Oracle 10g server in windows server 2008 and the domain & active directory r created now i am trying to create the databse i am getting usual error (tns protocol adapter error ) in the 2% i have removed the domain and the active directory from windows then i created but this is not a solutions i need to create the data base in the domain server...

    this is a forms forum.
    please post in Database Installation

  • Data base creation

    hi,
    I am new with data bases in Java. I need to build a servlet that saves data in data base. I would like to use mySQL. I really don't know nothing about mySQL and JDBC, only that it is free and it uses SQL (which I knows).
    What should I know and have in order to make this? what jars and what servers should I find? where can I find an example of how to create a data base and use it?
    thanks, Naor.

    The JDBC tutorial....
    http://java.sun.com/docs/books/tutorial/jdbc/index.html
    The mysql site....
    http://dev.mysql.com/
    I suggest that the read the license carefully first.

  • Access non-Oracle data base from Oracle Data base?

    Hi,
    I have a system using Oracle data base but i have to query some data in
    Access data base called TA_2008.mdb for specific table called FPTrans
    My oracle database SID=Ahmed10g my schema is attend/attend.
    I have tried to use the Heterogenous Services Generic Connectivity Agents .
    I think i have to build the ODBC driver for Access database not for oracle and specify the Access DB name
    But i built the driver for oracle.
    Please clear the steps for me and correct me if i am wrong .......................
    1. Create ODBC driver [microsoft ODBC for Oracle] as File Data Source Name =attendoraclefds
    user : attend
    password : attend
    Server :ahmed10g
    2. create intilization Parameter file in the path D:\oracle10gDB\product\10.2.0\db_1\hs\admin
    called : initATTENDORACLEFDS.ora
    CONTAINS PARAMETERS:
    HS_FDS_CONNECT_INFO=FILEDSN=attendoraclefds
    HS_FDS_TRACE_LEVEL=ON
    3. Edit TNSname.ora file :
    attendoraclefds =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = awahaishi_lptp.sepocye.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = attendoraclefds)
    (HS = OK)
    4. Edit Listener.ora file :
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (PROGRAM = extproc)
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\oracle10gDB\product\10.2.0\db_1)
    (SID_DESC =
    (PROGRAM = hsodbc)
    (SID_NAME = attendoraclefds)
    (ORACLE_HOME = D:\oracle10gDB\product\10.2.0\db_1)
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = awahaishi_lptp.sepocye.com)(PORT = 1521))
    5. Restart the listener
    6. create the data base link:
    CREATE DATABASE LINK accessDB
    CONNECT TO attend IDENTIFIED BY attend
    USING 'attendoraclefds';
    select * from EMP_JOBS@accessDB;
    Error occures say :
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    ORA-28541: Error in HS init file on line 9.
    ORA-02063: preceding 2 lines from AAL
    Edited by: StillYoung on Mar 18, 2009 1:10 AM

    Please see if the following link is helpful:
    a question about transparent gateway,sb help me plz!!

  • Problem in Data Base View

    Hello All,
    I have created a data base View .which is based on two table. my Problem is the Selection Condition Tab I have to define two condition like below.
          Table                        Fields                operator  comp value
        ZCLUBINVMST           Cancel               eq           ''                   AND
        ZCLUBINVMST            DOCTY              NE         'S'
      My problem is that first condition running properly but when I am adding secound condition logic is not working . I have try with other option like
    eq   ''
    but not working,
    Can some One Please guide me exactly where  the problem is ?
    Regards
    Swati Namdeo

    Hi,
    I think in ur second condition , S should not be given in single codes.
    iam not sure, just check without single code('S').
    Rvert back if any issue,
    Regards,
    Naveen

  • Bussines object reference into Solution into Solution Data Base

    Hi Experts
    I´m creating Solution Data Base based on the following  landscapes: R3 retail, BW and CRM. Under IMG I found that is possible to Define Business Object types for Simptom and Solution. My doubt is focus on learning how to use  Business Object Repository that exist on satelites sytems (BW, CRM, R3) for link them to the solution.
    I mean, when you create a new solution into SDB is possible to link or reference the Business Object which you opened a support message, i.e: when is not possible to release a Purchase Order (R3 system), then I´d like to "attach" or link the Purchase Order reference by number to the Solution.
    Could you please give hand or explain me how it works?
    Thank a lot

    if you are sure, that your object is a string, u can do this, too:
    String stringObject = (String) getItemAt(combo.getSelectedIndex())

  • Can't search photos using more than one word.  Ruined ability to data base

    I've spent hundreds of hours cataloging my photos by keywords and image titles and created a data base that is critical to my business. After installing iPhoto 11 I can no longer search using multiple words. This has made my data base useless. The "Faces" and "Places" fields will not help because those are not part of the search criteria. Is there a way to make this work? If not how do I go back to the old version of iPhoto?
    thanks for your help!

    How were you searching previously? Adding both keywords and title text to the search box? Why can't a smart album do the trick?
    You might consider using a DAM (digital asset management) application like Expression Media. It's a professional grade image management app that can be searched for any combination of keywords, description text, title text, etc.
    Click to view full size
    You can learn about EM and the other pro DAM apps at the The DAM Forum. I strongly suggest you consider a more robust DAM app for your professional work.

  • Data base with labview

    please, can i us the labview 6.i to creat a data base?

    Labview as a programming language can be used to communicate with a database, to add new recordsets to a database, to fetch values from a database.
    There are several options you could use as the database core. E.g. some "open source", free databases as mysql, postgres, msde (ms "free" sql server) or you could interact with bigger databases from Oracle, DB2, MS SQLServer or probably even SAP.
    The key point to this is how you communicate with the database, and there you could easily use the LabVIEW Database Connectivity Toolkit on a Windows platform.
    What type of application would you like to write? Maybe other add-on modules to LabVIEW helps you further to implement in an easy way your applic
    ation.
    e.g.
    LabVIEW for Datalogging and Supervisory Control
    NI DIAdem
    Configuration-Based Datalogger - NI VI Logger
    If you are low on budget, you might get some help from this link: LabVIEW Open Source Tools (L.O.S.T.) - LabSQL
    Hope this helps
    Roland

  • Data Basis & consolidation area

    Dear Gurus,
    I'm having my first try in starting up the SEM-BCS in the system. However, i tried to create the data basis and consolidation area but unsuccessful. Is there any configurations that i need to do and how can i activate the default list in the system??
    Thanks in advance!
    Regards,
    IvanSek

    SE38.
    If you want to activate SAP delivered example, follow the notes:
    736226 - SEM-BCS 400 - Activation of the SAP delivery example
    859893 - SEM-BCS 60- Activating the SAP delivery example
    741004 - SEM-BCS - Activating delivery performance reference example
    But frankly, it will give you NOTHING.

Maybe you are looking for