Which type of Unix platform is most used by Company?

Hi, there,
I'm working on the Win2k using Ora.9.2,but in fact,
I want to learn Unix ,because most of companies are running Oracle on Unix, however, as I know, there are
many kind of unix, so my question is which unix is
the most used by the business company(such as banks)? do all of unix have any in common? do they have common command available to all unix?? pls give me guides,thanks a lot!!!
NewUnixer.

Yes all Unix have a common base. Most commands are the same.
The difference is in the Unix Kernel; how dynamic the kernel is, how the memory works, ...
I think the more used is IBM AIX for the application server and Linux for "little" server (mail server, firewalls, ...). But i think Linux will be more and more used in the future cause it seems that some company will probably switch to Linux (we heard about HP switching to Linux for few years now and some rumors about IBM too...).
Sun already sell some Sun Box with Linux on... and the reference OS of Oracle is Linux now...
Fred

Similar Messages

  • Which type of text field should I use?

    I am having a problem selecting the best object to use to display and control text. If I use a TextArea component, I have problems controling it with code and I hate getting caught up in Hbox and VBox layout issues. Also, I cannot seem to generate a TextArea in ActionScript.However, I can create a listener with a valueCommit event which allows me to respond to changes to its content. Can I create a TextArea with AS?
    On the other hand, I can generate a TextField with AS and then control exactly where it appears, but I cannot find an event that allows me to respond when the contents of the TextField changes. Is there an event that responds when the contents of a TextField changes dynamically?
    Thanks for your time.

    TextField is smaller and faster.  It should dispatch a CHANGE event when the user types, but no event if you programmatically set the text.
    It also depends on whether you need scrollbars or not.  You can certainly create a TextArea in AS3.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Which Type of Airport Card Should I Use

    I have a Flat-Panel iMac Early 2003 G4 and I want to set it up on a wireless network. I currently do not have an airport card and I wanted to know what kind I should use the regular or extreme.

    You have to determine which G4 variant you have--some use the original card and later ones use the Extreme.
    Assuming you have OS 10.3 or later, Do "About this Mac..." from the Apple menu and, in the resulting window, click "More Info..." That brings up the very useful System Profiler. The first Profiler screen you see is Hardware Overview and holds your answer.
    Look at the line, "Machine Model"--could also say "Machine Identifier" if you have Leopard OS, but should be the second line. If the code is "PowerMac4,2" or "PowerMac4,5" you neeed the original Airport card. If it's "PowerMac6,1" or higher, your iMAc takes teh Extreme card.

  • What type of blank DVD should I use to record photo images that are on my drive E

    I own a HP Pavilion dv5000 with an RW DVD + R DL multi recorder.  My question, which type of blank DVD should I use to record images that are on my drive E?  I can record without problems on a CR-R but when I try a blank DVD-R it won't work.  Please advise.

    Hi,
    Back to the good old days, HP supported only DVD +R discs, some vendors supported DVD -R discs. Now all vendors support both. You may want to try blank DVD +R. Hope this works. Please post back the result.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Query to show the most useful Indexes in SQL?

    So I'm familiar with the Queries that show the Bad Indexes, but, is there a query I can run that shows which Indexes are the best, or, most used?
    This topic first appeared in the Spiceworks Community

    Hi ganesh,
    Thanks for response.
    but assumption is wrong.
    the values below 200 also needed and the values above 200(400,204) has to show 200 in the output of the report.
    format before the output of the query.
    james 400
    kitty   200
    jhones 180
    francy  204.
    Now my output has to show
    james 200
    kitty   200
    jhones 180
    francy  200.
    I hope you can understand better now.
    Thanks,
    James

  • Posting using cross company code transaction must be blocked

    Hello Guys,
    I have a  problem related to cross company code transaction.
    In the OBA7 I have the document type KE that not allows posting using cross company code transactions. In the moment that I am creating a new document through the FB01, I have an error as "Consolidated companies US52 and ' ' are different
    Message no. F5080. As a results, the document cannot be created by this way. This is the correct process.
    But I have several documents that was used the doc type KE and the cross company code transaction was used. This is my issue. I don´t know why these documents were posted. The document come from another interface via IDOC and the IDOC not errored out.
    Can anyone help on this?
    Thanks
    Rafael B.

    Hello, I´ve checked the log and no changes since 2008.
    The document was created in 2010.
    This is the message: "No logs found for the selected period"
    More suggestions?
    Regards.
    Rafael

  • Which software do you use on the linux or unix platform

    I am learning oracle, so I am wondering, in the real world, which software do you use to administrate oracle in the company, on the linux or unix platform? sqlplus?
    certainly, I think you can also open the OEM GUI in linux or unix

    If you are learning, surely enough , learning any o/s other than windows will help. About the industry, there is not just one player that rules in the o/s market. It depends on a lot of factors , cost being the most dominating one. Linux, being a little less costlier, is surely a good choice for many but so is HP UX or AIX. Without bothering about what is more popular, learn one which you can get your hands on in your learning environment more easily. For example, it would be tough to have a AIX based machine in your home and a linux based would be lot easier. So learn one, ,learn it good. When you go to a different shop, use your previous knowledge and learn the know-hows of that o/s as well.
    HTH
    Aman....

  • How to find cd rom drive in windows and unix platform using java program

    Hi,
    I am having the requirement of finding the cd rom drive
    using java program. I do not know the label and which
    one is the cd rom drive. also I want to know how many
    cd rom drives are there on my system. I want the solution
    for windows and unix platforms.
    If have any suggestions please mail to [email protected]
    Deepak

    Ughhh.. I had the same problem with multi platform file-system detection
    First off - Unix.
    Do you know for sure you have all your drives mounted?? This could be a big problem because java will not see unmounted drives... So you can scour thru your /etc/fstab to find out which drives are available... or you can mount all and show roots... (Yuck!)... You've got timeouts and all sorts of things to worry about...
    I would then shy away from the java.io.File.listRoots() on unix and rely on parsing your fs file. If a user would like to see the medium in the drive. Do a Runtime.exec and mount the drive, then you can grab the filesystem by wrapping it in the java.io.File object. ( NOTE - this will hold well for your NFS mounts as well which might be buried under other FS. So you now have detection for that as well. ) Labels are also noted in this file. Let me know if you don't know the difference between mtab and fstab....
    Second - Winders.... Corney but I love saying that.
    The listRoots is a good solution. As others have said CD-ROMS will not be writable. Use a combination of getName and getPath to decipher the label and mount point.
    Hope this helps!

  • How to get the OS type (Windows/Unix) on which Siebel Server is running?

    Is it possible to get the OS type (Windows/Unix) on which Siebel Server is running?
    i.e. Through eScript/Workflow etc can we extract the OS type on which SIebel is running?
    I need to create a folder/directory on the machine where Siebel Server is running. But before creating the folder I want to know the type of OS(whether it is Windows or Unix). Can I get this piece of info by some code or using workflow etc?
    I am using eScript to create the folder using Clib command.

    Hello,
    If you are using Reports 9.0.x, you can import the java class (java.lang.System)
    and use the getProperty method (os.name, os.arch, os.version)
    If you cannot / dont want to use java code, you can create an env var (REPORTS_OS for example), initialize this var with the system info and read it with the builtin TOOL_ENV.GETVAR.
    Regards

  • How to find out which type of the driver is used in our application?

    Hi all,
    can anyone tell me how to find out which type of the driver is used in our application?
    Thanks in advance,
    Phoeniox

    Hi,
    Check out this...
    Class.forName("com.mysql.jdbc.Driver"); //if u r using MySql
    List drivers = Collections.list(DriverManager.getDrivers());
                   for(int i=0;i<drivers.size();i++)
                        Driver driver = (Driver)drivers.get(i);
                        String driverName = driver.getClass().getName();
                        System.out.println("Driver "+i+":::"+driverName);
    you need to load the driver and display in the same program.
    Then only you'l get the required result.
    prakhyath

  • Which platform I should use ?

    which java platform I should use to creat message display and settings in mobile phone ? and how can I add language code in java to show different laguage(other than English) on mobile screen ?

    Or is it the tabbed appearance of the portfolio cover which interests you? I think this might be made with Flash Builder. Very bad choice, to use Flash, in my opinion. Looks slick, certainly, but locking out all customers with iPads and Android is just lunacy. But see Adobe Digital Enterprise Platform * Demonstrating the Flash Builder-based interactive statement

  • I have a problem: every time when i want to download free apple applications in the apple store, apple store asks me which type of credit card i want to use. Why did it ask this question?

    i have a problem: every time when i want to download free apple applications in the apple store, apple store asks me which type of credit card i want to use. Why did it ask this question?

    If you are within 14 days of purchase you can still return the iPhone and get the phone that suits your needs, however, I think you will find that no matter which phone you get the content provider will want to know how you are going to pay for future purchases. For Android phones it is Google, and they will certainly want to know.
    To create an Apple account without a credit card see: http://support.apple.com/kb/HT2534

  • Which type of documents are used in a project

    which type of documents are used in a project whether it may be implementation or development or upgradation or supporting
    and pls send the procedure how we can proceed in these cases as abaper
    thanks in advance

    Hi Praveen,
    Generally we have FS(Functional Specification) is created by Functional people.
    And technical designer develop the TS(Technical Specification).
    Developer gets the TS and write ABAP code for development.
    There are other documents like:
    1. TR file for tracking all transports
    2. TCR(technical change request) for change later if FS change.
    Hope it will clear the process.
    Regards
    Krishnendu

  • Which type of ADC is used in M Series, S Series and C Series DAQ Cards?

    Hi
    I want to know which type of Analog to digital converters(ADC) are used in M Series and S Series DAQ Cards. I know that DSA Cards and some C series are using Delta Sigma ADC. What about the ADC used in non delta sigma C Series modules. Why Delta sigma ADC is not used in M series and S series DAQ cards.
    Regards
    Samuel J

    Hi Samuel.
    The ADC type used is Succesive Approximation ADC. You can refer to the following links for your reference.
    http://digital.ni.com/public.nsf/websearch/32FD9AA817D0EBE68625708C005E1B26?OpenDocument
    Hope this helps.
    Thank You.

  • Our organization uses an Oracle database hosted on a Unix platform and one of our data processing outputs is a "stuffer" document that has a barcode, and Unix jobs automatically send the document to a printer.   Is there a way, or does Adobe have a produc

    Our organization uses an Oracle database hosted on a Unix platform and one of our data processing outputs is a “stuffer” document that has a barcode, and Unix jobs automatically send the document to a printer.
    Is there a way, or does Adobe have a product or solution, to create a PDF version of the document including the barcode, before it’s sent to a printer?

    What format is the document that is printed? Or what technology is used to format the printer? There isn't a standard way of doing things in Unix.

Maybe you are looking for

  • Insufficient Memory

    Hey! Our Editor is getting this error: "Insufficient Memory. Specify a smaller recording range, quit any unused application and install more system RAM." .. when trying to use the Voice Over Tool. She has a 2.5ghz G5 PowerMac, 4GB DDR SDRAM. We're ru

  • Error 1772 - Again on 1.4.2_04 JRE Install

    After downloading the Java runtime environment SE v 1.4.2_04, it fails to complete the install and has the following error message:- "Error 1772. There is a problem with this windows installer package. A program run as part of the setup did not finis

  • Safari not displaying website comments

    Since the latest update to Safari in Mavericks 10.9.4, I no longer can see comments to articles at huffington post. When I open the same page in another browser, the comments are there. Anyone know a way to fix this?

  • SATA settings change in BIOS

    The SATA Enabled BIOS settings on the 865PE NEO2 I am working on keep changing themselves back to no.  I can set the setting to yes and the computer will boot fine, but after shutting the computer down for a while the settings change back to no.  I h

  • E71 Mail for Exchange System Error, try again late...

    Hi, Please Help! I installed MfE 2.7 on my E71, but whenever I try to sync my email and calender, I get a system error. It begins to sync the email but after that it doesn't sync the calender and I get the system error. Also each time it tries to syn