Can't create connection to local database

I'm trying to create a connection to a local database but I'm having problems.
Currently we use SQL Plus to do work on the local database. With that we don't need to specify a host string we just leave it blank and it connects with no problems. SQL Developer is now requiring a host string, what are we supposed to use?

I added this to the tnsnames.ora to try to help
ORCL.world =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS =     
(COMMUNITY = tcp.world)
(PROTOCOL = TCP)
(Port = 1521)
(CONNECT_DATA = (SID = ORCL)
You want something simpler, more like this.
ORCL.world =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = ORCL)
Trying to connect after that I get an error saying
ORA-12541 TNS no listener.
I made sure the listener service is started but I
don't know what else I need to do with the listener.In a command window, type lsnrctl status. It should show what port the listener is running on and what services it is supporting. You should modify your tnsnames.ora to match
Post the output here if you need more guidance.
Message was edited by:
smitjb

Similar Messages

  • Can't create Connection to Oracle Database

    Hi i'm trying to create a simple connection to my oracle database and my projects compiles, but at the "createConnection" statement an SQLException is thrown.
    Well first of all my stats:
    Windows XP 32 bit
    Visual Studio 2005 (VC++ 8)
    Oracle Database 10g Express Edition Release 10.2.0.1.0
    OCCI
    I have already included the "..\OCI\include" directory to my projects additional include directories, the path to the new OCCI dll's and lib's to my additional library dierctories and i have also included the "oraocci10d.lib" to my additional dependencies for the linker.
    Now here is the code i'm trying to run (it's just the code of an OCCI sample modified to my preferences):
    1 #include <stdlib.h>
    2 #include <occi.h>
    3 #include <iostream>
    4 using namespace oracle::occi;
    5 using namespace std;
    6
    7 int main () {
    8     //create environment and connection
    9     string user = "myUser";
    10     string pw = "myPW";
    11     string db = "localhost:1521/XE";
    12     Environment *env = Environment::createEnvironment(Environment::DEFAULT);
    13     Connection *conn = env->createConnection(user, pw, db);
    14     cout << "Environment and Connection created" << endl;
    15
    16     //execute a SQL statement
    17     Statement *stmt = conn->createStatement();
    18     stmt->setSQL("INSERT into FRUITS (fruit, amt) VALUES ('apple', 10)");
    19     stmt->executeUpdate();
    20     conn->terminateStatement(stmt);
    21
    22     //terminate environment and connection
    23     env->terminateConnection(conn);
    24     Environment::terminateEnvironment(env);
    25     cout << "Environment and Connection terminated" << endl;
    26
    27     return 0;
    28 }
    The code crashes at line 13, where i'm trying to create the connection.
    Visual Studio breaks and is giving the information, that an SQLException occured.
    I looked for the Error code given by the exception and it's 24960.
    Well i've found some threads working around that problem, but nothing worked properly to my problem.
    Can anyone help me out of my problem?
    Addition: I've already debugged the code and the pointer to the environment is good, so this possible cause of the exception (Null-Pointer) is out!
    Thanks for any advice!
    Edited by: [email protected] on 08.06.2010 10:34

    Well i've found a post at a similar thread, where somebody told to try to compile and run the project in release mode.
    Incredibly it works fine, but only for release mode as i told.
    The debug mode is still having the same problem...
    If somebody has an idea how to solve this problem please let me know!
    Thanks, olf77.

  • Creating a new local database

    Hello,
    I am trying to create just a new local database. That is, so that it will reside on my computer.
    The only thing I know is how to connect an existing db and I don't have any DB-related softwares on my computer [just eclipse for java].
    How can I create a new local db?
    Thank you.

    Java doesn't create databases.
    And the creation of a database is specific to the database (and vendor) that you are using.
    Perhaps the real question is that you don't have any databases at all. So you first need to select one.

  • How many users/ schemas can we create in an oracle database?

    How many users can we create in an oracle database? Or how many users can oracle handle?
    Problem-
    I have to store information of ontologies (I will use countries instead) in db.
    I have to store information regarding countries.
    I have 13 tables in all to maintain for each country.
    Now there are two approaches:
    1) keep only 13 tables. Have an extra column in each table to indicate that a particular
    row stores information for which country.
    2) create a new user/ schema for each country. So we can get rid of the extra column
    needed in 1st approach.
    I have used the second approach. This is because number of entries in each table for a
    given country will be large.
    So initially when the s/w is installed I create a central-user. Each time data for new
    country has to be entered central-user creates a user/ schema, and creates tables for
    this user/ schema. The central user can access the tables of all the countries by
    country_name.table_name. By this approach I believe searching would be easy.
    If there is any flaw in my approach kindly mention it.
    Thank you

    There is no (practical at least) limit to the number of users & schemas you can have in Oracle.
    Your approach, however, is not going to scale nearly as well as the first option you outlined (adding a column). You are going to end up caching every possible variation of the various queries you're going to be executing because you will be referring to so many different tables, which is going to mean that you are doing a lot more work to parsing statements and generally churning through the shared pool. If you create enough users, you're liable to start hitting ORA-04030 errors because your shared pool is so fragmented.
    Additionally, you're likely going to end up with a whole lot of dynamically generated SQL to accommodate new schemas getting added over time which is going to cause you even more pain. Figuring out dynamically what table to join in is a heck of a lot more difficult for the programmer to write and for the database to handle than simply passing in a different country code.
    If you're concerned about having too much data, you can have your cake and eat it to by adding the country column and partitioning the tables based on country.
    Justin
    One other item I forgot to mention is maintainability. Having dozens or hundreds of "identical" schemas makes maintenance a huge pain because something like adding a new column now requires dozens or hundreds of separate DDL statements. You're almost guaranteed that some schema isn't going to be in sync-- it's going to miss a column or miss an index, etc.
    Message was edited by:
    Justin Cave

  • Can I create connection pool by oracle oci driver?

    Can I create connection pool by oracle oci driver?My weblogic's version is 6.1 sp2 and oracle is 9.0.1.2.
    I have some trouble with connection pool created by weblogic jDriver.
    I try to read Timestamp from table and I always get the exception.It told me that ORA-00932: inconsistent datatypes.
    So I created another pool by oracle thin driver and everything was right.Then I created other pool by oracle oci driver,but something were wrong. 'Could not create pool connection. The DBMS driver exception was:java.sql.SQLException: ORA-06401: NETCMN:Invalid driver designator'
    The oci pool's parameters are below lines.
    url: jdbc:oracle:oci:@COCO
    Driver Classname: oracle.jdbc.driver.OracleDriver
    Properties: user=scott;password=tiger;protocol=oci
    If I get connection directly,don't use connection pool,I can get right connection.But why didn't I create pool by oci driver?Maybe weblogic7 or weblogic8 will work good?

    Venkat Amirineni wrote:
    Hi Joe,
    I am also trying to create a connection pool using Oracle Oci XA. Weblogic
    type 2 oci threads hanging on native calls and suggested to go for thin drivers.
    But we want to try with Oracle Oci drivers.. Can you please tell us how to
    create a conn pool using Oracle Oci.. Just the driverclass and url is enough
    or need any classpath settings etc..
    Thanks in advance for your quick reply.Hi. As far as driver properties, just use what Oracle says to. Any pool properties
    that we recommend for XA would still apply. Note that Oracle themselves recommends
    the thin driver over their OCI one:
    http://download-west.oracle.com/docs/cd/B14117_01/java.101/b10979.pdf
    Joe

  • Pairing Garmin with BT: Can't create connection: Input/output error

    I'm learning how to use BT in linux.  I have a Garmin and a CE device that has bluetooth capability.  Both are in discovery mode.
    Running "hcitool cc [macaddr]" to pair the Garmin looks promising, the Garmin receives the, well, transaction (what's this called?), and says the passkey is 1234.  However, I press OK on the Garmin, and it shows a second message that the connection failed.  Looking at my PC, I see this in the terminal:
    Can't create connection: Input/output error
    What am I doing wrong?

    Check here. Also have you done a TimeMachine back up?
    http://support.apple.com/kb/TS2570

  • Create Connection to MYSQL database which is on server using Dreamweaver CC

    Hello,
           I created a site using Dreamweaver CC and i have used the FTP server for this. Now i want to connect it to the database that i created on my server with the table. I am unable to figure out what IP address should i provide to connect to the database as my database is not running locally. I have added the screenshot as well. Kindly help me.

    Hi,
    you can't export and improt database simultaneously. like as said Mr. Ben Pleysier.
    Actually it's possible but I would recommend using this method. This method is more confidence. because you have two database file (your pc and  remote server) and we are backed up files at the same time
    you can export and import database manually.
    firstly we export database file at local computer. (This process will be done on the local computer. localhost)
    you can see an examples below images.
    localhost php my admin panel on my pc
    1.
    2.
    We have record database file on the computer.
    and going to remote server php my admin panel. for import to database file.
    Remote Server Php My Admin Panel
    1.
    2.
    I hope I could help.
    bye

  • Can I create a non-Unicode database manually via create database segment

    Hi
    As unicode encode use more bytes than 2-bytes encode (for instance, ZHS16GBK), and XE has the limit with 4GB totally. So, can I create a non-Unicode (for instance, ZHS16GBK) database manually via create database segment? or I just could use unicode?
    Thanks.
    Samuel

    Could you load or paste this scripts? Well, the script is (obviously) a shell script, useless on Windows, unless you have some emulator (CygWin, MKS toolkit or similar). The following is the Sql part :
    sqlplus /nolog <<END
    spool xe_createdb.log
    connect sys/oracle as sysdba
    startup nomount pfile=$filedir/init$ORACLE_SID.ora
    whenever sqlerror exit;
    create database
      maxinstances 1
      maxloghistory 2
      maxlogfiles 16
      maxlogmembers 2
      maxdatafiles 30
    datafile '$filedir/system.dbf'
      size 200M reuse autoextend on next 10M maxsize 600M
      extent management local
    sysaux datafile '$filedir/sysaux.dbf'
      size 10M reuse autoextend on next  10M
    default temporary tablespace temp tempfile '$filedir/temp.dbf'
      size 20M reuse autoextend on next  10M maxsize 500M
    undo tablespace undo datafile '$filedir/undots1.dbf'
      size 50M reuse autoextend on next  5M maxsize 500M
    --character set al32utf8
    character set $dbcharset
    national character set al16utf16
    set time_zone='00:00'
    controlfile reuse
    logfile '$filedir/log1.dbf' size 50m reuse
           , '$filedir/log2.dbf' size 50m reuse
           , '$filedir/log3.dbf' size 50m reuse
    user system identified by oracle
    user sys identified by oracle
    -- create the tablespace for users data
    create tablespace users
      datafile '$filedir/users.dbf'
      size 100M reuse autoextend on next 10M maxsize 5G
      extent management local
    -- install data dictionary views:
    @?/rdbms/admin/catalog.sql
    -- run catblock
    @?/rdbms/admin/catblock
    -- run catproc
    @?/rdbms/admin/catproc
    -- run catoctk
    @?/rdbms/admin/catoctk
    -- run pupbld
    connect system/oracle
    @?/sqlplus/admin/pupbld
    @?/sqlplus/admin/help/hlpbld.sql helpus.sql;
    -- run plustrace
    connect sys/oracle as sysdba
    @?/sqlplus/admin/plustrce
    -- Install context
    @?/ctx/admin/catctx oracle SYSAUX TEMP NOLOCK;
    connect CTXSYS/oracle
    @?/ctx/admin/defaults/dr0defin.sql "AMERICAN"
    -- Install XDB
    connect sys/oracle as sysdba
    @?/rdbms/admin/catqm.sql oracle SYSAUX TEMP;
    connect SYS/oracle as SYSDBA
    @?/rdbms/admin/catxdbj.sql;
    connect SYS/oracle as SYSDBA
    @?/rdbms/admin/catxdbdbca.sql 0 8080;
    connect SYS/oracle as SYSDBA
    begin dbms_xdb.setListenerLocalAccess( l_access => TRUE ); end;
    -- Install Spatial Locator
    connect sys/oracle as sysdba
    create user MDSYS identified by MDSYS account lock;
    @?/md/admin/catmdloc.sql
    create spfile='$filedir/spfile.ora' from pfile
    alter user anonymous account unlock
    disconnect
    -- recompile invalid objects
    connect sys/oracle as sysdba
    begin dbms_workload_repository.modify_snapshot_settings(interval => 0); end;
    begin dbms_scheduler.disable('AUTO_SPACE_ADVISOR_JOB', true); end;
    spool off
    exit
    ENDWords prefixed with $ are OS variables, you have to substitute them with your values.

  • How to connect the local database of Pesonal Oracle From FormBuilder of develope 2000

    I installed developer 2000 with personal Oracle in win95. I opened Oracle Form builder and click connect submenu of File. It prompts for user name, password and Database. I added scott/tiger for user name and password and I do not know what I should add into the database item. I tried to add oracle or Local Database to the database item, but it did not work. I also tried to use system/manager/oracle, but it still did not work.
    Please tell me what should I add to the database item.
    Thanks

    You can use the "Oracle Net 8 assistant", "Oracle Net 8 Easy config" to see if you have the appropriate entry to the server in the local tnsnames.ora file (find it!). I mean that one in the Forms&Reports home, not that one in the Oracle_Home.
    Under local I mean the file tnsnames.ora in your application, not at the Oracle Server - this is a common mistake.
    You have to have there an entry like:
    REKS816.RILA.us =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = bigbluenew.rila.us)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = REKS816)
    It is a bad practice, but you can add such entry using simple text editor. But before that make a copy of tnsnames.ora in order to restore it if you do not succeed.
    After that go to "control panel" and run "services".
    Look at your Oracle_Home_TNSlistener80 process. Stop it! Start it again!
    If you work on Unix find the relevant processes and notions of the Unix OS.
    Joseph Schwertner
    [email protected]

  • SQL SEREVR CONNECTION TO LOCAL DATABASE FAILED ,help!!

    Hai,
           I detached my dev database from sql server 2000 enterprise manager and then i replaced my old data files mdf,ndf and ldf with the new once on the same location. now when i start sql server it is not showing any of databases , i also registered the sql server again and it gives me mesage can't connect to database login failed.
       i think there must be some password at db level which is causing problem.
    if i have to change the old password at this stage what should i do??
    hope i find some solution
    regards
    jase

    Hi,
    you must logon with another user. Use a local admin. Logon on Windows with another local admin and connect to your SQl Server. Once you are connected attach the database again. Then you are able to connect via sidadm again.
    The root cause is, that the default database of the sidadm is detached, so the sidadm cannot log on.
    A second way can be to use the osql.exe tool. Open a command promt and run
    osql -E -dmaster
    This should you connect to the default instance of the server and switch to the master database, Then you can run
    exec sp_defaultdb '<sid>adm','master'
    go
    Then you should be able to logon as sidadm as well.
    regards
      Clas

  • Unable to connect to local database ( without using tnsname )

    hi guys
    i have 2 database running on local machine.
    db1 SID - orcl (install 1st)
    db2 SID - unicode (install later)
    Today i shutdown unicode database and stop its respective services.
    on dos
    i done a sqlplus scott/tiger, i got an error
    ORA-12560: TNS:protocol adapter error
    therefore
    i done a
    set ORACLE_SID=orcl
    and i still get the same error.
    Therefore i done the another way round. I shutdown orcl database, stop its services and STARTED unicode database and its services.
    I have remove the ORACLE_SID enviroment variable.
    Now, i issue in command prompt
    sqlplus scott/tiger
    i am connected to the unicode database!
    Now i shutdown unicode database and startup ORCL database..
    and i issue a
    sqlplus scott/tiger@ORCL..
    I HAVE No problem connecting to it..
    May i know why do i have to provide the TNSname for ORCL database and i do not have to for the UNICODE database..
    Both are local on my database.
    what is wrong ?
    by the way, i am on XP.
    thanks!

    hi paul,
    sorry for the late reply.
    I was out of town this weekend.
    thank you so much for replying..
    Here is my test results.
    inside command prompt
    (started both services - OracleServiceOrcl and OracleServiceUnicode)
    set ORACLE_SID=orcl
    sqlplus / as sysdba;
    sys@orcl> exit
    set ORACLE_SID=unicode
    sqlplus / as sysdba;
    sys@unicode> exit
    Well, if i explicity set the ORACLE_SID, it works..
    So out of curiousity, i done this testing..
    1) connect to both database and shut them down
    2) stop their services
    3) start only ORCL service
    4) close and reopen command prompt to remove the ORACLE_SID enviroment var
    sqlplus / as sysdba;
    Error: ORA-12560: TNS: protocol adapter error
    ok..
    5)now i stop the ORCL service
    6) and i start the UNICODE service
    then i issue
    sqlplus / as sysdba;
    sys@unicode>
    I have got no local or two_Task variable set, i have got no oracle_sid, nor oracle_home environment variable set.
    Any idea paul ?
    Hope to hear your advice.
    Best Regards,
    Noob

  • Can't create a function in database

    The function is :
    create or replace function Xgyh
    (pvc2Czy in varchar2,
    pnumYhid in number,
    pvc2Lfid in varchar2,
    pvc2Grzid in varchar2,
    pvc2Zbmid in varchar2,
    pvc2Bmid in varchar2)
    return number is
    intZxbz integer:=1;--返回值(1:正确,0:错误);
    numDxlb number;
    numGx number;
    begin
    --判断指定用户是否合法
    if pvc2Czy is null then
    intZxbz:=0;
    end if;
    if pnumYhid is not null then
    if pvc2Lfid+pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Lfid is not null then
    if pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Grzid is not null then
    if pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Zbmid is not null then
    if pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Bmid is null then
    intZxbz:=0;
    end if;
    --取当前登陆操作员在数据权限表中权限并判断是否允许更新当前用户
    if intZxbz=1 then
    select t.更新,
    decode(t.对象类别,'用户',0,'楼房',1,'供热站',2,'子部门',3,'部门',4,'集团',5)
    into numGx,numDxlb
    from 系统_数据权限_表 t
    where t.用户=pvc2Czy
    and (t.对象类别,t.对象识别码) in
    (('集团',0),('部门',pvc2Bmid),('子部门',pvc2Zbmid),('供热站',pvc2Grzid),('楼房',pvc2Lfid),('用户',pnumYhid))
    and rownum=1
    order by 2,1;
    end if;
    --返回信息
    return(numGx);
    end Xgyh;
    If get rid of the where condition
    'and (t.对象类别,t.对象识别码) in
    (('集团',0),('部门',pvc2Bmid),('子部门',pvc2Zbmid),('供热站',pvc2Grzid),('楼房',pvc2Lfid),('用户',pnumYhid))',
    this function can be created immediately.
    Thanks for you help!

    I try translating from Chinese to English words including column name and data.
    But, I can't understand the Chinese word Gongrezhan, so this is Pinyin.
    And, I have not analyzed your function, yet.
    Because, I just now must go to Chinese conversation class.
    By the way, it should be that tables and columns named by multibytes is enclosed by double quotation.
    For example,
    select t.更新, -> select t."更新"
    from 系统_数据权限_表 t -> from "系统_数据权限_表" t
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements008.htm#i27561
    create or replace function Xgyh
    (pvc2Czy in varchar2,
      pnumYhid in number,
      pvc2Lfid in varchar2,
      pvc2Grzid in varchar2,
      pvc2Zbmid in varchar2,
      pvc2Bmid in varchar2)
      return number is
      intZxbz integer:=1;-- return value (1:Success, 0:Error)
      numDxlb number;
      numGx number;
    begin
      -- Check whether the assigned user is correct or not
      if pvc2Czy is null then
        intZxbz:=0;
      end if;
      if pnumYhid is not null then
        if pvc2Lfid+pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Lfid is not null then
        if pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Grzid is not null then
        if pvc2Zbmid+pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Zbmid is not null then
        if pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Bmid is null then
        intZxbz:=0;
      end if;
      --Check whether current database entry operator  has priviledge of updating current user. 
      if intZxbz=1 then
        select t."Update",
          decode(t."TargetClass",'User',0,'Bilding',1,'Gongrezhan',2,'Department',3,'Division',4,'Group',5)
          into numGx,numDxlb
          from "System_DatabasePriviledge_Table" t
        where t."User"=pvc2Czy
          and (t."TargetClass",t."TargetID") in
          (('Group',0),('Division',pvc2Bmid),('Department',pvc2Zbmid),('Gongrezhan',pvc2Grzid),('Bilding',pvc2Lfid),('User',pnumYhid))
          and rownum=1
        order by 2,1;
    end if;
      --Return Informations
      return(numGx);
    end Xgyh;

  • Unable to connect to local database... (what hsould i do ?)

    hi guys,
    I am having this error when i startup my LOCAL database. it says
    ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER'
    i revert back everything to very very basic.
    now in my
    LISTENER.ORA
    I have only this.
    # listener.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = szejie)(PORT = 1521))
    IN my TNSNAMES.ORA
    i have got this,
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = szejie)(PORT = 1521)
    IN MY pfile or SPFILE, i have got this
    *.local_listener='LISTENER'
    WHEN I type STARTUP in SQLPLUS, i still got this error
    SYS@orcl on 07-MAR-09> startup
    ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER'
    WILL PMON, automatically register my ORCL service with the the LISTENER ?
    What should i do ?
    Please help thanks.
    Best Regards,
    Noob

    Hello,
    Are you trying to register different port than default port 1521?
    Do this or take local_listener completly out of your pfile and try with out
    Edit your sqlnet.ora and add the value of NAMES.DEFAULT_DOMAIN to the alias in the tnsnames.ora:
    set the domain to "world"
    *sqlnet.ora:*
    NAMES.DEFAULT_DOMAIN=world
    init.ora:
    LOCAL_LISTENER=LISTENER
    In order to resolve this issue with LISTENER, it is necessary to add the domain "world" to the tnsnames.ora file entry
    Or Edit init.ora file and remove loca_listener from it.
    sqlplus "/as sysdba"
    sql> startup nomount pfile='/path_to_pfile/init.ora'; -- it will process all the init.ora parameter and let you know if you have to resolve more
    If successfully processed
    sql> alter database mount;
    sql> alter database open;
    Once successfully opened, then shutdown it down
    sql> shutdown immediate;
    sql> create spfile from pfile='/path_to_pfile/init.ora';
    sql>startup;Regards

  • Can't get connected to the database

    Hi There,
    I am a novice to Oracle. I recently installed Oracle 9i Personal Edition in my PC. I also installed 9i Developer suite, however i'm having problem connecting to the database everytime I run for instance, Form developer, report developer or Desginer. I get A Network dial up box. It ask me which network connection I'd like to use. It seems that the applications offered by the 9i Developer attempt to connect into server and in fact I'm runing the database on my pc not from a remote server.
    I appreciate any help regarding this isssue.
    Thank you
    Ayache.

    Step 1 : If you have several Oracle Homes at your PC you have to choose as primary Oracle Home the Oracle Home belonged to the Oracle Server. Do it so:
    SELECT START> PROGRAMS> Oracle Installation Products> Home Selector
    Step 2: tell me how many databases you have created and what are the SIDs of them.
    Joel Pérez

  • Can i create a ms-access database (very urgent)

    hi folks
    i really need help in creating a ms-access database, i searched the forums but i couldnot find any answers.
    i really appreciate if anyone can tell how to create a ms-access database

    hi folks
    i really need help in creating a ms-access database, i
    searched the forums but i couldnot find any answers.
    i really appreciate if anyone can tell how to create a
    ms-access databaseIn java, the actual mdb file? You can't.
    The best you can do is create an empty mdb file and copy each time you need to create a new one.

Maybe you are looking for

  • Infinity HH5 keeps rebooting multiple times a day

    Hello. I have had normal broadband on the HomeHub3 with no problems for 3 years, BUT I upgraded to Infinity (with HomeHub5) 10 days ago. Ever since I have been on Infinity and the HomeHub5 I get multiple connection problems a day (HH5 goes orange, th

  • Simple Providers with FeedSync

    Hi, I need to generate an ATOM feed using FeedSync using the class FeedProducer, its first parameter is a KnowledgeSyncProvider but I am using an AnchorEnumerationSimpleSyncProvider as my provider which do not inherit from KnowledgeSyncProvider. Do i

  • Exchange 2007 size limits

    Is there a Mailbox and DB size limit in Exchange 2007 ? If so what are they ? PatBoySlim

  • MacBook Pro (Early 2011) No Wifi Hardware Installed

    Please help me! I'm confused. My 13" MacBook Pro (Early 2011) Keeps saying that No WIFI Hardware is installed. My Mac has been running great until earlier this week. I turned it off one night before bed and then the next morning as I switched it on,

  • Duplex printing using Adobe Reader XI, v11.0.04

    I am using Adobe Reader XI, v11.0.04 on my MacBook Air (IOS 10.9 (13A603) Mavericks.  When I go to print out a document there is no option for duplex (two sided) printing.  I get a message that says this is a property of the operating system and upon