Help needed on SRVCTL importance in RAC Setup.

Hi gurus,
We are using 11GR2 database with RAC on AIX machines also we are using oracle clusterware only. It was implemented by some body else and we are supporting this environment. We observed that we are not able to start the Database/listerners using srvctl. it is throughing the error. We just like to know if this is acceptable. i am trying to say that SRVCTL is critical in RAC setup and we should be in a position to start the DB using srvctl else we need to start DB manually when any problem happens due to cluster level problem.
My requirement is
1) Is my point is valid. i.e SRVCTL is compulsary for cluster or not?
2) if SRVCTL is compulsary then i need to have metalink note saying SRVCTL is compulsary with out that cluster will not start the DB automatically.
REgards
DBA.

Yes ... you are right .
You can use SRVCTL to start and stop the database and instances, manage configuration information, and to move or remove instances and services. You can also use SRVCTL to add services. SRVCTL also manages configuration information.
Some SRVCTL operations store configuration information in the Oracle Cluster Registry (OCR). SRVCTL performs other operations, such as starting and stopping instances, by sending requests to the Oracle Clusterware process (CRSD), which then starts or stops the Oracle Clusterware resources.
You should be able to perform operations using srvctl.
Check out the trace files for any errors ?
Also srvctl is kind of mandatory thing and without this you wont be able to make change to configurations.
So find the root cause and you can also raise SR to oracle support.
Regards
Rajesh

Similar Messages

  • Help needed in deleting nodes from RAC database

    Our DB is 10g RAC database and the servers are Window 2003 server. Initially the database was configured to have 4 nodes. For some reason we stopped the instances in the first two nodes and the current database is running on node3 and node4. I queried the v$thread view and it shows 3 records. Thread 2 is closed and disabled. Thread 3 is open and public and thread 4 is open and private. Now we need to disconnect nodes 1 and 2 from RAC db and cluster ware (We use Oracle cluster ware) and plan to use those two servers for other purposes. Although I read through the Oracle doc regarding deleting node from RAC “11 Adding and Deleting Nodes and Instances on Windows-Based Systems” and wrote down the steps we need to take but I am still not comfortable in doing it since it is production env and we don’t have any dev env to practice those steps. So I would like to borrow your experiences and your lessons learned while you were doing those. Please share your thoughts and insights with us.
    Thank you so much for your help,
    Shirley

    what's your full version? I can warn about specific issues in 10.1.0.3 and 10.2.0.1 - for example, in some cases (depending on how the listener was configured), it will be impossible to delete the listener for the deleted node. Known bug.
    To avoid many many known bugs, you may want to upgrade to at least 10.2.0.2 before removing a node (from my experience, this is the first stable RAC version).
    In any case, deleting a node is a rather delicate process. I really really recommend practicing. Take any pc/laptop, install VMWARE, define two virtual machines, install RAC and remove one node. It will take you an extra day or two, and could save your production.

  • Help needed with Wireless ADSL2+Modem Router setup

    I have a iMac 1GHz PowerPC G4 running 10.3.9 with all of the latest software updates and have just purchased a Netgear DG834G. I am currently using an USB modem and now need wireless internet access for remote working via an IBM Thinkpad.
    I have tried to follow the Netgear manual but to no avail. Unfortunately, my ISP was unwilling to help with setup as they didn't supply the router! Typical! Anyway they gave me some settings which might as well be in a foreign language ....
    Virtual Path Identifier VPI = 0
    Virtual Channel Indentifier (VCI) parameters = 38
    ISP Domain Name Server (DNS) Addresses apparently will be automatic
    Fixed or Static IP Address is automatic
    Protocol = PPOA - is this correct?
    Encapsulation =VCMUX
    Any advice and screenshots would be greatly appreciated as I am absolutely stuck.
    iMac 15 G4   Mac OS X (10.3.9)   Lacie Triple D2 160GB + 5G 30gb iPod

    Fixed - told myself to RTFM!

  • [SOLVED] Help needed with iptables rule with unusual setup

    Hi I recently setup hostapd on my netbook so I could share a wireless network with my phone and I'm having trouble because my netbook is also hosting a Jetty sever (Subsonic media streamer).
    My setup is as follows
    [CABLE MODEM]===[WIRED ROUTER]=====[NETBOOK] ))))) [PHONE]
    The wired router provides the DHCP server.
    On my netbook I created a (br0) bridge between eth0 and wlan0 and started hostapd. That all works fine when I'm not trying to host my Jetty server on my netbook.
    The netbook has the IP 192.168.0.8
    The phone has the IP 192.168.0.6
    I do not want to give the Jetty server root permissions just so it can run on port 80. So instead I start it instead on port 4040 and then use a iptables rule to redirect connections to port 80 to port 4040.
    Before I setup hostapd on machine I used to use the following.
    iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 4040
    However when I'm using hostapd and try to access websites on my phone its web browser is ALWAYS REDIRECTED to my jetty server. I'm not really surprised at this as the rule I mentioned above is for any destination or any source.
    I tried this rule:
    iptables -t nat -A PREROUTING -d localhost -p tcp --dport 80 -j REDIRECT --to-ports 4040
    This didn't work. On my phone I could access websites as expected but nobody (tried external from network and internally) could access the jetty server on port 80. Does anyone know why this rule doesn't work?
    I tried this rule:
    iptables -t nat -A PREROUTING \! -s 192.168.0.6 -p tcp --dport 80 -j REDIRECT --to-ports 4040
    This rule worked (Redirect port 4040 connections to port 80 if the connection isn't from my phone). But this is NOT very good at all as it means I would need a separate rule for every wireless device that connected to my netbook (via hostapd). Also if the IP address of my phone ever changes this rule becomes useless too!
    Does anyone have any ideas?
    Any help would be greatly appreciated.
    Thanks.
    Last edited by delcypher (2010-07-24 20:17:35)

    Well looks like I fixed my own problem.
    I added a LOG target in the PREROUTING chain like so
    iptables -t nat -A PREROUTING -p tcp --dport 80 -j LOG --log-prefix 'cheesy-redirect'
    iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 80
    When I looked at /var/logs/everything I noticed this.
    dan-netbook kernel: cheesy-redirectIN=br0 OUT= PHYSIN=eth0 MAC=00:26:18:73:ea:28:00:09:5b:5d:0a:33:08:00 SRC=178.102.41.92 DST=192.168.0.3 LEN=52 TOS=0x00 PREC=0x00 TTL=46 ID=51411 DF PROTO=TCP SPT=48219 DPT=80 WINDOW=49640 RES=0x00 SYN URGP=0
    The destination is 192.168.0.3 ! Which is very very weird. This the IP address I had told my router to give my eth0 card in the past when I wasn't using a network bridge (br0). I was connected to the network using 192.168.0.8 on br0. The eth0 interface wasn't assigned an IP address.
    192.168.0.3 was also the IP address I setup for static port forwarding (which I forgot about) so when I accessed my jetty server from outside my network all packets would of been forwarded to 192.168.0.3
    I should never of received those packets as I was 192.168.0.8 not 192.168.0.3 at the time of logging so how I even received these packets is a mystery to me. Maybe the router software is buggy
    Fixing was pretty straight forward I changed the port forward to go to 192.168.0.8 and then tried connecting to the jetty server externally and noted in the log
    cheesy-redirectIN=br0 OUT= PHYSIN=eth0 MAC=00:25:d3:46:4d:0d:00:09:5b:5d:0a:33:08:00 SRC=178.102.41.92 DST=192.168.0.8 LEN=52 TOS=0x00 PREC=0x00 TTL=46 ID=65326 DF PROTO=TCP SPT=33597 DPT=80 WINDOW=49640 RES=0x00 SYN URGP=0
    So the correct redirect rule is
    iptables -t nat -A PREROUTING -p tcp --dport 80 -d 192.168.0.8 -j REDIRECT --to-ports 80
    which works nicely
    One last question though. Does anyone know how I can use a hostname rather than 192.168.0.8 which points to whatever the IP address of br0 is set to? localhost points to 127.0.0.1 so that doesn't work.

  • Picasa to iPhoto - help needed with folders/importing

    I am converting over from Picasa on windows to iPhoto on a new iMac I recently bought. And I have to say, the conversion has not been as smooth as I thought it would be. Any help will be appreciated highly
    1. In Picasa, I was able to see my underlying folder structure. At the same time I was able to arrange pictures from multiple folders into albums which became the metadata container.
    Question: Is there a way to easily see the folder structure of the underlying file system rather than have the iPhoto library which seems to show simply in terms of years.
    2. From other posts on the discussion board it seems like I can simply drag the folder from Finder to the source section of iPhoto to somewhat mimic what I described in #1 above. If that is the only option, I have the next question, and that is -
    Question: If I drag and drop a folder from Finder to the source section of iPhoto why does iPhoto not bring everything in as "Originals". I see that some of my pictures go into the corresponding "Modified" folder. It seems like there is an internal "modification" that is done at the time of import which I am unable to check on/off.
    Question: Also, in the same method, I see that the picture got duplicated on the file system - once appearing in the original folder which I dragged from the Finder, and the second time showing up under Originals or Modified folders within the iPhoto library folder under Pictures.
    How do I elimiate this duplication? Can I eliminate it and keep the "file system folder structure" available?
    Thanks in advance!

    TD,
    Thanks for the excellent explanation of the application and how it differs from what I have been used to doing. Without going into too much details, I would like to say that Picasa may be a file organizer, but it does allow me a concept of "albums" which is virtual and when I choose to put the same picture in multiple albums, it does not make a new copy each time.
    But I am not here to compare Picasa with iPhoto, only here to see how to do things in iPhoto the same or better way.
    Rolls, on the other hand) in the iPhoto Window (View
    -> Film Rolls) correspond exactly with the Roll
    Folders in the Originals Folder in the iPhoto Library
    Folder. You can move photos between Rolls, you can
    rename rolls, edit them, create them, as long as you
    do it via the iPhoto Window. Check out the Info Pane
    (wee 'i', lower left) the name and date fields are
    editable. Edit a Roll Name using the Info Pane, the
    Roll Folder in iPhoto Library Folder/Originals will
    also have the new name.
    So, rolls are in fact "real" and not virtual concepts right? I would actually be moving the files from one roll to another underneath when I move a picture in iPhoto from one roll to another. Is that the correct understanding I have?
    And, then FYI: A Note about the iPhoto Library
    Folder:
    In this folder there are various files, which are the
    Library itself and some ancillary files. Then you
    have three folders
    Originals are the photos as they were
    downloaded from your camera or scanner.
    (ii) Modified contains edited pics, shots that
    you have cropped, rotated or changed in any way.
    This allows the Photos -> Revert to Original command
    - very useful if you don't like the changes you've
    made.
    (iii) Data holds the thumbnails the the app
    needs to show you the photos in the iPhoto Window.
    Very cool. That makes sense, and I did read about this folder structure in some other posts which is very helpful to get started.
    If I drag and drop a folder from Finder to the
    source section of iPhoto why does iPhoto not bring
    everything in as "Originals". I see that some of my
    pictures go into the corresponding "Modified" folder.
    It seems like there is an internal "modification"
    that is done at the time of import which I am unable
    to check on/off.
    Your camera has an Auto Rotate feature, right? What
    happens there is that your camera doesn't rotate the
    pics, it simply puts a flag on them "Display Me This
    Way". Part of the core philosophy of iPhoto is to
    leave your original file untouched, so it creates a
    modified version, showing the rotation. How to stop
    it? Turn off auto-rotate or rotate the pics before
    they come into iPhoto.
    Excellent point. I will change that setting on the camera. Of course for all the pictures I have downloaded already, I suppose there is no way to change the rotation settings, right?
    Also, in the same method, I see that the picture
    got duplicated on the file system - once appearing in
    the original folder which I dragged from the Finder,
    and the second time showing up under Originals or
    Modified folders within the iPhoto library folder
    under Pictures.
    How do I elimiate this duplication? Can I eliminate
    it and keep the "file system folder structure"
    available?
    Trash your Original file structure. Let iPhoto do the
    file management. Freaky, right? Well don't do it
    right away, leave it until you feel confident in
    iPhoto, until you feel that you can trust the
    application.
    The other alternative is to not copy the files into
    the iPhoto Library Folder (You can change this at
    iPhoto -> Preferences -> Advanced). The down side is
    that iPhoto will still create the modified and data
    folders, when you delete from iPhoto you'll need to
    track down the individual pic yourself to delete it
    from the HD and things like migrating the library to
    an external HD or a new machine can be trickier.
    Ok, now that I understand the application a little better, I see that the original files and folder structure is not useful at all.
    But unfortunately, I would like to keep the folder structure on my external hard drive so that if I log into windows on bootcamp, I could use Picasa to access the same set of pictures. I currently have an automator action (backup folder/sync folder) which takes all the contents of Pictures folder and replicates it to the external drive. Then when I log in from Picasa, I have set the option to only scan the external drive.
    If I trash the original structure and simply sync the iPhoto Library folder, and then access it through Picasa, will there be any problems if Picasa drops some of its "database type" files (I know for sure it drops a Picasa.ini)?
    If I do not move any files from one folder to another, is it ok to let Picasa access the iPhoto Library folder?
    Most people who want to keep their own structure do
    so because they're afraid they won't be able to find
    the picture files: There are three ways (at least) to
    get files from the iPhoto Window.
    1. Drag and Drop: Drag a photo from the iPhoto
    Window to the desktop, there iPhoto will make a
    full-sized copy of the pic.
    2. File -> Export: Select the files in the
    iPhoto Window and go File -> Export. The dialogue
    will give you various options, including altering the
    format, naming the files and changing the size.
    Again, producing a copy.
    3. Show File: Right- (or Control-) Click on a
    pic and in the resulting dialogue choose 'Show File'.
    A Finder window will pop open with the file already
    selected.
    Thanks very much again for the detailed explanation. I really appreciate it.
    And, as I said above, Rolls have a direct
    correspondence with the iPhoto Library Folder.
    And I suppose if rolls are "real" then the virtual equivalents would be things like smart folders?
    -rpmm

  • Help needed in ASA 5540 Cluster/Failover setup

    Hello expert,
                        Currently we have two asa in our Datacenter setup as a Active/Standby failover setup and tested ie failover is working,(if one FW goes down), but what if a the uplink switches/links or backend switches go down, how does the active fw knows to failover ?
    Current setup
              |                                        |
        ___|___                              __|___
    ---| SW 1 |------------------------ | Sw2   |     
              |                                        |
        ___|___                              __|___
    ---| FW 1 |------------------------ | FW-2 |     
              |                                        |
        ___|___                              __|___
    ---| SW 1 |------------------------ | Sw2   |     
    In the above figure, FW1 is active and I have powerd off the uplink  SW1, but the FW2 did not take over, and the same for backend switches, So how do I configure my FW's so that any of the uplink or back end switches go down, the Active should give its role to standby to forward the traffice from a different switch ie sw2 in case sw1 goes down.
    Or Is there any mechanisim where I can monitor the interfaces ie uplinks or back end links etc ?
    Your help is appreciated.
    Regards

    It seems that you have LAN link directly connected between the boxes, so the unit will determine that Primary/Active has interfaces that are inactive and failover. You should read:
    http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a00807dac5f.shtml
    This link gives you the failover triggers and failover actions.

  • Help NEEDED!! WSVR4400N VPN & QuickVPN setup

    I have the 4400n router. I want to connect to my office using the VPN & QuickVPN setup. Office: Small Biz server 2003 set to a "workgroup" network setup only. WSVR4400N router and Comcast internet Router: I setup the VPN Client Name and password. It is active. Home computer or laptop from work: I downloaded the latest QuickVPN software. Put in info and logged in. Results: Enter required info & connect. It starts but hangs at "Verifying Network". No connection is ever made. The office router states I am "online" but I can't do anything and the box at the lower right has a red line thru it. No port forwarding setup. I have tried setting the port forwarding to the server and to the router as well with no luck. What the heck do I do??? Thanks in advance. Chris

    Do you have two routers? You wrote something about a comcast router. Can you please describe the exact setup of the routers you have, starting from the modem including the IP addresses. In particular: does the WRVS have a public IP address?
    Moreover, please check the log on the WRVS. It should contain information about VPN connection attempts.
    Which port forwardings did you try exactly?
    Did you have the "online" status without any port forwardings?
    It would definitively help to know whether it works while the client is not behind a router, i.e. the client computer has a public IP address. NAT is a killer for IPSec. IPSec makes sure IP packet are not modified. NAT must modify packets.
    Message Edited by gv on 04-18-2008 11:56 PM

  • Urgent help needed in configuring X1151A for RAC cluster

    for RAC requirements I have to configure this card to use the interface name of ce1 but I have tried changing slots and puting /etc/hostname.ce1 file out there but it fails .. it always comes up as ce0.
    my question is : How can I cofigure this card to come up as ce1 ? in the other box I had to do nothing .. i just placed the /etc/hostname.ce1 file with hostname and it works perfect.
    can you please email me a copy of your response at [email protected] ?
    thanks
    Sami

    Look for "ce" instances in the /etc/path_to_inst file. You'll need to change the lines so that the hardware path you want is "1".
    Keep a backup and write down the pathname. You can give that path to a 'boot -a' prompt if anything bad happens.
    Darren

  • Help needed: How to import video from Canon Legria Camcorder FS306?

    Dear all,
    After happily purchasing Canon Legria Camcorder FS306, I realise that my IMOVIE HD could not detect the camcorder when connected to my Macbook pro.
    Have 2 questions here:
    1. Is it impossible for IMovie HD to detect newer camcorders? Should I then upgrade to IMOVIE09?
    2. Currently, Canon Legria Camcorder FS306 is not listed as 1 of the supported camcorders for IMOVIE09. It is one of the newer models. Is IMOVIE09 able to import video from this camcorder now? Or in the near future? Or it may never be supported?
    Tks!
    Gam

    You would need imovie 09 to use this camcorder.
    This camcorder is not on the iMovie 09 supported list. However, every Canon camcorder since 2008 has supported iMovie 08 and 09, so odds are good that this one will, too. Odds are good that it works right now. IF you want to know for sure, call Canon. ....or take your camera to an Apple Store and hook it up.
    It might be possible to do some manual conversions and continue to use iMovie 6. For example, you could try converting the MPEG2 files to DV using a tool like MPEG Streamclip. You would also need the $20 Apple QuickTime MPEG2 Playback Component. I find iMovie 09 to be a much better editor, but if you are comfortable with iMovie 06, this might be worth a try for you.

  • Help needed with file import

    After happily working on a G5 for many years (iMovie 4.0) I just bought an ibook with iMovie8.
    Could it be true that file import is not possible? Can't believe it...
    And how can I edit my old movies?
    Thanks

    Activity window? I'm not sure what that is.
    Here's what I'm working with: http://i.imgur.com/vDwvk.jpg
    Opening an image in a new window shows the image size in pixels in the tab. (circled in the screenshot)
    I can see the same info using Web Inspector. (also circled in the screenshot)
    *I need a way to easily see both the image size in pixels and its size in kilobytes.*
    Thanks!

  • Oracle 11gR2 RAC setup with ASM option running on two nodes . Seeking help

    Hi ,
    Recently we have migrated to 11gR2 extended RAC for one of our application using ASM . Its a two node RAC setup . We are using ASM Normal redundancy feature maintaining two failure group .
    I need few clarification regarding our new DR set up .
    We are planning to have EMC SRDF replication from any of node storage ( Either 1 or 2) to the DR disks .
    Its stright to use when we use the normal file systems . In case of ASM , I am not sure how this replication will work ? and on which level the replication should happen ?
    Do i need an ASM instance up and running on DR server , Which will recognize the disks as it is once DR disks are separated from prod replication and assigned to the server ?
    What should be prerequisite on DR server before we can start the srdf replication (EMC) and make it work .
    Thanks for All your Valuble suggestion .

    Before you decide to use EMC replication give considerable thought to the fact that you are introducing a single point of failure.
    Hardware snapshot replication is very fast. That is all it is. If you database crashes because of corruption on disk ... your replica will be equally corrupt.
    What is fast can not do what DataGuard does ... verify quality. If the point is DR. Go with DataGuard unless EMC is willing to, in writing (not verbally) give you a guarantee (in hard cash) to cover all costs if they replicate bad blocks and it causes an outage.
    And just so no one thinks I'm picking o EMC ... the same weakness exists with all of the other storage vendor's products.

  • PLEASE HELP ME.  Some important emails have gone to an archive mail box and i really need them.  Can someone please help me with how to view the archive email box and the emails that are in there?

    PLEASE HELP ME.  Some important emails have gone to an archive mail box and i really need them.  Can someone please help me with how to view the archive email box and the emails that are in there?

    http://kb.mozillazine.org/Recovering_deleted_mail_accounts

  • HT1338 trouble logging into my imac desktop, why wont it accept my valid password?? Please help I need to retrieve important files. Thanks.

    trouble logging into my imac desktop, why wont it accept my valid password?? I was using it fine last night... Please help I need to retrieve important files. Many Thanks.

    Do #5 and #6 here others as needed
    ..Step by Step to fix your Mac
    Most commonly used backup methods

  • Need Help Entering the Correct Data on Site Setup Window

    [DW CS5 on a Mac OS 10.7.5]
    I get an "FTP Error Message" after entering data on the Site Setup window after pressing Test.
    I want to upload to my host/server's cPanel one of a number of subdirectories that I have on my root directory. My first attempt at uploading the first subdirectory failed. Can someone help me determine which of my Site Setup entries is incorrect and what the correct entry ought to be?
    Perhaps I'm entering incorrect data in the "Root Directory" or Web URL" fields. My host server has given me the correct data, which I've carefully entered. Unfortunately, my testing on the Site Setup window continues to get this message: "An FTP error occurred — cannot open server folder /public_html/alaska/. Access denied. The file may not exist, or there could be a permission problem." Support staff at my host/server cannot determine why the uplaod attempts fail.
    I'll appreciate your guidance. Thanks, very much.

    Brett, thanks for your prompt e-reply.
    Unfortunately, removing the entry from DW's Root Directory field enabled a successful test, however, it caused all uploaded files to wind up in my very large root directory.     ( :-(      I had to do a lot of file management and deletions to clean up the root directory.
    My numerous approaches, after receiving your suggestion, appear to have found a successful workaround. Here's what worked:
    -- While in cPanel's File Management window, I selected the "/public_html" folder in the left column and clicked "New Folder" from the top toolbar. Once the new subdirectory folder was created, I went directly to the DW app where I then clicked the icon (atop and to the far right of the Files panel) subtitled "Expand to show local and remote sites".
    -- With DW's expanded window open, I selected the new folder name in the left half of the window. I then dragged and dropped all the files that were in the right-column's subdirectory's folder to the new folder in the left column.
    -- After completing the drag and drop effort, I checked cPanel's File Management window and verified that all files went to the appropriate subdirectory folder.
    -- Finally, I opened the site's pages online to see that all worked as intended.
    Over all, I wish DW were more reliable, such that when testing setups for *subdirectories* that have "/public_html" in the "Root Directory" field, they will *all* test successfully.
    Sadly, Adobe no longer supports CS5.    (  :-(
    Nevertheless, thanks for your assistance, Brett.

  • HELP NEEDED PLEASE

    Hi everyone
    Programming help needed here. Any advice would be greatly appreciated!!!
    I have been assigned some work for a program called Processing 1.0 availale at http://processing.org/download
    I was give the 9 individual programs I needed to make however they were converted to Java files from .pde files. The program is based on Java but only runs .pde files and NOTHING else!
    I decompiled the files and got the source code, but it is a slight variation of the original someone made in processing, and needs some tidying to get it to run.
    I think the programs are very simple for a programmer, although I AM NOT.
    CODE is BELOW
    // Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov Date: 02/05/2009 13:15:00
    // Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
    // Decompiler options: packimports(3)
    // Source File Name: Assign2_1.java
    import processing.core.PApplet;
    public class Assign2_1 extends PApplet
    public Assign2_1()
    SquareSide = 20;
    Rank = Nums.length;
    Side = SquareSide * Rank;
    Green = color(0, 255, 0);
    Yellow = color(255, 255, 0);
    BG = Yellow;
    public void setup()
    size(Side, Side);
    background(BG);
    fill(Green);
    for(int i = 0; i < Rank; i++)
    rect(i * SquareSide, 0.0F, SquareSide, SquareSide * Nums);
    public static void main(String args[])
    PApplet.main(new String[] {
    "--bgcolor=#ece9d8", "Assign2_1"
    int Nums[] = {
    6, 14, 8, 9, 2, 3, 4, 2, 8, 3,
    9, 2, 0, 5
    int SquareSide;
    int Rank;
    int Side;
    int Green;
    int Yellow;
    int BG;
    Edited by: chevy1 on May 2, 2009 7:32 AM

    HELP NEEDED PLEASEShouting is a good way ensure you don't get help. Also you should give a meaningful subject.
    Any advice would be greatly appreciated!!!I suggest you ask a question after providing enough information to be able to answer it.
    Also use CODE tags when posting code as it make the code more readable.
    We are more likely to help people who are trying to learn Java rather than someone who might be looking for an easy way out of doing an assignment.

Maybe you are looking for

  • How to manage muliple iCloud and Find my iPhone setups

    My wife and I both have iPhones.  I want her to have a separate iCloud account so hers and my contacts, etc., will not get mixed up.  However, I want to be able to find her iPhone using Find my iPhone with my device.  Will this work if they are not b

  • Anyway to record audio from a You Tube video and put in Itunes?

    thanx

  • Big Problem Mail, iPhoto, iMovie

    Hi all!! I have a problem on my iMac OS X 10.7.3 Lion. And there's iPhoto and iMovie and Mail that no longer starts and displays the following message <Mail Left of Mamère imprévu> And every time I make: Crashed Thread: 0 Dispatch queue: com.apple.ma

  • Syatem Status and user Status

    Dear All, I am using portal for solution manager. In status tab when I check on add status drop down gives me system as well as user status. I want only user status to be displayed in drop down. Its PCUI screen. How can I do that? Regards, Nikhil

  • Serial number material

    Hi Expert, I still confuse about serial number. I can assign one serial number for each material, for example i have serial number 1 for material A and B. My question, can i restrict serial number 1 only for material A?so material B can't be use seri