Newbie: starter qtn

Why do I get the foll error when I try to run my compiled code
java Test
Exception in thread "main" java.lang.NoClassDefFoundError: Test
what am i missing?

This may help.
http://java.sun.com/docs/books/tutorial/getStarted/cupojava/index.html

Similar Messages

  • Newbie: Starting an Oracle Database on Linux

    I am doing support for an Oracle Database installed on Red Hat. My problem is that I do not know how to start the oracle database. I had to reboot the Linux box and the database did not restart.
    What do I need to do to start the database?
    Also the Linux does not have the GUI installed, I am working from the command prompt.
    Any help is greatly appreciated.
    Thanks in advance.
    Ray

    if u are using oracle 8i, you can use de command:
    $svrmgrl
    svrmgrl> startup;
    if u are using 9i:
    $sqlplus /nolog
    sqlplus>connect /as sysdba;
    sqlplus> startup;
    Hope this helps.
    Cynthia Pulido
    Monterrey, Mexico
    [email protected]

  • Newbie: start a widget

    Hi there,
    I'm completely new to widgets, and my question will look like a silly one, but here it is:
    How can I start a widget?
    It looks like SAP Widget Foundation has been successfully installed on my computer, and I also started a JCO instance (and connection test was successful)
    But: when I download a Widget, I get a .widget file. What am I supposed to do with this file? I can't either uncompress it nor start it with JRE.
    So? Where's the trick?
    Thanks and best regards,
    David.

    hi,
    You need to install Yahoo widget engine also....

  • Newbie Starting from Scratch! Need help!

    Hello!
    We have been working toward activating for the public our iTunesU presence. The goal was to have the site public on the iTunes Store this week, which is the week of our inauguration of our new President of the university. So, the past months have found us designing graphics, generating content, and we are at long last ready to move this project to the public.
    My background is in digital imaging, and I do have experience in site work and network administration, but I'm far from a web expert, so could use all the help and hand holding possible! One other concern is that I noted that it can take 2-4 weeks for activation of the public link on iTunes, which contradicts what I've been told in the past by Apple.. I just thought that once I clicked the public button that the site was live. Since our goal is to have this working this weekend for next week's events, I'm more then a little concerned. So, any advice on this would be welcome.
    We aren't starting off with courses, but just a small set of content. 3-4 video interviews about Pop Art, an Audio Interview (Robert Moog), and a lesson on Jazz Drumming. We have artworks finished, and files ready to upload. So, trying to understand a simple, yet easy way to present the material.
    That is where I'm not totally understanding the site hierarchy, and the best way to approach it conceptually. Lastly, is there anyone that I can call to talk through some of these issues?
    We are excited to finally bring this project to fruition, and thanks for your help. Reading your posts and answers has been great!
    Harris

    nysepete wrote:
    I guess I want to delete it from the Network Choices.
    That should work.
    Or am i better off just Modifying it?
    Those setting are easy to recreate, so deleting it doesn't cost you much effort.
    the guy thought that my iMac might get confused as to which connection i want it to default to -- ie the hardwired ethernet cable or the wireless network
    If you don't want to sure you're not going to use AirPort you can either turn it off or use a "location" that doesn't have an AirPort connection item.
    i can set what priority the iMac will conduct its seacrh for internet -- and assuming the ethernet wire is functioning -- then it will default there and only attempt a wireless connection if the ethernet cable fails for some reason
    I have Ethernet first and AirPort second. Since my last reboot 99.95% of the network traffic is using the Ethernet port.
    otherwise - does it sound like based upon my flow chart that what i want to achieve is possible to you?
    Yes. There might be some subtle considerations given that your two AirPort base stations are connected via Ethernet, although I'm sure there's more than one way to configure your equipment. There are people around with more experience with that sort of thing than I have who might be able to offer their advice.

  • Newbie starting a database app need direction/suggestions

    I've been mucking about with C# and SQL databases for some time now and I've decided its time to try a serious project. I want to create an application for managing on the job training at work. I have played around the last week with SQLCE and making
    little experimental databases to learn more about relational databases. I have a rudimentary understanding oF RDBMS(wouldn't go so far as to say basic), I know how to do simple queries, subqueries, basic joins, and I've even played with triggers a bit (in
    MSSSEE).
    I could probably make a go of this project and make something work but I figured since its a pretty basic (to an expert anyway) I'd probably be better off going to the community for direction and advice (not to get people to code for me). I've partially planned
    out how to set up the database and I'd like to describe what I've come up with so more knowledgable folks can tell me if its a good or bad path to follow and perhaps point me in a better direction for the bad parts. I'd rather understand what I'm doing and
    learn the proper ways than simply say "can someone write this for me?".
    Anyway, I thought a lot about what this app needs to do and did a few experimental projects where I realized even more things that it needs to do. I think I have the requirements just about covered.
    Some training happens only once, some (by law or policy) have to be repeated periodically, some need a subset redone due to movement of an employee from one job or facility to another where some, but not all, of the previous training needs to be redone (machinery
    operator moving to a different plant with the same function but different systems would have to relearn the system specifics). Some subjects apply to all employees and others to very few.
    The most basic function is to let supervisors assign training tasks to employees and track their progress but the application also needs to alert a supervisor of upcoming due dates for assigned training and upcoming re-do dates for the periodic training. In
    some cases, like with mandatory periodic training, it could (should?) initiate assignment rather than wait for a supervisor to remember to assign the training manually.
    The application could be set up to have every bit of training for a job class organized under that job class but I think it would be more flexible to organize around a specific skill or area of duty.
    For example, an ice rink worker needs to know how to operate the refrigeration plant, operate the ice-resurfacer (generically called the Zamboni), perform emergency duties (fire, earthquake, chemical leak, etc), and several other areas of knowledge. One area/skill
    would be to operate refrigeration plant, another would be Emergeny response. Each of these would be a training "topic". Many topics would be applicable to mutiple job classes which is why they are under a seperate table from books.
    Each topic would be broken down into focused steps - small bite sized chunks that the employee would learn then be tested on that knowledge. As each step is completed the examiner (supervisor or "expert" in that field) marks the step as completed
    and records that in the application (might be a weekly or monthly hand-in of books to record progress).
    Each job would have several topics they have to know so the topics are organized in what I've ingeniously decided to call a "book" (talk about imaginative!). We have areas where a person in a job class actually has a different knowledge requirement
    than the same job class in another area. There are commonalities of course but I don't think it would be good to have every person in a job class expected to complete training in something they aren't doing and in many cases will never be required to do in
    their entire career.
    So a book would something like Arena Operation, Boiler Operation, WHMIS, or Emergency Response. A job class would be assigned several "books" to cover all the areas of knowledge they require.
    Now to kick off thinking about actual database design.
    The training definitions would be in three tables: Books, Topics, and Objectives. A book has multiple topics and a topic has multiple objectives.
    The book table would have an int primary key, a title field, a longer description field (explaining the aim of the book in some way), a time to complete field (add to assignment date to get a due date), a repeatability field (The values here would indicate
    a one shot, can repeat, or must repeat), and a repeat frequency field (how long before it has to be repeated - might be a date or a datediff, haven't figured that out yet).
    The topics table would have an ID primary key, a title, and another longer description field for information specific to that topic.
    The objectives table would had an ID primary key, a Topic foreign key, a short description, a long description, a "given" field outlining what the trainee needs and a "denied" field outlining what the trainee can't have (no drawings allowed
    when your describing a system).
    Later on I want the program to be able to print shirt pocket sized booklets for trainees that contains short descriptions and larger OJT manuals that have all the details that trainees can refer to.
    The next table needed would be the employees table. I think the obvious ID field, first and last name fields - possibly an initials field (in case of identical first and last names), and possibly a "deleted" field for employees that leave (don't want
    to actually delete them in case they come back at some later date). If not a deleted field then a "former" employee table that an employee is copied to when they leave.
    Several relations tables would be created when a book is assigned to an employee. I haven't quite figured out exactly what to use which is why I chose now to post this. Some direction from here could save a lot of headache later. The relations tables would
    contain only "current" books - ones that are still in progress.
    I was thinking of EmployeeBook, BookTopic, and TopicObjective.
    EmployeeBook would have EmployeeID and BookID, a date field for the assigned date and another date field for the due date. I had thought of just due date or just assigned date and a time allowed but I think it might be simpler to have both dates specified.
    I'd also thought of making a unique key on EmployeeID and BookID but quickly realized some books may have to be assigned many times (WHMIS etc).
    BookTopics would have a primary key of BookID and TopicID - cant think of any more fields here.
    TopicObjective would have TopicID and ObjectiveID as well as a status field (three values - not complete, complete, not applicable) and an examiner ID field (for who signed off on the objective).
    Once a book is completed I was thinking of deleting it from the relational tables and creating an entry in an archive table - no relations, everything would be the full text so if the training data is changed it won't change the completed training records.
    The indexes would be whole names and any reporting would have to be grouped by book name, topic name, etc.
    So thats the general idea. I'd dearly love any suggestions or advice people have. What sounds reasonable to me might be recognized as a fool's errand by someone with actual competence in database programming. I'll work on specifics once I know I'm not running
    full tilt without a flashlight down a blind alley in the dark.
    Thanks for getting through the entire post 8)

    Hi Ghidera,
    From my point of view, there is no need to design the BookTopic table. You can create a EmployeeID filed in the TopicObjective table, then
    create a foreign key on the column EmployeeID
    and reference the column EmployeeID in the EmployeeBook
    table. Also you need to create foreign key relation from EmployeeBook table to Employees table and Books table.
    Besides, you should create a foreign key on a column in Topics table and reference the column ID in the Books table.
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Need some advice - Newbie starting an advertising business..

    Hello,
    I am new to Indesign, having used quark previously.
    Basically i print and publish an advertisment magazine. I create these advertisements from scratch or in some cases from logos i am sent by the clients via email.
    I need to understand whether the logo's sent by the clients need to be in a certain format in order for them to be used in Indesign?
    How difficult is it to manipulate imported images using indesign?
    Thanks
    Don

    Indesign supports quite an array of image formats, the most common illustator/photoshop .eps files .tif png. jpg. If your printing as you know .eps files are probably the best to use.
    Well I have always been lead to believe they are.
    If your putting together a set of guidelines for your client I would say you request files are either supplied as illustrator .eps files or photshop .eps/psd files with a PDF for back up/reference. If you have the native files you can then edit the files accordingly if the client wishes.
    I used Quarkxpress for years 4.0 being the best to mind.
    After that it became bloatware and found it diffiicult to get along with. CS is a dream to use as all Photoshop/Indesign and illustrator
    utilise a very similar intuitive interface.
    I would also recommned lynda.com for tutorials in the creative suite. You get videos and exercise files to work with so you can learn at your own pace.
    Only ever havinig owned the DVDs I have never had a subscription. I'm sure there is a forum for feedback or anything that you do not understand.
    As well as the Adobe Forums.
    dpi

  • Newbie / Start-up help

    Hello,
    I hope everyone is well?  I received an invitation and when I opened the link it said that I need another invitation?  I have done my payment.  In the creative photography plan it stated that I get Lightroom, but when I downloaded it, it only gave me an option for a trial.  Photoshop did download. 
    Can anyone please be as kind as to advise me on the above?  And I need to know where I can download vectors, actions and things like that please.
    Kind Regards,
    Jacqui

    Hi Jacky,
    Please refer to the help document below to fix the issue:
    Creative Cloud applications unexpectedly revert to trial mode | CS6, CCM
    Regards,
    Sheena

  • An OC Newbie Try to Break the World Record by Using MSI X99S XPOWER AC

    Saw an article on MSI forum and thought it’s quite interested, so here I translate it. Don’t really have the time to translate it word by word, so go check here for the original article if you are interested (but you need to speak Chinese, lol…..).
    link: forum-tc.msi.com/index.php?topic=113081.0
    Long story short, a newbie got inspired by MSI MOA 2014
     and started to dig in the OC world. After checking all the rules, he decided to try it on his own. Here’s the gear he used:
    CPU: Intel i7-5960X 3.0G (8C16T)
    RAM: HyperX Predator DDR4-3000 16GB Kit (4x4GB) CL15
    MB: MSI X99S XPOWER AC
    VGA: MSI GTX980 GAMING 4G x4
    SSD: Plextor M6 Pro 256GB
    Power: Cooler Master M2 1500W x2
    CPU Cooler: SilverStone TD03
    OS: Win 7 64bit SP1
    MB
    Easy button design and 3 sets of v-check point made it more user friendly for Ocer
    Special extreme OC kit (contain with thumb drive, OC fan stand, Delid Die Guard and OC Backplate. Personally think it’s 4 handy tools especially for Ocer)
    VGA
    Here’s the pic. after assembling all the gear together
    This newbie is using air cooling VGA & RAM + water cooling CPU to run 4 way SLI, below is the static under normal usage without OC.
    3DMARK - FIRE STRIKE Extreme
    3DMARK - FIRE STRIKE ULTRA
    Then, he try to use OC Genie buttom push the CPU to Gear 2, CPU 3.7G, RAM 2400, below is the static under this circumstances.
    3DMARK - FIRE STRIKE ULTRA
    He did mention that overheating would be a major problem of 4 way SLI, water cooling should be a better solution instead of air cooling.
    Anyways, after few times of trial, here comes the best combination he can get.
    CPU
    CPU Frequency: 4.6GHz
    DRAM Frequency: 3,200MHz
    VGA
    GPU Frequency: 1,390MHz
    DRAM Frequency: 1,803MHz
    3DMARK - FIRE STRIKE Extreme
    3DMARK - FIRE STRIKE ULTRA
    He upload this onto the HWBOT and found that he ranks 29th place on Fire Strike Extreme and 6th place on Fire Strike Ultra. Looks good!
    Link: hwbot.org/submission/2690492_ocbot_3dmark___fire_strike_extreme_4x_geforce_gtx_980_19149_marks
    link: hwbot.org/submission/2690575_ocbot_3dmark___fire_strike_ultra_4x_geforce_gtx_980_11338_marks
    To better show you the effect of using 4 VGA instead of 1, he used Assassin’s Creed Unity and did some comparison as below.
    Single MSI GTX980 GAMING 4G: FPS will between 3X-4X, 50 at some points.
    If using MSI GTX980 GAMING 4G * 4 without OC, FPS will between 50 – 70, same as what we heard, the improvement is not as much as we thought.
    But when it’s under the loading process, it shows 7XX FPS
    All in all, here’s his conclusion:
    Under OC mode, MSI XPOWER AC’s stability does meet his expectation, and he’s satisfied with the extreme OC kit. “Memory Try It!” function in BIOS make it easier to adjust.
    Oh well, it seems like it’s a good product to be expect!

    Quote from: WSGRT on 23-January-15, 13:22:33
    this newbie start with the most powerful rig!!! Btw, thanks for translation
    Personally think it's quite impressive for a newbie to get such a great score.
    And sure he choose a great product to start with! 

  • MOVED: An OC Newbie Try to Break the World Record by Using MSI X99S XPOWER AC

    This topic has been moved to User Reviews & Modding.
    https://forum-en.msi.com/index.php?topic=252672.0

    Quote from: WSGRT on 23-January-15, 13:22:33
    this newbie start with the most powerful rig!!! Btw, thanks for translation
    Personally think it's quite impressive for a newbie to get such a great score.
    And sure he choose a great product to start with! 

  • [Solved] headless server suggestions

    Hi everybody...
    more of a archlinux user poll.
    I'm running a server previously centos / debian...
    now arch64 which it purrrrsssss happily with.
    I got all my samba torrent stuff figured out.
    Now I want to make this thing headless.
    I've heard that freeNX is a good option though I haven't been able to get it to work.
    I've only dealt with headless servers in the windows world and am a little confused about the linux side of it.  I have a user profile set to auto login, I want to come in with a remote client to that exact same session.
    any one have suggestions? wiki's? personal stories? strategies?
    Thanks for any input
    Last edited by jduped (2009-06-29 09:35:56)

    tones of reply.
    jowilkin
    The issues I had with nx was in the connection side of things but not in arch.  It was in centos got it installed had the client on the test box and couldn't get it though I could ping in and ssh in. 
    B
    I was actually thinking about it the other day...I know how to do everything in command prompt in linux and windows I kind of just learned from experience...But I find mass file/picture/music/media organizing easier in a gui. small tasks are easier to do via terminal.
    I think I'll try freeNX again.  A buddy of mine had the hamachi + freeNX thing going on he did it ubuntu and I have issues with ubuntu though it seems to be where most newbies start...I started there like 3 years ago.
    Any other suggestions keep um coming

  • I have a dualG5 mac. Does anyone know what this means?

    Script ERROR: 16, (missing ')' or ']' in file# 0: Scripts/AHT_scripts.sc, line# 6450
    Probably trying to use an undeclared structure
    Script ERROR 25, (Not a struct or union element) in file# 0: Scripts/AHT_script.sc, line# 6621
    Aborting due to Fatal Error
    Enter Script name or Command (main.sc):_

    Don't know why you did any of that.  It looks like some software problem.
    -- You should try creating a new account & seeing if the problem persists.
    -- lets print out a file for clues
    Macintosh-HD -> Applications -> Utilities -> Terminal
    # press return to run the command.
    mac $ sudo find / -iname 'AHT_scripts.sc'
    Password:
    The sudo command will ask for your administration password. No characters will appear when typing your password. Press return when done typing. sudo stands for super user do.  It's just like root. Be careful.
    Post insteresting lines. post folder it is in.
    -- What web site are you visiting?
    -- Does the machine work except for this situation?  Work outside of a web browser?
    -- Try another web browser. 
    Safari 4.1.3 for Tiger
    http://support.apple.com/kb/DL1069
    iCab - The Taxi for the Internet
    http://www.icab.de/
    for PPC --  works for me on 10.4.  Supports 10.5
    tenfourfox -- It's a port of the latest FireFox to run on older hardware and software.
    "World's most advanced web browser. Finely tuned for the Power PC."
    http://www.floodgap.com/software/tenfourfox/
    alternative download site:
    http://www.macupdate.com/app/mac/37761/tenfourfox
    -- Upgrade to 10.4.11.
    I'm having difficulty figuring out what an sc file is...
    SC file is written by  SuperCollider. SuperCollider is an environment and programming language originally released in 1996 by James McCartney for real-time audio synthesis and algorithmic composition.
    another iste:
    Detailed information for file extension SC:
    Primary association: Framework
    Company: Selections & Functions, Inc.
    Other applications associated with file type SC:
    Ingres (Embedded SQL/C Source File) by Computer Associates International, Inc.Ingres is an open source relational database solution that leverages information resources across a range of platforms, including Linux, UNIX, Windows and OpenVMS.
    Paradox Source Code
    Sega (SC-3000 Image File) by Sega of America, Inc. Related links: Emulation Newbies Start Here!, Emulator Zone, MEKA Multi-machine Emulator
    Skills Connection (Test Set Document) by Scantron Corporation This association is classified as Database.
    UNIX (Spreadsheet Commands)Typically lower case on *nix systems.
    Unknown Apple II File ((found on Golden Orchard Apple II CD Rom))

  • Extension template/skeleton

    Hi
    Does anyone/adobe have an extension template/skeleton to get
    newbies started with?
    Best practice file management with useful things like
    outputting to a new file, saving to a new file, saving preferences.
    May help saving the community doing the same things over and over
    again.
    all the best
    Dave

    Dave,
    There are many types of extensions, but the easiest way to
    get started
    is to open the History Panel (Window > History), select 1
    or more steps,
    right-click and select "Save as Command…". This creates
    a Command in the
    *User* Configuration folder which is usually something like:
    on WinXP
    C:\Documents and Settings\[username]\Application
    Data\Adobe\Dreamweaver
    CS4\en_US\Configuration\Commands
    Note that the "Application Data" folder is hidden by default,
    so you may
    need to enable displaying of hidden folders in the Folder
    Options of the
    File Explorer.
    Poke around in the *Application* Configuration folder here
    for lots of
    code that is delivered with DW:
    C:\Program Files\Adobe\Adobe Dreamweaver
    CS4\en_US\Configuration
    There are online Extension and API docs here:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Extending/index.html
    http://help.adobe.com/en_US/Dreamweaver/10.0_API_Ref/index.html
    Hope this helps,
    Randy
    > Does anyone/adobe have an extension template/skeleton to
    get newbies started
    > with?
    > Best practice file management with useful things like
    outputting to a new
    > file, saving to a new file, saving preferences. May help
    saving the community
    > doing the same things over and over again.

  • Templates in DVD SP4?

    I'm going to purchase DVD Studio Pro 4 pretty soon. I'd like to know if there are some templates in there to get me (a newbie) started?
    I think I've graduated from iDVD and its frustrating lack of flexibility.

    Yes - Apple has thoughtfully included all of the templates available in DVDSP3, and added some HD templates for the latest version.

  • Solution Manager : Realtime Performance Metrics and Alerts

    Hi
    How can I configure Solution Manager to get
    - Realtime Alerts
    - Performance Metrics every 5 minutes
    - Business Performance Metrics every 5 minutes
    Can I have all the above data in CSV / HTML/ XML format
    I have read the Solution Manager documentation, and it is cryptic for newbie starter
    Any help or pointers to someone who has done this before, will be very valuable.
    regards
    Raj

    How do you get CCMS Alerts and E2E, can you elaborate or point me the steps/docs....
    Thanks!

  • Package manager aka 'pacman'

    So, I am new to Linux operating systems. I did at one point mess around with Linux Mint && Peppermint (which probably explains why I love LXDE). I quickly grew bored...So, it was short lived and I reverted back to Windows. About 6 months ago I decided I wanted to further my knowledge in Linux...mostly because I had been rooting and messing around with ROM's on Android phones. I did my research around the internet and decided that I'd go Arch because I read somewhere that there's two approaches to learning Linux...'Slow and steady' or 'Here you go'...I think you learn quicker in a more volatile environment because you always second guess and of course read read read read read read (It's a good thing I like reading...thank you for the support in the forums as well as the wiki)....What I'm getting at is what makes Arch different to other distros? I know that pacman is a wonderful package manager but, I don't know how. What makes it different? Can you explain this to someone that has basically only ever used Arch?

    /dev/zero wrote:
    dazemc wrote:What I'm getting at is what makes Arch different to other distros?
    I came to Arch for several reasons:
    I noticed that every time I googled a Linux problem, the Arch Wiki came up as the top answer;
    As a bleeding edge distro with lots of packages in the AUR, Arch has the best support for new hardware - I could not get my laptops to work properly with other distros, but with Arch it was always a piece of cake;
    When I needed support, I found the forums friendly, useful and timely;
    I liked the hacker-friendly KISS philosophy.
    You mention the package manager, but that was never really high in my considerations. Overall, the deciding factor was necessity (to make hardware work and to have better access to newer software that I need); the active community and hacker-friendly philosophy were nice bonuses that convinced me to stick with Arch even when it's not really necessary to have such a bleeding edge distro.
    I have to agree in one way, "...the package manager, but that was never really high in my considerations..."
    I don't care about the package manger to be honest...The comunity behind Arch is the most complete and comperhensive I have seen yet...Coming from a 'newb' start...I find the wiki along with the AUR more helpful than any other distro I have found...I thank you all for that and I'm doing my best to return the favour...I.E. helping out in the forums

Maybe you are looking for

  • External monitor using separate menu bars

    I got an external monitor plugged in. Is it possible to run separate menu bars on each monitor? Menu bars corresponding to the applications on each monitor?

  • Automatic criteria in Vendor evaluation

    Can anybody tell me what is difference between automatic criteria and semi automatic creteria in vendor evaluation? can anyone explain me automatic criteria with some example? Thanks and regards sriram

  • Srw.run_report problem

    Hi all, i'm trying to run a report inside another report using srw.run_report routine, but i get the following error: REP-0110: Impossible to open file 'app/OA11i/NOCE/software.ds/noceappl/xxene/11.5.0/reports/I/XXENE_PROPACCPDRNOINT.rdf' the full co

  • 3D Coordinate System

    Hello everyone, I am new to Java 3D and was trying to create a simple 3D Coordinate system that has an x, y, and z axis. Can anyone help me or point me in the right direction regarding this issue? Appreciate the help. Moe.

  • LSMW for FD32

    hello All. i am doing LSMW for making the changes in FD32. here i wish to update the customer credit limits for the fields KNKA-KLIMG KNKA-KLIME KNKK-KLIMK what all are the steps that i need to do. please suggest,i have tried following the standard s