Need help in connecting

I have raised a question in OTN yesterday "https://forums.oracle.com/forums/message.jspa?messageID=10798738#10798738" but stil i am not able to get the connection working..
I need some more clarifications in it. can some one suggest
Regards
Vivekk
Edited by: Vivekk.Arora on Jan 17, 2013 8:40 PM

Vivekk.Arora wrote:
Thank you for your kind reply......i was just taking help ......
Regards
VivekkAnd we want to help. but the best help is that which leads you to a greater degree of self reliance. And you could have answered your question yourself (greater self-reliance) had you simply looked up the syntax of the ALTER USER command.
=================================================
Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
Go to tahiti.oracle.com.
Drill down to your product and version.
<b><i><u>BOOKMARK THAT LOCATION</u></i></b>
Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab (for 10.x) or the "Master Book List" link (for 11.x) you will find the complete documentation library.
Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
Do the same with the SQL Reference Manual.
Do the same with the Utilities manual.
You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
Then set yourself a plan to dig deeper.
- Read a chapter a day from the Concepts Manual.
- Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
- Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
- When you have finished reading the Concepts Manual, do it again.
Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.

Similar Messages

  • TS1398 I need help getting connected to our home wifi.

    I need help getting connected to our home wifi. I've reset network settings, iPhone, and router  but the error "unable to join network" keeps coming up. I also double checked the password. Please help

    Other possibilities:
    Your router firmware is out of date. Check the manufacturer's website for an update
    You have MAC (Media Access Control) filtering enabled on the router, that restricts access to "known" devices and the new iPhone is not on the table of known devices
    Your router has a setting limiting the number of simultaneous allowed devices
    Your routers SSID ("name") is still the default (e.g., LINKSYS, DLINK, NETGEAR, etc). Your phone has encountered other routers with the same name as you have traveled, and the phone is confused as to which router is the real one. If your router's name is still the default you should change it.

  • Need help to connect to aws instance from my macbook pro

    i need help to connect to an aws instance from my laptop. Please help me..

    No, it's not Apple's doing.
    You are infected with Downlite, which is preventing you from accessing the AdwareMedic site. For an explanation and some solutions, see:
    http://www.thesafemac.com/adware-blocking-adwaremedic-downloads/
    If the adware prevents you from loading that page as well, try this one:
    https://discussions.apple.com/docs/DOC-7792
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • Need help with connecting file inputs to arrays

    In this assignment I have a program that will do the following: display a list of names inputed by the user in reverse order, display any names that begin with M or m, and display any names with 5 or more letters. This is all done with arrays.
    That was the fun part. The next part requires me to take the names from a Notepad file, them through the arrays and then output them to a second Notepad file.
    Here is the original program: (view in full screen so that the code doesn't get jumbled)
    import java.io.*;       //Imports the Java library
    class progB                    //Defines class
        public static void main (String[] arguments) throws IOException
            BufferedReader keyboard;                                  //<-
            InputStreamReader reader;                                 //  Allows the program to
            reader = new InputStreamReader (System.in);               //  read the the keyboard
            keyboard = new BufferedReader (reader);                  //<-
            String name;                 //Assigns the name variable which will be parsed into...
            int newnames;               //...the integer variable for the amount of names.
            int order = 0;              //The integer variable that will be used to set the array size
            String[] array;             //Dynamic array (empty)
            System.out.println (" How many names do you want to input?");   //This will get the number that will later define the array
            name = keyboard.readLine ();
            newnames = Integer.parseInt (name);                                         // Converts the String into the Integer variable
            array = new String [newnames];                                               //This defines the size of the array
            DataInput Imp = new DataInputStream (System.in);       //Allows data to be input into the array
            String temp;                                       
            int length;                                                                  //Defines the length of the array for a loop later on
                for (order = 0 ; order < newnames ; order++)                                //<-
                {                                                                           //  Takes the inputed names and
                    System.out.println (" Please input name ");                            //  gives them a number according to
                    temp = keyboard.readLine ();                                           //  the order they were inputed in
                    array [order] = temp;                                                  //<-
                for (order = newnames - 1 ; order >= 0 ; order--)                                //<-
                {                                                                                //  Outputs the names in the reverse 
                    System.out.print (" \n ");                                                   //  order that they were inputed
                    System.out.println (" Name " + order + " is " + array [order]);             //<-
                for (order = 0 ; order < newnames ; order++)                                  //<-
                    if (array [order].startsWith ("M") || array [order].startsWith ("m"))     //  Finds and outputs any and all
                    {                                                                         //  names that begin with M or m
                        System.out.print (" \n ");                                            //
                        System.out.println (array [order] + (" starts with M or m"));         //
                    }                                                                         //<-
                for (order = 0 ; order < newnames ; order++)                                            //<-
                    length = array [order].length ();                                                   //
                    if (length >= 5)                                                                    //  Finds and outputs names
                    {                                                                                  //  with 5 or more letters
                        System.out.print (" \n ");                                                      //
                        System.out.println ("Name " + array [order] + " have 5 or more letters ");      //<-
    }The notepad file contains the following names:
    jim
    laruie
    tim
    timothy
    manny
    joseph
    matty
    amanda
    I have tried various methods but the one thing that really gets me is the fact that i can't find a way to connect the names to the arrays. Opening the file with FileInputStream is easy enough but using the names and then outputing them is quite hard. (unless i'm thinking too hard and there really is a simple method)

    By "connect", do you just mean you want to put the names into an array?
    array[0] = "jim"
    array[1] = "laruie"
    and so on?
    That shouldn't be difficult at all, provided you know how to open a file for reading, and how to read a line of text from it. You can just read the line of text, put it in the array position you want, until the file is exhausted. Then open a file for writing, loop through the array, and write a line.
    What part of all that do you need help with?

  • Need Help for connectivity USB Cable Nokia 5800 ca...

    Hi All,
    I really need help to solve my problems. I just bought nokia 5800 XM last week. I already installed the CD software in my windows XP, but it seems that PC cannot recognize the USB cables. I have plug in an unplugged... At firstime it detects my nokia 5800 XM, but when I open PC suite or OVI, it doesn't connect the USB cables into PC. I already install and uninstall The OVI suite but it is still the same, when I try it in OVI suite to detect my phones, it doesn't react.... I also have download from Nokia website to install manually Nokia USB cable driver for my  cable type CA-101... it seems nothing works here... tell me what should I do? I don't think that the USB cable I bought is fake, it has original guarantee..... please desperately need help! Anybody? 

    When you plug the phone into the computer, ON THE PHONE it should ask you which mode to connect in, and you should select "PC Suite" mode.  Does this happen?
    Ravi

  • Need help to connect from MacBook Air to a Dell 1610HD projector.

    I need to mirror the display on my MacBook Air to a projector, I've gone to the System Preferences and it detects my Apple TV but not the Projector need help.

    I have tried and I have the partition, but when I try to reinstall Mac OS X then it says that there is a mistake try to reinstall Mac OS X again, then I try to reinstall it again but with no luck, the same problem keeps up coming

  • CS5.5 need help with connecting to wsdl

    Hello,
    I'm new to Dreamweaver CS5.5 and i'm looking for a simple way to connect to a CFC wsdl web service.
    Basically need to pass 1 parameter to the webservice and have it return a string result from our database.
    Is this possible to do from dreamweaver, using javascript ?
    thanks.

    Those crosshairs are controllers for an effect. The first thing to do is to start turning off layers (eyeball) until you find the layer with the crosshairs. Once you've isolated the layer make sure that it's not a pre-comp, press F3 to reveal the ECW, and check the effects. If you can't turn the effects on and off then or access any of the settings the layer is locked. What would really help here is a screenshot. I can't tell much from the photo because I can't see what's under the hood.

  • Yikes!  I need HELP RE: connecting my iPod Nano!

    I just bought a 4G iPod Nano TODAY. I'm kind of "electronically challenged." So I plugged my Nano into my computer, using the very brief instructions that were provided with my Nano. My songs loaded fine, but when I removed the Nano from my computer, I could not get the USB cord out of my Nano. Of course, like a *******, I pulled and pulled and pulled, until the wires started coming out of the connection. Then I really started freaking out! Got out my pliers, and finally was able to remove the connector. However, in doing so, I have now done something so that a new connector won't go in. I realized AFTER I had done all of this that I needed to press on the two sides of the connection in order to get it out of the Nano. Does anyone know if Apple will fix this? I am going to cry if this can't be fixed. Please let me know ASAP. I don't think I can sleep until I find out. Thanks for your help.

    this falls into the category of abuse, so no, i don't believe apple will fix it. i would try buying a new cord first, see if that helps. unless it is the nano's connector that is messed up, then you are SOL.

  • Need help for connecting Ms Acces with java Swing in Mac OS

    Hi all,
    i need to connect to Ms Access in MAc os through my java swing program.
    Is it possible for accessing Ms access through dsn in Mac OS.
    If Possible which driver shall i use for Establishing Connection with MS Access in Mac OS.
    Suggestion is needed urgently.
    Can anybody help me out regarding this..
    Thanks in advance.
    Regards,
    sreand

    if I don't find a better solution I'll try your 2nd option but what do you mean by "combo" update?
    My understanding is to simply insert the OS 10.5 installation CD, reinstall the OS and the just keep updating it via the OS SSoftware update panel and stop untill I see the scary Java 8 update. Is that what you meant?
    While you can do it that way, the combo update picks up operating system updates through a collection of releases. When dealing with operating system upgrades, I've found using the combo updates to be more reliable than Software Update, as sometimes Software Update doesn't apply updates correctly, and weird things can happen. Doesn't happen often though, thankfully.
    So the OS X 10.5.5 Combo update contains all updates between 10.5.0 and 10.5. The 10.5.8 combo update contains the updates from 10.5 thru 10.8. Here are the updates:
    10.5 combo update: http://support.apple.com/kb/DL692
    10.8 combo update: http://support.apple.com/kb/DL866
    If you go down the combo path, repair permissions before and after doing each update. Then do Software Update for any other non-OS X updates, and don't apply the Java Update 8.

  • NEED HELP! CONNECTIVITY NOKIA 2228 PC SUITE

    i bought nokia 2228 CDMA several days ago. It said that it could connect to PC suite and it has usb CA-101 for its cable.
    The issue is i got this error "nokia 2228 connected in a non-compatible usb-mode"
    I was trying to see another discussions and forums but no where to solve my issue.
    Could it because that this phone has not been supported with PC suite? in fact, i see at official nokia website, and found that this phone is no where to found in the supported list. But it's true that nokia 2228 description's said that it can. How should i fix it?
    I AM REALLY NEED A HELP!!!
    already tried at XP SP2 and VISTA Ultimate SP1. All of them in 32 bit. also already install the latest pc suite. Have also tried uninstall and reinstall again. Also have used Nokia cleaner tools.
    HELP!!! Thx

    Download PC suites for nokia 2228 (compatible with Win XP, Vista, 7) here :  http://www.nokia.co.id/dukungan-dan-software/dukungan-produk/nokia-2228-cdma/software
    then new windows appear , click green panel "Terima dan mulai download" = Accept and start download.

  • Need HELP! connecting to wireless network; IP Address problems!

    I am trying to connect to wireless networks using the AirPort built into my MacBook Pro. There are two specific networks I am trying to connect to, both are WEP protected. I know the passwords and can get into each of them but I cannot connect to the internet, which is the main reason for connecting to them in the first place! When I go into System Preferences and click on Network, I see that next to AirPort it says I am connected to the network but may not be able to connect to the internet because my computer has a Self Assigned IP address. I assume this means my computer is not receiving an IP address from the network. I am set on full auto with DHCP. So what's wrong? Please Help!!!

    That indicates that the MacBook Pro did not successfully communicate with the DHCP server on the network. Do those networks have access control (MAC address filtering) enabled? If so, the best solution is to reconfigure the base station so that this feature is disabled. This adds no real security since MAC addresses are easily discovered and cloned.
    If you can't disable access control, you will need to add the MAC address of the wireless interface of your MacBook Pro to the list of allowed clients.

  • Need Help on Connection pooling with asp

    Hi,
    I am need ur help on how i want set up the minimum and maximum connection for my asp programming.
    I am using Oracle 9i database with driver "Oracle in orahome 9.02.00.54".
    Ihave create the odbc to this driver for handle the connection pool.
    How i want to set the minimum and maximum connection ?
    This is my code:
    Set cn = Server.CreateObject("ADODB.Connection")
    cn. open "dsn=loadtest;uid=guardreg3;pwd=guardreg3;min pool size=15"
    I hope you all can help me.
    Thanks

    James,
    sometimes it makes sense to look at these things from a different (and broader) perspective.
    Especially in a context of a corporation it makes sense to use a Single Sign On (SSO) server for authentication (usually against LDAP) . Something like Netegrity Siteminder, Oracle SSO Server (as part of Oracle Internet Application Server) or something similar.
    Then you could have all your applications use the authentication method of the SSO server which will keep track of the valid session and the applications that participate in the SSO context.
    On the Apex side you would have to write a custom authentication scheme to leverage that functionality, the session handling will no longer be of any concern to you.
    Just a different way to look at it.
    ~Dietmar.

  • Need help with connecting laptop

    Hi there,
      I looked through the boards and found some messages that kind of fit to my problem, but not completely so here goes. 
    I have a gateway desktop(windows xp) connected to dsl (charter) and a laptop(gateway solo with windows xp) that I am trying to connect through a wireless router (Linksys wrt54g). 
    When I connect the wireless router to my laptop it says it is connected, but I cannot get a webpage to appear and once my router is connected I cannot use my desktop online. 
    I am sure there is just some configurations that need done, but I'm not that familiar with alot of the comuter lingo in order to figure this one out on my own.  I mainly use the desktop, but I would like to configure the laptop so I can use it online when needed.  Help and keep it simple please...
    Another question...do I need to use the wireless router or can I somehow connect my laptop through my desktop or just through my dsl connection?
    Thanks, Deanna

    Connect the Modem to the Internet Port on the Router.
    Then , Connect the Computer using a different
    Ethernet Cable to Port 1 or Port 2 on the Router.
    Now, Press the Reset Button on the rear panel of the Router
    for 12 Seconds. Then, Release the Reset Button,
    Unplug the Power Adapter to the Router. After 10 Seconds,
    Unplug the Power Adapter to the Modem. Then Wait for
    30 Seconds, Re-connect the Modem, and once the Lights are
    up on the Modem, Re-connect the Linksys Router.
    If yes, Open a new Internet Explorer
    Page, and in the address bar, type http://192.168.1.1, press
    return, And when asked for Username and Password,
    Leave the Username blank and in the Password field,
    type admin . This will help you access the Router's
    Console.
    In the Router's Setup Page, just below Setup Tab,
    in the blue line, you could an option " MAC Address Clone "
    Click on that, Enable it, Save the Settings
    Below the Setup Tab of the Router's Console,
    Change the MTU from "AUTO" to "MANUAL" , and
    Set the Size to 1400, Save the Settings,
    Powercycle the Modem and the Router.
    Check the Connections.
    If you are able to go Online when hard wired to the Router.
    Then make your computer wireless and verify . . .

  • MSI P67A-C45 (B3) Newb needs Help with connections..

    Hi all..
    First time posting here, but have been in the shadows for quite a while..   
    Anyway, i decided to finally take the plunge, and build my own PC, and now i'm beginning to hit a few bumps.
    I have a couple of questions that i would like some help with, if possible to reassure myself i may be in the right direction..
    I bought THIS PSU and was hoping someone could tell me where the Blue connectors (one labelled CP and one labelled U1) Connect to?
    Is it into JPWR2? And does it/do they only connect in the correct way? (Do i remove the plastic cap and attach both?
    and i bought THIS VIDEO/GRAPHICS CARD and i'm guessing the RED "PCI express" and "SLI ready" connect to that somehow (Haven't opened box yet for card)
    Again, wondering is there a certain way for them to connect.
    Also, from my chassis, the "AC '97" and "HDA" connectors go to JAUD (I guess), does it matter which one? (I currently have "HDA" connected)
    I have i5 2500k already on board. (If that makes a difference).

    Quote from: Ben_Cartwright on 26-May-11, 22:05:35
    Do the Audio plugs go into JAUD? and does it matter which one?
    Yep, connect the front panel audio to the JAUD. If you need the pin layout, it says in the manual. I would say the HDA connector is the one to connect.
    Quote from: Ben_Cartwright on 26-May-11, 22:05:35
    Any recommendations for testing it all, before i plug it in, and press the power?
    Should i (Can i) test individual parts first?
    Thanks again.
    Check all power connections, seating of the RAM and add-on cards, check the HSF is plugged into the fan header, and obvious things like that.
    As for testing, enter the BIOS and make sure the CPU isn't running too hot. Set up the RAM with the required timings and voltage, and test with >>Memtest86<< for several hours. No point starting the Windows installation if say your RAM has errors, since it will corrupt files during the install, if it installs at all.

  • Need help in connecting to a remote Mac

    As the Admin Mac, my Mac connects to the Internet wirelessly using a TIme Capsule. The Time capsule is connected to a cable modem.
    The remote Mac, is connected by ethernet to a Wildblue Excede dsl.
    I know the IP address of the remote mac (findmyip.com).
    Also, the remote Mac has no User Name or Password at login.
    What I get is notice that the remote Mac is offline.
    Can someone lead me through a simple set up for both computers that will permit me to make the connection? Do I need to do Port Forwarding on the Admin Mac?
    Thanks

    Hi
    One way to do this would be:
    1. Write a sample program which will read the username & password as command line parameters. This will authenticate this data against the LDAP server that you have setup. Once you have this working proceed to step2.
    2. Write a Java Bean with two attributes that will hold the username and password. Add a method authenticate user which will contain the code you have written in step 1.
    3. Create a JSP with username & password fields. Let the form post to the same JSP or a different JSP/Servlet.
    4. In the JSP use the <jsp:useBean> tag to create a bean coded in Step 2. The scope bean should be "request". Set the username and password fields using the <jsp:setProperty> tag. Once you have this , just use the beanId from the <jsp:useBean> tag to call the validation method.
    Keep me posted on your progress.
    Good Luck!
    Eshwar Rao
    Developer Technical Support
    Sun microsystems inc.
    http://www.sun.com/developers/support

Maybe you are looking for

  • Using TEDS as storage for precision standards instead of transducers

    My company makes and calibrates precision resistance, capacitance and inductance standards. These are not transducers, yet they posess calibration data that would benefit from 'internal storage'. Some data could event be represented as a polynomial o

  • Data element for time in 12 hour format HH:MM

    Hi friends, Is there any data element which is for HH:MM format 12 hour format? i see uzeit, but its HH:MM:SS. i dont want this. i want HH:MM. Niraja

  • Sharing a fat32 partition

    i cant get it to work, im unable to share my fat32 external hard drive with all my macs? im using smb and afp, but they dont work, that is it that im doing wrong? anything else that im sharing i have not problem. snow leopard, please, with leopard, e

  • The iTunes playhead doesn't fully progress

    In iTunes the playerhead is displaying the wrong time. It says that the song is only 1:30 long but in reality its 3:11. But when I look in the selection list it displays the full list. iTunes playes the full song even though after 1 min and 30 sec it

  • Copy SQVI report from PRD

    Hi, A report was created using SQVI in PRD and I like to know if there is a way to transport it to our DEV or QAS system? I know this should not happened in the first place hence just want to find out if there is a way to copy the SQVI report from PR