Need serious Suggestion and Help

Well,
Hi to all this is my first post so expecting correct reply to my prob actuallly in this programming era i want to get certified in java and ORACLE but first concentrating on java so first of all i need how to start up guide and finish by certification can any body provide me the clear info how to get started how to go as i am in dilema of listening j2me j2ee etc like that i need a plan how to perfectly start and cover all these whch one to cover first and which one has to cover later and i need good suggestions from all users hope u can understand my postiion
thank u ,
saipothuri

Buy a good introductory book on Java programming, plus do these tutorials:
http://java.sun.com/docs/books/tutorial/index.html
....Among those tutorial, when you tackle JDBC: http://java.sun.com/docs/books/tutorial/jdbc/index.html
use Oracle as a local DB and a DB served on network by a Web application.
For Web application and J2EE, you will have to buy another introductory book.

Similar Messages

  • Kernel panic with 1 long beep, need suggestions and helps on iMac 21.5

    First of all, my iMac spec is as follows.
    - iMac 21.5 inches Mid 2011 (Intel Core i5 2.5 Ghz)
    - OS X version 10.7.4
    - Memory 4 GB
    My situation is that I experienced a first ever kernel panic. It forces me to restart the system. I followed that, and then whenever it boots up a one time long beep sound occurs. After that a flickering screen (white and black) with normal chime sound occurs, and repeat itself for 3-4 times before actually goes into a normal login screen.
    Everything is normal, I can use any programs properly. But one thing I notice is that "serial number" is missing in "About this mac" option. I strongly remember that it's there since a time of purchase this iMac. I also take a look at System/Profiles and nothing there as well.
    I also take a look at the kernal panic log in /Library/Logs/CrashReporter and /Library/Logs/DiagnosticReports but can't find any relevant logs. There's just one file inside both 2 folders, and that log is dated which is not match to my incidence.
    I tried remove out ram, and switch the slot between them, but it doesn't help.
    Also I've tried reseting PRAM, but it doesn't help as well.
    My iMac is within the warranty but outside of technical call.
    Any suggestions and help would be very appreciated.

    Contact Apple's Express Lane.
    https://expresslane.apple.com/GetproductgroupList.action;jsessionid=KBdzQtTcydQS lvbJ6nthmsggQLWRJrXGh4phn9hb9vZNwqD0hJzp!-949435192

  • HT201413 I have a windows HP computer with windows 7 installed, when I try and update and restore my phone, I get an error message of there is not enough space on your computer to restore your phone. Any suggestions and help is appreciated.

    I have a windows HP computer with windows 7 installed, when I try and update and restore my phone, I get an error message of there is not enough space on your computer to restore your phone. Any suggestions and help is appreciated.

    You need to discard or save to an external disk and then discard some of the stuff we all tend to keep forever (movies, music, pictures, docs, apps no longer used, etc.). A clogged up disk also does not function ideally either.

  • So I've downloaded a tv series from iTunes onto my macbook pro, for some reason the episodes on my iTunes won't play at all. no sound and no images. any suggestions and help?

    so I've downloaded a tv series from iTunes onto my macbook pro, for some reason the episodes on my iTunes won't play at all. no sound and no images. any suggestions and help?

    Hi,
    As you have match, I suggest that you create a new library by holding ctrl whist launching iTunes. Select create new library. Sign into iTunes Store and activate match. You will now have access to your music and will be able to stream your music.
    Options : get a new external drive formatted for mac and either download music from match or copy music from old drive to new one. Alternatively you could reformat old drive and download music from match - I would not be comfortable using this option as it means erasing drive before being able to use with mac.
    Jim

  • I have bought an ipad on 31st october from Saturn, ( a store in Germany) in contract with a service provider called etelon . can i change my IPAD 3 to 4 .. need ur suggestions and guidance

    I have bought an ipad on 31st october from Saturn, ( a store in Germany) in contract with a service provider called etelon . can i change my IPAD 3 to 4 .. need ur suggestions and guidance

    You will need to check that store's returns policy - Apple only accept iPads bought from directly from them, not from other stores.

  • Need ideas ! and help

    i need you guys to help me show the way. i mean i have no experience doing this kinda work beforea but i wanna do it so please if any of you can provide me with some source or any other help (where can i find the examples regarding development)....
    The project i have is :
    The initial scope of work is to allow a user to first sign on to web hosting company (our company) user account. Once logged in they have the ability to quickly create a few pages web site. We will provide some sample (html) templates etc to the user.
    The other feature of the tool will be to allow users to manage their website, add or delete pages, change format etcMicrosoft Access and MySQL databases will be used on respective systems (to save html templates).
    The project will be hosted on unix and windows 2000. What do you suggest? which technology shall i use . jsp/servlet or php ... consider the performance and cost of both technologies and then answer
    Thanks in advance....

    Hi
    Your question is probably a little too vague for this kind of forum. Try looking at the tutorials on www.java.sun.com. Also you might want to hire someone who knows what he is doing.
    Good luck
    Zeev Neumeier

  • Need some Info and help.

    Dear Friends,
    I have two selects running something like this:
    select <column-names> from <table-names> where <conditions>
    union
    select <column-names> from <table-names> where <conditions>.
    there are three outer-join conditions in the first select and
    three outer joins in the second like:
    c=l(+)[in the first select]
    d=m(+)
    e=n(+)
    and
    f=l(+) [in the second select]
    g=m(+)
    h=n(+)
    The result here generates 52 rows which is correct.
    Now the case is that I am removing the union clause from the above SQL
    and converting it like this.
    select <column-names[1]>+<column-names[2]> from <table-names[1]>+<table-names[2]> where <conditions[1]>+<conditions[2]>
    but i get the error:
    same table cannot be outerjoined to two tables in the same query because i now have this
    in the new query :
    c=l(+)[from the first select]
    d=m(+)
    e=n(+)
    f=l(+) [from the second select]
    g=m(+)
    h=n(+)
    if I remove the join like:
    c=l[from the first select]
    d=m
    e=n
    f=l(+) [from the second select]
    g=m(+)
    h=n(+)
    the query executes but results into 160 rows too much of unneeded redundancy, which is wrong.
    My question is that:"Is there any way to do this? I mean to remove the union and combine the two selects into one without affecting the result of the Query which should be 52 rows only (while not affecting the joins I think this should also be the case)".
    Need your suggestions.
    Thanks,
    Vishal

    The union set operator performs a sort and deletes duplicates as a part of its definition.
    If your revised query gives you the correct results only with duplicate rows then a select distinct may be all you need.
    The cost of the sort and duplicate delete operation will affect your query performance but as the output result set is fairly small I do not think it will make much of a difference.
    HTH -- Mark D Powell --

  • Archive vs Recovery backup suggestions and help request

    Hello all, I've been using a TIme Capsule (1 TB) for 9 months to backup 3 Macs on my home network. I am very happy with it. It is starting to get close to full though. 2 of my Macs are minimal recovery types of backups. The other has a lot of info that my intent was to archive - something like 400GB of videos/photos/audio that I do not need access to and really should just be backed up to a separate hard disk. I also have a secondary backup of this data on a separate hard disk already (I like to keep 2 copies just in case). So, the question is, is there a way to prune these files off of the Time Capsule without destroying the backups for the other 2 Macs? I don't mind wiping the backups for this Mac and starting fresh if necessary. So for instance, can I simply go in to Backups.backupdb and delete the top most folder for this Mac (called "Big iMac")? Then I would reconfigure Time Machine to not include the files I do not want to backup to the Time Capsule (they are all on an external HD mounted on this Mac so that is very easy to remove from the backup list)?
    Thanks in advance!
    Michael

    mhackney wrote: The other has a lot of info that my intent was to archive - something like 400GB of videos/photos/audio that I do not need access to and really should just be backed up to a separate hard disk.
    You should not be using Time Machine as an archive app. As soon as you start to run out of space, TM will begin to delete old backups that are no longer present on your system. If your intent was was delete the photos/vids/audio from your main machine depending on TM to have this accessible ad infinitum, you are setting yourself up for a major disappointment. Turn off TM and figure out where you can properly archive these files before it is lost forever.
    I don't mind wiping the backups for this Mac and starting fresh if necessary. So for instance, can I simply go in to Backups.backupdb and delete the top most folder for this Mac (called "Big iMac")? Then I would reconfigure Time Machine to not include the files I do not want to backup to the Time Capsule (they are all on an external HD mounted on this Mac so that is very easy to remove from the backup list)?
    You can open Finder and click on the TM icon on the dock. You can delete the backup or the individual folders via the Gears button to reclaim some space.

  • Needs suggestion and help regarding my preparation

    I am looking for new job from my existing role. Here all the interviews are I am getting are scenario based and I am not able to reply most of them and as a result getting rejecting in every instance. . In my day to day work I am a part of DBA Monitoring team and everyday job is to monitor tablespace, listener, checking important mountpoint space, instance health check and backup monitoring, it is becoming boring day by day, hence I want to switch. But how to prepare for these typical scenarios based queries, I have both and single and Dataguard setup in my own laptop to play with but I am not getting any idea how to stimulate the different scenario's which can help me to crack the interviews.
    Any idea/advice and suggestions will be highly appreciated and will be followed diligently. Thanks in advance.

    Hi,
    i hope ....in real time world ...they expecting more from you than what your doing now....as DBA...
    actually as a DBA you have to do practice/play on your laptop or test environments...lots of things are there to do....
    how to prepare myself to reply those type problem scenario's and their solutions
    practice and ...........practice...practice...practice.......practice...practice...practice......practice...practice...practice......practice...practice...practice...... various scenarious.......on your test machine......
    example: 1st thing is you have to learn oracle architecture and gain the sound knowledge on that.... book expert oracle architecture by thomas kyte...
    2:backup and recovery ....every interviewer is expecting more info from you ..in this category...i hope..you have to practice various scenorious on your test machine ...
    like some of below....take a full backup of your database before proceeding any.R&D....
    1:datafile loss...system datafile losss... delete from the disk and try to restore/recover the db....do practice by using offline backup/online bcakup...
    2 redo corruption....modifing redo log size....
    3)controfile corruption/lost
    4)data gaurd archive log missing sequence like gap at standby side..wrt primary.....break the N/W connection try this scenario...practice switch over/fail over scenarious..etc..
    5)practice point in time recovery....
    6)take hot backup of database practice above ones...like datafile lost/corruption...etc...
    7) unconsciously table drop...flashback technology...
    8)RMAN..beauty of oracle...lots of thing are there to play on test by using RMAN...
    configuration....show all...it will give you the some conf parameter try to read each and every conf parameter do if its configure other than default...if you ..backup..restore...of any file missing...like datafile missing controfile file missing..etc...practice/play RMAN cmds....
    now a days every interviewer will ask lots of things about RMAN....
    9) do the cloning by using offline backup/online backup/RMAN
    http://gavinsoorma.com/2010/06/some-more-rman-recovery-scenarios/
    http://docs.oracle.com/cd/B28359_01/backup.111/b28270/rcmintro.htm
    http://docs.oracle.com/cd/B19306_01/backup.102/b14191.pdf
    once you got the sound knowldge on above things...then performence tuning.... analyzing statspack report/awr...etc..
    my suggestion is make a habit of to fallow oracle forum every day..if possible every Hr..and try to read old posts in the form.....reproduce problem by your self and fallow the.experts solution and document those it will useful for you in future ..things makes good for you...all the very best....
    thanks,
    DBC,
    Sr DBA.
    Edited by: dbc001 on Mar 10, 2013 10:36 AM

  • **NEED SERIOUS HD / FCP HELP **

    Hello everyone, I appreciate you all taking time to read & answer this post for me:
    I am wondering if you can help me with this problem i am having...here's the background story and my questions;
    i had avcd files that i converted with titanium toast (as an HD divx file) then from there i imported it into FCP 5 for editing..
    i edited everything, now I was exporting the file ..if i play the exported sequence in quicktime the size of the video is small...it's not full HD 1440 x1080 resolution...it's much smaller and there is black all around the video - hope that makes sense..
    Also - at times - i do not get any video on export - just audio.
    ANY IDEAS HOW TO FIX??
    Oh - and this video is going to be streamed online, I need the final file to be 1440 x 1080 HD or HD MOV file, I've never worked with HD files before - so I am very new to this, any help will be greatly appreciated.
    Thanks!

    i had avcd files that i converted with titanium toast (as an HD divx file)
    It started there. You encoded to the wrong format. DIVX is not an editing codec by ANY means....that is why you are having issues. And most likely you encoded to some very off the wall frame size, not standard broadcast size. You needed to encode as DVCPRO HD (since you have FCP 5), and that would be 1280x1080 anamorphic.
    BUT...you edited everything at your wonky import settings, so there really isn't much you can do. YOu didn't notice this big black border when you started editing? I don't know how to solve the issue you have with the footage in the current state...so much is wrong. I can only suggest re-encoding to a proper format and re-editing.
    Shane

  • I Need some assistant and HELP with my iPod Touch  soon

    Note: Look up above at the Top to read my Problem that I am having with my iPod Touch.
    Can Someone Please HELP ME with my iPod Touch, I am running out of patience, normally when I do need help here I usually get help and a reply within ONE day, but I have posted my problem YESTERDAY, why isn't there someone not replying to my request?? I am getting 55 views but no replys, isn't there anyone out there that can help me??
    I need HELP to reset my IPod Touch to where I had it when I was able to send emails. (can't send emails anymore from my iPod Touch)
    I want to be able to sync and send my iPod Touch sent emails info. to my Computer email program, does anyone know how to do that?
    PLEASE HELP ME AND REPLY if you can solve my problem ASAP.
    Trisha Foster

    Agreed! If you want help soon, call Apples paid support line. Now while you were waiting for us to slowly get around to answering you, you could have downloaded the manual for the ipod, so that you understood the function of the mail sync options in itunes. Mail sync only copies the settings needed to access your mail servers, from the mail client on your computer, over to the ipod touch. It does not copy any actual mail messages, and does not copy any settings from the ipod back to your mail program. The advanced section is meant to be used if you have messed up the settings on the ipod itself. It will ignore any changes to bookmarks, contacts, or mail settings depending on which you check, and will copy new information to the ipod. So in your case if you are able to access, and send mail correctly from the account on your mac, then clicking on the sync mail account button in itunes as well as the replace info on this ipod whatever in the advanced section should transfer over the correct mail account settings to your ipod.

  • Cisco Unity 7 Problem in Message Store Wiard. Showing some SRV Records Missing in DNS Table. Please suggest and help on this matter.

    Installed Cisco Unity 7 on Windows Server 2000 and Unity Server is on Domain,and Exchange we are using is Exhcnage 2007. When we reach at Message Store Wizard it is showing some error at the end that " Failed reaching for Unity in Active Directory Global Catalog. The SVR Record may be missing in DNS Table" . It shows when we slected Exchange in Process and the Selected Storage Group. And the it takes time and then shows error. Please try to resolve this issue soon, we need this solution urgently. We have already spent several days on different issues regarding Unity.
    If you need to talk regarding this matter, Please contact on +919780660619, and the conatct person name is Manav.
    Thanks in Advance
    Rosy

    Rosy,
    We cannot call you from this forum. If you truly need a call, you can open a TAC case. The info I can tell you is that you need to fix this in your dns. A simple google search of "no SRV record Windows 2000 server" comes up with numerous resources that can help you fix this. Here is just one example.
    http://support.microsoft.com/kb/241505
    and
    http://www.petri.co.il/active_directory_srv_records.htm
    I would also advise you, if you are doing a new install with Unity 7 and that version of Exchange, that you use Windows 2003 as the OS. Even MS doesn't support Windows 2000 Server any more so if you end up having an OS issue on your Unity server, we will not be able to get MS to help you. From a support perspective, I would advise you to use Windows 2003 Server in this implimentation.
    Thanks!
    Tray

  • TS3899 Since switching ios7 cannot send and recieve e mails - doing my head in need some advice and help!

    Open to answers... Not getting help from apple

    You can try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists. If it does, remove the email accounts from mail and add them again.

  • Need some advise and help Transferring files one mac to other

    I have created quite a problem for my self and can not seem to get out of it.
    I transferred my system from the G4 to the new Intel IMAC. Ended up with two accounts on the new Intel IMac. Was told to go to user/ and transfer files from one account to the other. Lost all of my files. Can not get the netscape back on with my bookmarks, Safari does not have any of my stored bookmarks, Quicken, Family Reunion are locked. Have done the permission repair. Still messed up.
    To add to this, I than decided to retransfer from G4 to Intel IMAC, but can not establish a target disk using Firewire. Follow the instructions holding T down and the screen comes up saying to reboot or shut down, it will not go to the target mode. And it does not appear that the G4 has a firewire extension now, it did two days ago. Can any one help?

    The Windows drive is probably formatted NTFS which is not natively writable
    by the Mac. It should be formatted as FAT32 to be usable on both.
    Dave

  • Needing Serious iPod Touch Help!!!

    Hi. I have an iPod touch and when i connect it to itunes it says it cant reconize the iphone, but its not an iphone, so the ipod icon doesnt show up on the side, therefore i cannot sync my ipod after the purchases i have bought. Any solutions?

    Nothing is seeming to work. Today i plugged it in, and the iPod icon showed up, and then dissappeared, and said i had to restore my ipod, so i did, but it said it could not restore my iPod.
    PS- We found out we had an "intruder" on our computer (or a hacker..?), but we removet it/them. (if thats any help)

Maybe you are looking for

  • CUCM OS Administration Page Not There in CUCM 8.6

    No option for  CUCM OS Administration Page in navigation menu in CUCM 8.6 Unable to access CUCM OS Administration page. following error came while using  url  http://<ip-address>/cmplatform HTTP Status 404 - /cmplatform type: Status report message: /

  • How to restore or re-index recovered SWVMS16 recordings

    I have recovered previously "recycled" recordings to the recording share of the SWVMS16 software. However, when I load playback, they are not there. I suspect they have been removed from the recording database but I cannot find how to restore them. A

  • How can I get PP CS4 to automatically locate missing assets?

    Hello.  I'm using CS4 on a Hewlett-Packard PC computer running a 64-bit Windows 7 operating system. My computer recently crashed necessitating a visit to my friendly, local repair shop.  When I got it back, I had to reload PP which I did but when I t

  • WL 7.0 jCom Compling

    Hello, I stubbed out my COM dll fine. But when I went to compile the .java files, it could not find the com.bea.jcom.Dispatch class. This class was not in weblogic.jar. Anybody know where it is? TIA, Jeff

  • CS4 crashes

    Jun 10, 2009 12:05 PM CS4 crashes I recently upgraded from Photoshop CS to CS4. I also run Elements 6. My problem: Now, Elements crashes whenever I use the edit function. CS4 allows all editing features but crashes with attempt to print. I also have