Why this Behaviour?

Hi,
I'm running Oracle 8.1 on Win XP professional (SP2). Test DB. Yes olderone.thats why TEST/R&D DB.
I've authentication mechanism by Password file.
i just logged on SQL*Plus ( Ver. 8.1). i see below weird bahaviour..
==========================================
SQL*Plus: Release 8.1.7.0.0 - Production on Wed Sep 17 10:10:55 2008
(c) Copyright 2000 Oracle Corporation.  All rights reserved.
SQL> conn / as sysdba
ERROR:
ORA-01031: insufficient privileges
SQL> Rem GOOd
SQL> conn sys as sysdba                                                   -------------Why not here?
Enter password: ********
ERROR:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
SQL> conn sys as sysdba                                              -------------Why not here?
Enter password: ********
ERROR:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
SQL> conn sys as sysdba                                                -------------Why not here?
Enter password: ********
ERROR:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
SQL> conn sys/****** as sysdba                                   -------------Why here?
Connected to an idle instance.
SQL> startup open
ORACLE instance started.
Total System Global Area  109680668 bytes
Fixed Size                    75804 bytes
Variable Size              30957568 bytes
Database Buffers           78569472 bytes
Redo Buffers                  77824 bytes
Database mounted.
Database opened.
SQL> select * from V$version;
BANNER
Oracle8i Release 8.1.7.0.0 - Production
PL/SQL Release 8.1.7.0.0 - Production
CORE    8.1.7.0.0       Production
TNS for 32-bit Windows: Version 8.1.7.0.0 - Production
NLSRTL Version 3.4.1.0.0 - Production
SQL>
=================================================Regards!

Hi,
Sorry for the late reply.
Since the User is a Remote User Treated and done the Authentication on System (Local System) but the >>password
did not match up with the Orapwd password when you have perform some instructions on DB.
So the Error raised.what do you mean by this?
so how did it allowed me to connect.
my password was correct.
here i try giving wrong password it & see it doesn't allow me...
SQL> conn sys as sysdba
Enter password: **********
ERROR:
ORA-01017: invalid username/password; logon denied
SQL> conn sys/hjdshfkj as sysdba
ERROR:
ORA-01017: invalid username/password; logon denied
SQL> @Maran
yes my password is correct.
as I've told previously, i've used password file connection mechanism only.
@Aman
you disbaled OS authentication with sqlnet.authentication_services=NONE and throwing away ORa_dba group.So >>you are bound to give right username and password otherwise my password is correct.
Regards!

Similar Messages

  • Why this behaviour 32/64 bits installer jdk/jre behaviour

    Dear members
    usally i work with jdk 1.5 update 12
    so in this link
    http://java.sun.com/products/archive/j2se/5.0_12/index.html
    for my 32 bits pc machine
    i download this file
    Windows Platform - Java Development Kit 5.0 Update 12
    Windows Offline Installation, Multi-language      jdk-1_5_0_12-windows-i586-p.exe     51.33 MBsee the size of the installer 51.33Mb
    with this unique .exe installer i can install in peace the jdk and jre (how adition by default)
    now for 64 bits
    Windows x64 Platform - Java Development Kit 5.0 Update 12
    Windows x64 executable (use 32-bit version for applet and Java Web Start support)      jdk-1_5_0_12-windows-amd64.exe     32.96 MBsee the size file 32.96mb
    well with this i can only install the jdk but not the jre like the installer 32 bits case
    i must download apart the jre for 64 bits
    is normal this behaviour???
    thanks in advanced

    Hello jschell
    thanks for the reply
    >
    So if you are asking if you missed something then the answer is no - you need both pieces
    >
    sorry for my ignorance, but why for 32 bits i can download apart the jre if this coming by default with the jdk installer for 32 bits?
    i guess that some reason is for production enviroment
    regards

  • When i download files , they go into subfolders such as "000000000002" within downloads, why is this behaviour and is this a bug?

    When i download files , they go into subfolders such as "000000000002" within downloads, why is this behaviour and is this a bug?

    Thanks Eric, Most files i download is from a  incident management application developed from my employer.  i use that all day long. I think you are partially correct, The application that i use may be creating these subfolders and using to put files into that.
    I will update this thread if i see that some other standard applications like safari / Mail are downloading into subfolders.
    Is some one else facing this issue??  

  • Why this "!" char appears in my string?

    Hi,
    i've noticed a quite strange beahviour in my application.
    there's a form composing an email to send. in this form there's an hidden item called BODY and its source attribute is:
    You can access the document from the following link:
    <table bgcolor=gold border="0" width="30%"><tr ALIGN="center"><td><b>Get the document here</b></td></table>
    when i receive the email with my mail program i correctly find the string "You can access..." with the link to the document BUT, sometimes, i find a "!" character in the link.
    this happens when the document name is very long or if i put some other characters (blank for instance) before the link.
    it seems as if after a certain length, apex put the "!" char in the string.
    anybody knows why and how can i avoid this behaviour?
    thanks a lot,
    matte

    Hi, i've noticed a quite strange beahviour in my application.<br>
    there's a form composing an email to send. in this form there's an hidden item called BODY and its source attribute is: <br><br> <i>
    You can access the document from the following link: <table bgcolor=gold border="0" width="30%"><tr ALIGN="center"><td>Get the document here</td></table> </i>
    <br> <br>
    when i receive the email with my mail program i correctly find the string "You can access..." with the link to the document BUT, sometimes, i find a "!" character in the link. <br>
    this happens when the document name is very long or if i put some other characters (blank for instance) before the link. <br>
    it seems as if after a certain length, apex put the "!" char in the string. <br>
    anybody knows why and how can i avoid this behaviour? <br>
    thanks a lot, matte

  • Why this way?

    It seems like in every book I read, events are handled the same way. An inner class is created that implements the ActionListener (or any other listener) interface, and it is registered with a call to addActionListener(new MyActionListener()); Or an anonymous inner class--the point is, a new object is created to be the listener.
    It seems more natural to me to simply call addActionListener(this); in the constructor for a class that has to interact with the user, and add a couple functions to the class to handle events. Why is this not done?
    thanks

    The primary reason for this behaviour is to follow the OO paradigm in as strict a fashion as possible. Following your suggested method violates the paradigm in that two or more (let's say n) components that require the handling of ActionEvents will imply that the handler (since there is only one) will have to distinguish between the source of the event using n if statements. This is considered poor and a direct violation of OO principles. As soon as you write long (the definition of "long" in this context is debatable - let's say '4') if/else statements, you should always ask yourself why you are not using polymorphism to solve the problem (and why you are taking a "functional/procedural" approach).
    Personally, I prefer using anonymous inner classes because I don't want to think up a name for the event handler class (because quite often the name doesn't quite fit in well). i.e. Thinking of a class name for each component that requires (ActionEvent) event handling would be tiresome.
    The other suggested method of providing a single (named or anonymous) inner class that handles events from all required components is considered as poor a solution as the initially suggested one (and for the same reason).
    I suggest you also read books on OO principles and how they may be applied in the Java programming language (as well as your swing texts).
    Good luck.
    Tony Morris
    Sun Certified Programmer for the Java 2 Platform
    Software Engineer, IBM

  • I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

    I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

    I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

  • My Macbook pro is rejecting my Iphone 5 charger. When ever I plug it in it says that the usb is taking to much power, yet when i plug in a different Iphone 5 charger it works fine. I'm just wondering why this is happening and how to fix it?

    My Macbook pro is rejecting my Iphone 5 charger. When ever I plug it in it says that the usb is taking to much power, yet when i plug in a different Iphone 5 charger it works fine. I'm just wondering why this is happening and how to fix it?

    My Macbook pro is rejecting my Iphone 5 charger
    Do you actually mean the white cable with a lightning plug on one end and a USB on other
    If so that is not the charger ,that is the cable
    The charger is the device that plugs into the mains socket
    If so
    cable may be faulty if less than 12 months old take it to Apple Store genius bar for checking

  • Not Sure why this is not working

    hi all,
    Version details :
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE     11.2.0.2.0     Production"
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Select * From Dual
    Where 'A' In (Decode( 'A','A','''A'''
      ||','
      ||'''B''','C','C'));
    Result :
       no rows
    Select * From Dual
    Where 'C' In (Decode( 'C','A','''A'''
      ||','
      ||'''B''','C','C'));
    Result :
    Dummy
       XPlease let me know why this is working like this ..
    Problem:
    When the input is 'A' then condition should be 'A' in ('A','B')
    When the input is 'C' then condition should be 'C' in ('C')
    Thanks,
    P Prakash
    Edited by: prakash on Feb 4, 2013 10:41 PM

    Your first query
    Select * From Dual Where 'A' In (Decode( 'A','A','''A'''||','||'''B''','C','C'));This would be evalueated like this
    select * from dual where 'A' = '''A'''||','||'''B'''And your second query
    Select * From Dual Where 'C' In (Decode( 'C','A','''A'''||','||'''B''','C','C'));Thiw would be evaluated like this
    select * from dual where 'C' = 'C'You cannot pass value for IN operater as comma seperated string. The entire string will be passed as a single value. Each value in an in operator is a seperate variable and need to be passed sperately.
    select * from dual where 'A' in ('A', 'B') is not the same as
    select * from dual where 'A' in ('''A'''||','||'''B''')

  • In my Macbook Pro, on a few occassions, the apple menu bar blacks out. its displayed as a negative image. The desktop wallpaper get greyed out and i get a blank screen as wallpaper. No idea why this happens. I reset the system and issue gets resolved.

    In my Macbook Pro, on a few occassions, the apple menu bar blacks out. its displayed as a negative image. The desktop wallpaper get greyed out and i get a blank screen as wallpaper. No idea why this happens. I reset the system and issue gets resolved.

    AshwinVC wrote:
    I reset the system and issue gets resolved.
    How? 

  • Why this new version of iTunes doesn't have Album Art or It didn't show up?

    Why this new version of iTunes doesn't have Album Art or It didn't show up?
    Also, in my iPod Touch 4th, it erase all album art from my iPod, then i tried to put again a new Album Art, ...download again from the image sites and still ...it didn't show up.? What a waste!
    I waste all my time to set all album art on my iPod, then it just gone. kindly pls fix this issue. hate this new version of iTunes, so complicated.
    The first thing i saw after i install new version of iTunes, it showed only music files. I don't know where to look for the old version of Sidebar. I keep on trying to look for it where I can see or any sign off button just to show up this stupid SideBar. Also, why i couldn't find? The "Menu Bar" is also hide!
    Until i found out in "View" tab. Then i saw the Show Sidebar. Question? why do you need to hide that Side Bar? For what?. it is so so so complicated specially to those people who can't relate for this. (Also the button (from previous iTunes) to show the Album Art, now it's gone. I check every Tab, but there's no way to see the Album Art.)
    Another comment. I download also some of my songs to my iPod, I wasted my time to collect all of my favorite music files. Also some are came from CD's and friends. I had all that favorite music in my iPod. Then the version iOS 5.+ came then I updated my iPod, another options to save files (iCloud) but I think there are something that I MISS about updating my iPod. Then suddenly I checked my iPod... all music (with Album Arts) are gone. All Apps are Gone. Videos as well.
    If you don't know how to use that iCloud (with only 5GB storage), you'll gonna miss/lost everything.
    Then I start all over again, i still have my BACK UP, good to have that. Now it's all set until I update the latest iOS 6. And another version of iTunes.
    Then I realized my computer getting slow. I uninstalled it. My laptop started to work fast again. Then I download again the iTunes. So now I know, it has the ability to slow my computer. Everytime I turn on my iTunes, it hang. (Not Responding). Solution... CTRL+ALT+DELETE. Then every second time to open the iTunes, and it works. (it means, to open iTunes, need twice)
    Then suddenly my laptop is not working. All my files has been corrupted. My Hard drive doesn't work properly. Now I don't have any stupid BACK UPs. My music files usage is 18 GB, only contacts, documents, notes, or some other files that can only fit to your "iCloud" not my 18GB music files and other photos. Your solution is to BUY more storage. Another COST! Another wasting time to set everything then need to pay more?
    If you let your unit (iPod,iPhone,iPad) to export music to PC, or any mini SDcard to use as storage, it won't happen.
    There is another....
    It has Bluetooth, right?
    Use less! Doesn't work. There's no way to use it.
    All I need is to install an application to use your bluetooth. (for same unit or Apple unit only). And pictures only can send via Bluetooth if you an application.
    Even if you go to "Photos" check if there's a way to send pictures? there is no way to send via Bluetooth, even Photos, Songs.etc. It can't even share some other friends (even they have own iPad, iPod, iPhone or same products) who has a unit with Bluetooth.
    And the last.. only one port. there's no way to watch videos through HDMI. No HDMI port, no SD or any card slot. Must to buy their products.
    Very costly!
    I know (like iPod) it's very friendly to use it, but you  must spend more money first before it can use.

    Yes, the old album art view is gone, bu you can see the album art for a song that's playing by clicking on the art image and it will open a bigger view.
    Everything else in your post is a waste. I'm not going to spend time reading it. If - and I repeat if, you have a question on how to get the best out of the new look iTunes, post it. But don't spend your time in long rambling negative rants.

  • Dear Ms. Qaya Ltfabh help me. I do not know why this is a problem that has been part of Russian Tvlbarmn(mozila firefox). What I Brgrdvnmsh Vnmydvnm again in En

    Dear Ms. Qaya Ltfabh help me. I do not know why this is a problem that has been part of Russian Tvlbarmn. What I Brgrdvnmsh Vnmydvnm again in English. Bkhvahydmytvnm send a screenshot if I tell you to see exactly my problem. Thank you
    I also say that in English I dont know if Nmdarm Mykhvahydbh help me help in the form of a video file or image...Anglysym your friends know I'm so weak, so therefore the description Vsvalattvn noticed something. If you have software that will solve my problem please let me download it, I probably am

    I don't understand what question you are trying to ask. Can you restate the question?

  • My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    I have worked my way through the assistant and nothing works. I have tried connecting in disc mode but although the screen on the ipod is showing that the device is charged and that it is in disc mode as soon as I connect it to the computer it comes up with the error message 'please wait very low battery' and stays like that until I disconnect when it appears to be OK again. I have tried on both pc and mac.
    BTW the ipod is an ipod video not classic if that makes any difference.
    Thanks

  • When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?

    When I compose an email in either gmail or yahoo, the cursor lags behind for about 2 seconds. This does not happen when I compose an email with Safari or Chrome. I am using a Mac with Firefox version 3.6.3. Any idea why this happens?
    == This happened ==
    Every time Firefox opened

    try
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • How can you expect the customer to have a LOCAL/COUNTRY Based Credit Card every where we go??? Last week I was on holiday in HK,  and  from my Hotel I was able to use m VN Credit Card with my Apple ID and purchase online!  Why THIS WEEK, can't I use my HS

    Apple_ID_card_declined_for_this_country
    How can you expect the customer to have a LOCAL/COUNTRY Based Credit Card every where we go???
    Last week I was on holiday in HK,
    and
    from my Hotel I was able to use m VN Credit Card with my Apple ID and purchase online!
    Why THIS WEEK, can't I use my HSBC Platinum Credit Card from Vietnam,
    for my Singapore Apple ID account ,
    while working here in Vietnam???

    Unfortunately, this is a problem that is driven by the DRM Dictatorship.  Despite the proliferation of mobile devices and the fact that there are many of us who do a lot of international travel, content providers don't want you to have access to their products outside of your homeland.  The Balkanized mentality of the DRM Dictatorship is way out of touch with the modern world.
    At least Apple, to its credit, allows you to use your accounts outside of your homeland as long as you have the proper credentials for them.  Most other services use the more Draconian geolocation filtering which does require you to be physically present in your homeland.  For the most part, you are not allowed to leave home if you want access to your favorite entertainment!

  • I never had an APPLE ID with this email address and I have no idea why this is this showing to me?

    Every time I restore my iPhone from iCloud Backup, this apple id SHOWS UP  and asking password. But I never had an APPLE ID with this email address and I have no idea why this is this showing to me? Could anyone help me to remove it from my Applr ID as it seems somehow its linked to my iCloud Backup. Thank you.
    <Email Edited By Host>

    Hi Ralph,
    I have received the iPhone 5s from my carrier EE UK. I never had a second hand device as all my previous iPhones received from my carrier. Every time I restore from iCloud backup, first I enter my Apple ID and Password, then it authenticates and goes through next process and updates iCloud settings, right after initial settings then it displayes enter your password where the Apple ID is the metntioned Apple ID and in the bottom it says "Skip this to go next process" or something. I have to press that everytime to skip it, then restore my backup from iCloud and then when I'm in iPhone home it asks me for the password of that mentoned email. So everytime I change the email address to my Apple ID then enter my password that activates my iCloud services and start downloading all the apps I installed.
    Its really weird to be honest and I don't know how to remove that email address from that process and seems its there.
    N.B. When I had iPhone 4s, Apple Store did replace my iPhone 4s with a new one due to the faulty WiFi.

Maybe you are looking for

  • How to set runtime parameter for the entire system

    Hi, I have a problem with setting runtime parameters in jre v1.6.0_07. I have an XP computer with multiple users and to use the application eavery user must set the runtime parameter once by going to java control panel -> Java -> Java applet runtime

  • How to BackUp BOE Edge XI 3.1 Steap by Steap?

    Good day all, Couls you please guide me how to back-up BOE Edge XI 3.1 with standar configurations and using mySQL? I am looking for a Tool or SW that best works for this... Thanks. Edited by: klon2001cr on Oct 10, 2011 3:46 PM Edited by: klon2001cr

  • Tax in BC Canada

    I belive as of today the tax should be reduceded to 5%. becuase we are no longer on HST. I would like to sign up for a new account but don't want to until the tax is reduced.

  • Disabling Distinct Feature in Answers

    Hi All, I'm having a hard time to figure out the way of diabling Distinct values in Answers. I have 2 tables Dim and a Fact. The Sql generated in Answers is perfect. I executed this query in SQL database and it gave proper results(30400 rows). But th

  • Installation error... please try again

    I have a swivel screen iMac (800 Mhz) that used to have OS 10.4.9 on it. It began acting up -- applications would spontaneously close while in use. The HD has been erased and zeroed out -- no system of any kind exists on it now. I tried to install a