Database Identification - but not on a network

I am installing oracle 9i on my computer and I do not know what to enter for the
Global Database Name:
or
Oracle System Identifier (SID):
I am not on a local network so their is no domain....
Any suggestions??
Thanks!

My question, more specifically, is if the
global database identification consists of the database_name and the network_domain, what do I put for the network_domain since I am not on a network....
I am getting an error involving the TNSCSNR.exe file upon installation and if I proceed anyway I get an error when I try to log into the DB that says "ORA-1245: TNS:no listner". I think these are related and I am wondering if it has to do with what I put for the global database name... the last thing I tried was prac.localhost
I really appreciate any help!

Similar Messages

  • Cisco vpn 5.0.07.0440-k9 connected but not access remote network from Windows 8.1 pro

    I am using Cisco vpn 5.0.07.0440-k9 and Cisco vpn 5.0.07.0290-k9 both version on our windows 8.1 pro laptop.
    VPN successfully connected but not access remote network and not getting ping. 
    But when i am try through wifi then vpn good work.
    Please help me as soon as possible.
    Thanks
    Sanjib

    Hello Karthik,
    I am using "MTS usb wifi" device and connect vpn through wifi Its working good the same win8.1 pro. But when i am try to connect VPN through LAN/Wired or USB modem (Like: Vodafone,MTS and others) its not working.
    I am using Easy vpn on Cisco RV325 router in our office. Same VPN client is very good working in Windows 7 SP1 and Windows XP SP3.
    Thanks
    Sanjib

  • Renaming datafiles in control files with database mounted but not open

    Hi,
    I moved a database (physical files) from one server to another. I need to modify the contents of the control files since the directory structure of the servers are not the same (and I can't change that).
    I know I can use ALTER DATABASE BACKUP CONTROLFILE TO TRACE to produce a script that I can than modify and run with the instance started, database mounted but not open, and that will recreate the control files. I don't want to do that.
    I was also told I can modify the datafile entries in the control files by starting the instance, mounting but not opening the database. Then I can issue the (this is the part I need help with) ALTER DATABASE RENAME FILE <file1> to <file2>. When I tried this it complains that <file1> is not found. Obviously the command I used is not the right one,,, what is the right command for what I want to do.
    Thanks,
    Gabriel

    Move all datafiles from one directory to an other without recreate controlfile :
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102C\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102C\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> create pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora' from spfile;
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.Here, I move all datafiles mentionned above, and modify my pfile for new controlfile directory. Then :
    SYS@DEMO102> startup pfile=E:\oracle\admin\DEMO102\pfile\pfile102.ora
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted. --Note that we are in mount state
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF'
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\USERS01.DBF' to 'E:\ORACLE\ORADATA\demo102\USERS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSAUX01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSAUX01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\UNDOTBS01.DBF' to 'E:\ORACLE\ORADATA\demo102\UNDOTBS01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\SYSTEM\SYSTEM01.DBF' to 'E:\ORACLE\ORADATA\demo102\SYSTEM\SYSTEM01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\EXAMPLE01.DBF' to 'E:\ORACLE\ORADATA\demo102\EXAMPLE01.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_1.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_1.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TBS102_2.DBF' to 'E:\ORACLE\ORADATA\demo102\TBS102_2.DBF';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO01.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO01.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO02.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO02.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\REDO03.LOG' to 'E:\ORACLE\ORADATA\demo102\REDO03.LOG';
    Database altered.
    SYS@DEMO102> alter database rename file 'E:\ORACLE\ORADATA\DEMO102C\TEMP01.DBF' to 'E:\ORACLE\ORADATA\demo102\TEMP01.DBF';
    Database altered.
    SYS@DEMO102> alter database open;
    Database altered.
    SYS@DEMO102> create spfile from pfile='E:\oracle\admin\DEMO102\pfile\pfile102.ora';
    File created.
    SYS@DEMO102> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SYS@DEMO102> startup
    ORACLE instance started.
    Total System Global Area  272629760 bytes
    Fixed Size                  1288940 bytes
    Variable Size             163579156 bytes
    Database Buffers          100663296 bytes
    Redo Buffers                7098368 bytes
    Database mounted.
    Database opened.
    SYS@DEMO102> select file_name from dba_data_files
      2  union
      3  select member from v$logfile
      4  union
      5  select file_name from dba_temp_files
      6  union
      7  select name from v$controlfile;
    FILE_NAME
    E:\ORACLE\ORADATA\DEMO102\CONTROL01.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL02.CTL
    E:\ORACLE\ORADATA\DEMO102\CONTROL03.CTL
    E:\ORACLE\ORADATA\DEMO102\EXAMPLE01.DBF
    E:\ORACLE\ORADATA\DEMO102\REDO01.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO02.LOG
    E:\ORACLE\ORADATA\DEMO102\REDO03.LOG
    E:\ORACLE\ORADATA\DEMO102\SYSAUX01.DBF
    E:\ORACLE\ORADATA\DEMO102\SYSTEM\SYSTEM01.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_1.DBF
    E:\ORACLE\ORADATA\DEMO102\TBS102_2.DBF
    E:\ORACLE\ORADATA\DEMO102\TEMP01.DBF
    E:\ORACLE\ORADATA\DEMO102\UNDOTBS01.DBF
    E:\ORACLE\ORADATA\DEMO102\USERS01.DBF
    14 rows selected.
    SYS@DEMO102> Nicolas.

  • Bought an ipad 2 for christmas but it won't connect to my wireless. My modem/router is an Arris 653 B eurospec DOCSIS. The wifi works on an unsecured network I have in the bldg but not my own network. Anyone have any suggestions?

    Bought an ipad 2 for christmas but it won't connect to my wireless. My modem/router is an Arris 653 B eurospec DOCSIS. The wifi works on an unsecured network I have in the bldg but not my own network. Anyone have any suggestions?

    I'm not familiar with your router but are there any buttons on the front or back of it because sometimes you need to pair the router in order for your PC, laptop, phone or iPad to connect wirelessly with it?
    From the routers I have used there are normally two buttons on the front or back (apart from the power button), pressing one of them allows you a few minutes to enter the required password on your iPad. Best look at the instructions for the router.

  • Is it possible to connect an iMac to the internet but not to the network?

    Hello,
    I volunteered to purchase an iMac for our company. This huge company maintains a huge windows-only network environment and IT does not support any macs (nor do they want to have them on the network).
    Hence, since we really need this machine to be a mac and not a PC I had to promise to set it up as a stand-alone machine and to get anti-virus protection (as users will be coming in with their jump drives etc). At least for the latter reason (regular updates of virus definitions must be possible) we'd like to have it connected to the internet.
    How would I escape the dilemma that as soon as I'd hook it up via ethernet, it would of course get internet but at the same time would see all other machines on the network? (it will sure do so as I had tried it out with some other machine running on the same OS)
    Is there a way to configure Snow Leopard to allow for internet but not network access?
    Does it make sense at all (for security reasons that is)?
    thank you very much,
    HD

    Is there a way to configure Snow Leopard to allow for internet but not network access?
    Well, 'internet' is 'network access' so at one level your question makes no sense.
    If, on the other hand, what you want to do is segregate your Mac from the other machines then that's a different issue. There are numerous ways of doing that, but most would involve some level of interaction with the network administrators. Given their ana^H^H^H attitude towards Macs that may be an issue.
    The best way would be to setup a separate VLAN for the Mac. This will create a separate logical network within the company network with only this Mac and the network router in it. No PC would see the Mac, and the Mac wouldn't be scarred by seeing all those PCs. This cannot be done without buy-in from the network admins, though.
    A step down from that would be to use one PC in the network as a gateway to the rest of the network. The Mac would talk to this PC, and the PC would pass the data out to the rest of the network. This would require admin rights on the PC, though, which you may or may not have (I've seen a lot of corporate networks… :: shudder ::)
    The last option would be to setup an entirely separate internet connection for the Mac but there are logistical issues there, too.
    My advice: Buy a dozen Krispy Kremes for the network guys and sweet talk them into building you a VLAN.

  • Can connect to router but not ad hoc network. Works fine with iPhone.

    My brand new ipad on ios 3.2.2 connects fine to my router and my jailbroken iphone running Mywi. However, I cant connect to an ad hoc network set up on my laptop running vista. My iphone connects to the ad hoc without any problems. I've tried everything, static ips, wep, wpa, hard resets, restoring, resetting network settings but no go. How can' everything else be fine but not connecting to the ad hoc network, especially since it works fine to connect with the iphone?
    Btw, the ad hoc is for controlling music software on the laptop through wifi. It's not for getting internet.
    Can anyone shed some light on this?
    Many thanks,
    L

    Hi and welcome to the Apple Discussions.
    Did you try doing a search, upper right corner of this window, on remote control? There have been a number of discussions during the last two weeks about remote control problems.
    There have also been discussions about networking an iPad via another computer, such as iMac or MacBook Pro, using the computer's wireless card rather than a router.
    See if one of those will answer your question.

  • Copy database structure but not the data

    I'm looking to create a new version of a database but with completely reloaded data - so I want to retain the database structure but none of the data.
    Is there an easy way (read: without a DBA on staff) to copy an existing database structure - preferably with views and stored procedures - and not take the data along for the ride?
    Thanks in advance for suggestions...!

    My mistake Judith.
    Using Object Explorer, [Right Click] on the database,
    Select [Tasks],
    Then [Generate Scripts...]
    On the first screen, check the 'Script all objects' checkbox.
    You can either save to a file or into a window. When the scripts are finished, go to the top and change the name of the database, then run the scripts.
    That 'should' get you what you want.

  • 11g on Win2k8R2 - ORA-12560 - Database up but not reachable

    Hello,
    i've got a serious issue with a production database which affects about 500 users. I already created a SR but by now i got no answer and i thought maybe someone here got an idea.
    What i did:
    - Installed Windows Updates via WSUS Offline
    - Rebooted the machine
    What works:
    - Database can be opened without a problem via sqlplus or "oradim -startup -sid xxx"
    - "tnsping xxx" works
    - listener can be started via "lsnrctl start" and shows a handler for xxx
    What does not work:
    - listener can NOT alternativel be started via "srvctl start listener" (PRCR-1079: Ressource ora.LISTENER.lsnr could not be started, CRS-5016, CRS-2674
    - database is not reachable via sql developer - not from my work client and not locally from the server itself
    - enterprise manager is extremely slow and gets timeouts (i can't login) when the database is open, when i shutdown the db em is really fast
    - alertlog is full of "Fatal NI connect error 12560 [...] opiodr aborting proccess unknown ospid (6696) as a result of ORA-609)
    What i tried to resolve the issue:
    - Uninstalled all Windows Updates which i installed -> no effect
    - rebooted the machine -> no effect
    - tried to start listener before the database or database before listener -> no effect
    - checked local_listener parameter which is automatically set by system when starting the database, also set by myself -> no effect
    - disabled windows firewall and antivirus -> no effect
    The thing is, that i just rebooted the machine and the database is perfectly up but not reachable. I really don't know if it's a good idea to change tns files etc. because it worked before the reboot.
    Anyone got an idea?
    Thank you very much!

    which OS user owns the grid software?
    which OS user owns the asm software?
    which OS user owns the Oracle DB software?
    Do you mean the windows service? I installed the database and grid software with the user oracle (with administrator privileges).
    The services are all owned by "local system", besides OracleOraCrs11g_home1TNSListener and OracleServiceSID (they are owned by ./oracle)
    which %ORACLE_HOME% is being used to start the listener?
    ORACLE_HOME=C:\app\oracle\product\11.2.0\grid
    what does %PATH% contain when invoking lsnrctl & similar utilities?
    Path=c:\app\oracle\product\11.2.0\dbname_1\bin;C:\app\oracle\product\11.2.0\grid\bin;[other windows paths]
    which OS user is logged onto the DB trying to start the listener & such?
    user "oracle" with administrative privileges, i used a command line started as administrator

  • Email - ok on wifi but not on mobile network

    On my iPhone I've got my dot mac.com email account plus a separate btinternet.com account. Both work fine receiving and sending emails when connected via wi-fi but the btinternet one will receive but not send when connected via Vodafone mobile network. Any ideas what is set up wrongly - presumably if the smtp setting was wrong it wouldn't send ok via wi-fi?

    All the menus are image maps. Three out of four work.
    My div text menu on  top of an image gave me similar problems.

  • HT1218 Airport Extreme base station is working, but not visible on network?

    My Airport Extreme base station is working:  all devices are able to connect to the internet, but Airport Utility shows no connection.  Only one computer even shows the device-- greyed out-- saying "Device not Found."  The airport utility shows version 6.2;  OS X version 10.8.3.  How do I update the base station to version 7 if the device can't be found?  And how do the devices connect to the internet without "seeing" the device? 

    Thanks for checking. This model should be visible in AirPort Utility in Mountain Lion.
    If you have not already done so, I suggest that you perform a complete power cycle on the entire network as folllows:
    Power off every network device....in any order you want
    Wait a minute or two
    Start the modem first, and let it run a few minutes by itself
    Start the AirPort Extreme next, the same way
    Continue starting devices one at a time about a minute apart until everything is powered back up
    Check the network again using AirPort Utility
    You can also temporarily connect an Ethernet cable from your Mac to one of the LAN <-> ports on the AirPort Extreme to see if a connection is established that way.
    If still no luck, try another Mac if you one handy. After that, all that I can suggest is that you perform a Factory Default Reset on the AirPort Extreme and configure it again.

  • Can print via usb, but not via wireless network

    My new MacBook Pro prints to my Epson RX500 when the printer is connected via USB to the MBP. However, when the the printer is connected by USB to my desktop PC running XP, the MBP does not print to it. I can see disks and transfer files wirelessly among desktop PC, laptop PC & MBP. The MBP finds the RX500 on the network, and has a driver for it. I can set it as the Mac's default printer. When I print, say from OpenOffice or TextEdit, the dialogs seem ok. Sometimes I see the print queue icon wink in and out on the dock. But the document doesn't get printed. The desktop says the printer is shared, and I can print over the wireless network from my PC laptop running XP.
    One of the Apple troubleshooting pages suggests that I should have the same driver version on my XP desktop and my Snow Leopard MBP. I don't know how to tell what version the PC is running.
    Any suggestions?

    Just to be sure - you know that you can't use Epson's "USB-only" driver for printing to a Windows-shared printer?
    You must use the Gutenprint driver - that's why Apple included the Gutenprint drivers in OS X.
    Updates for Gutenprint:
    http://gimp-print.sourceforge.net/MacOSX.php

  • WRT54GS ... Can connect to Internet but not to my network

    I have three desktop computers wired to the router and a laptop that I connect using wireless. One of my computers went to the shop. Now, I can't get it to connect to the network, but I can access the Internet with a browser and with an FTP Client. The other computers still talk to each other fine. I reconfigured the problem desktop but no joy. Note that I cannot access the router at 192.168.1.1 from any computer. I unplugged the router for 30 seconds and replugged it... with no change. What's my next step? Thanks in advance for any help. New info. I can access the router by using Internet Explorer. And There is no light on the front panel indicating that the problem computer is connected ... even though I'm accessing the modem/Internet with it.
    Message Edited by KGP on 09-11-2008 11:31 PM

    Lower down the Ethernet Adapter card speed from Auto to 10 Half Duplex ...
    Also change the cable or the port in the routers back side ....
    See if light is present on one ....

  • OWB-Location for Sybase is defined through database link but not working.

    Hi,
    HS details are configured and database link from oracle to sybase database is working fine. In OWB, table list of sybase database is also displayed. Location defined for sybase database through connector which refers to database link created from oracle to sybase. While defining location on clicking of "Test" it gives result as successful. But when validation program is run for that location, it gives error that validation failed, specify correct host name, port number etc.. now, i am not able to solve this as database link is working fine and it is displaying list of table from sybase database. All the heterogeneous settings are done. I tried but sybase database doesn't allow direct connectivity so i define the location using connector which points to database link. Is there any thing missing in the setting of HS and do sybase allow connectivity direct from owb ?
    Please help.
    (If problem is not clear, please spare time to ask a question, i will reply immediately.)
    With Regards,
    Amit Shah.

    Amit - did you get anywhere on this?

  • Delete L.H.S spaces from field in database table but not for Report

    Dear Experts
    I m facing a problem...actaually i have replaced 999 by blank in a field of database table record.
    Like :     999 abcde
                 999999 hjklmn
                 9999 klplmj
                 99999 hjsfhh
    I have replaced 9 by blank. and using CONDENSE statement i have avoid the left hand side spaces of 9 in the database table.
    Means the data is updated in database table following below using Condense.
    Like:     abcde
                hjklmn
                klplmj
                hjsfhh
    Now,  the problem is that these spaces is showing in the Report. The left hand side spaces is not deleting from the Report. But these spaces is not showing in the databse table.
    Plz tell me wat is the reason and wat is the solution to avoid these space from the Report.
    Note: That field is Character Field.   KNA1-STRAS
    Thanks and Regards,
    Swapnika

    Hello
    Try to use
    SHIFT c LEFT  DELETING LEADING SPACE.
    instead of
    CONDENSE...

  • Bought a new pay as you go sim, but not registering to network

    Hi there, I just bought a new pay as you go EE sim card, when I insert it to my phone, the signal bar shows that it is picking up network signals, however, it is not registering to the network.  I am unable to make any calls or send any texts.  Please advise.

    Burge wrote:
    Have you go credit on the account? Have you tried rebooting the device. I bought a 10 pounds credit voucher, but i'm unable to call 150 or place any other calls.  Also, i've rebooted my phone several times and tried removing the sim and inserting it back again...no luck.

Maybe you are looking for

  • Berkeley DB XML crash with multiple readers (dbxml-2.5.16 and db-4.8.26)

    I am using Berkeley DB XML (v. 2.5.16 and the bundled underlying Berkeley DB 4.8.26, which I suppose is now fairly old) to manage an XML database which is read by a large number (order 100) of independent worker processes communicating via MPI. These

  • ITunes 10.5.2 will not let me add files to my iTunes library. What do I do?

    Hello, Ever since I downloaded iTunes 10.5.2, I have been unable to add music files to my iTunes library. Whenever I am browsing for the file and double-click it, I am immediately given the "This program has stopped working... Trying to find a soluti

  • What is the best online cloud backup?

    I've had carbonate when I had windows laptops, now I'm new to mac and want to back up all of my documents, particularly photos. I've heard about problems restoring photos when using carbonate on a mac. I'm prepared to pay but I need a cloud backup se

  • Embedding XE in Application. Please Help

    Hi. I have developed an application and also have created the setup using Installshield. I want to embed Oracle XE as a part of the application installation procedure.I would like to understand and know the following things 1) After installing the ap

  • Who supports the Z3v? How to submit bug reports?

    I love my Z3v, but I've encountered some significant bugs with the firmware and the software. What is the best way to submit a bug report and/or feature request?  For that matter, who officially supports the phone?  I tried reporting a firmware bug t