Where to begin with Solaris?

I'm interested in exploring Solaris and not quite sure where to begin.  Currently running Ubuntu 12.04 on a dual-quad core Intel Xeon, which version of Solaris will work best? 

Hi there,
you might want to grab a copy of the Open Solaris Bible (OpenSolaris Bible: Nicholas A. Solter, Jerry Jelinek, David Miner: 9780470385487: Amazon.com: Books) which, while being a little outdated, gives a quite decent jump start into the matter. Then install Solaris - should be piece of cake if you know Linux - and simply start comparing to what you know from Linux. Alternatively, if you don't have access to Solaris, go for OpenIndiana (http://openindiana.org), which is a true descendant of Sun's former open source variant, OpenSolaris. The operating system is free, the community is friendly, and you learn quite a lot you can take with you when you start using 'real' Solaris.
Cheers
Stevie

Similar Messages

  • Where to begin with databases

    Hi
    My next step is to create a database for my application. I am very confused wtih this subject, and I need to understand some primary issues.
    first, Do I need a DBMS like Oracle or MySQL?
    since many of my friends say : "You need Orcale or SQL" I answer "But SQL is a language" they reply "We dont know"!!? maybe they mean MySQL.
    second, If we really need a DBMS, then is there any for free?
    third, can't I create Notepad files and work with as a database?
    can I use MS-Access?
    last, and Inside java what packages we are gonna use?
    Next week i'm planning to buy the Advanced Java J2SE book by Dietel and Dietel. Do you recommend it for this subject?

    first, Do I need a DBMS like Oracle or MySQL?
    since many of my friends say : "You need Orcale or
    SQL" I answer "But SQL is a language" they reply "We
    dont know"!!? maybe they mean MySQL. SQL, or Structured Query Language, is the language used by all relational databases. Oracle and MySQL are both relational database products, and both use SQL.
    second, If we really need a DBMS, then is there any for free?Oracle and M$ SQL Server will cost you. MySQL, PostgreSQL, HypersonicSQL are all free. I'm sure there are others.
    third, can't I create Notepad files and work with as a database?You mean store your data in text files? Sure, but you won't be able to use SQL to query, update, insert, or delete records. Flat text files are pretty old technology (think 60s/70s), before relational databases took over.
    can I use MS-Access?Yes, M$ Access has a SQL engine inside it.
    last, and Inside java what packages we are gonna use?Look at java.sql and javax.sql.
    Next week i'm planning to buy the Advanced Java J2SE
    book by Dietel and Dietel. Do you recommend it for
    this subject?Absolutely not. I can't recommend that book for anything.
    %

  • Where to begin with 'composite component'?

    Hi everyone.  I'm having a hard time understanding how to build a basic composite component.  There is some online documentation on this, but for some reason, I just cannot follow it.  Honestly, I'm not trying to get someone here to do my work for me, but I'm hoping that if described a very simplified version of what I need to do, that someone could show me how to do it through code.
    Here's what I'm essentially trying to do (build a control that is a combobox with a button on the side of it):
    <hbox>
         <combobox/>
         <button/>
    </hbox>
    Doing something like above is easy enough.  But what I really need is for the root control to be a combobox so that all properties and events of the combobox are available to its owner without me having to re-implment/proxy all of them.
    Hopefully this will illustrate the concept:
    <combobox>
         <button/>
    </combobox>
    I see from the doc that I need an AS class and have to override updateDisplayList, createChildren, etc.  But for some reason, I just cannot understand the doc enough to do something even this simple.  I think if someone showed me how to do this example, then it would be a good starting point for me to go back to the doc and hopefully it'll make more sense!
    Thanks in advance!

    I think the o.p is loking for an example of composition that starts by extending some component like ComboBox, and then adds another control to it.  the benefit of this is that the new control can be treated as  a ComboBox, with all of its functionality.  Here is an example.  You will need to find your own image to use for the button, or change it to a regular button.
    Test application:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        xmlns="*"
        layout="absolute"
        creationComplete="init()" >
    <mx:Script><![CDATA[
      import mx.collections.ArrayCollection;
      import mx.controls.Alert;
      [Bindable]private var _acDP:ArrayCollection;
      public function init():void
        _acDP = new ArrayCollection([{label:"one", value:1},{label:"two", value:2},{label:"three", value:3}])
      private function onButtonClick(event:Event):void
        Alert.show(ComboButton(event.currentTarget).selectedLabel);
    ]]></mx:Script>    
    <ComboButton dataProvider="{_acDP}" labelField="label" comboButtonClick="onButtonClick(event)" />
    </mx:Application>
    ComboButton.as
    package
      import flash.events.Event;
      import flash.events.MouseEvent;
      import mx.controls.ComboBox;
      import mx.controls.Image;
      [Event(name="comboButtonClick", type="flash.events.Event")]
      public class ComboButton extends ComboBox
        [Embed(source="assets/help.gif")]
        private var buttonImage:Class;
        private var _imgButton:Image;
        //Constructor
        public function ComboButton()
         super();
        /** instantiates the button and adds it to the displaylist */
        override protected function createChildren():void
          super.createChildren();                // Call to the superclass for necessary processing.
          if(!_imgButton) {                       // Create the button component.
            _imgButton = new Image();
            _imgButton.source = buttonImage;
            _imgButton.toolTip = "Click Me";
            _imgButton.addEventListener(MouseEvent.CLICK, onClickButton);
            addChild(_imgButton);
        /** Positions and sizes the image button */
        override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
          super.updateDisplayList(unscaledWidth, unscaledHeight);
            var buttonHeight:Number =  unscaledHeight;
            var buttonWidth:Number = buttonHeight; 
            var nbuttonX:Number = unscaledWidth + 5;
            var nbuttonY:Number = 0;
            _imgButton.height = buttonHeight;
            _imgButton.width = buttonWidth;
            _imgButton.move(nbuttonX, nbuttonY);
        }//updateDisplayList 
        /** dispatches event on button click */
        private function onClickButton(event:MouseEvent):void
          dispatchEvent( new Event("comboButtonClick", false));
      }//public class ComboButton
    }//package
    Tracy Spratt

  • Where do I begin with the making of an MP3 player?

    I would like to create a mp3 player, and have researched and discovered i need JMF, which i have now downloaded and installed. But i do not know where to begin with the coding of the MP3 Player. Any help would be appreciated.

    One problem, (I think) Sun had to drop MP3 support from Java because of some legal issues. You may need to head in the direction of JNI.

  • I was given an assingment, but have no idea where to begin. The assingment is to create a text file using notepad with all of my digital inputs and some how make those imputs show up on my digital indicators on my control pannel

    I was given an assingment, but have no idea where to begin. The assingment is to create a text file using notepad with all of my digital inputs and some how make those imputs show up on my digital indicators on my control pannel.
    When it was explained to me it didn't sound to hard of a task, I have no LabVIEW experience and the tutortial sucks.

    StevenD: FYI, I did NOT give you the one star rating. I would never do that!
    StevenD wrote:
    Ow. Someone is grumpy today.
    Well, this is an assignment, so it is probably homework.
    Why else would anyone give HIM such an assigment, after all he has no LabVIEW experience and the tutorials are too hard for him?
    This would make no sense unless all of it was just covered in class!
    This is not a free homework service with instant gratification.
    OK! Let's do it step by step. I assume you already have a VI with the digital indicators.
    "...but have no idea where to begin".
    open notepad.
    decide on a format, possibly one line per indicator.
    type the document.
    close notepad.
    open LabVIEW.
    Open the existing VI with all the indicators.
    (are you still following?)
    look at the diagram.
    Who made the program?
    Does the code make sense so far?
    Is it a statemachine or just a bunch of crisscrossed wires?
    Where do you want to add the file read?
    How should the file be read (after pressing a read button, at the start of the program ,etc.)
    See how far you get!
    Message Edited by altenbach on 06-24-2008 11:23 AM
    LabVIEW Champion . Do more with less code and in less time .

  • Help with where to begin creating a custom GUI?

    Links to good tutorials helpful.
    Basically I have never created a GUI for java beyond your basic text box, radio button, button etc.
    I need to create a GUI using custom images for the buttons, images etc. I kind of don't know where to begin since all I have done prior is create a GUI with functionality already present in java. I need drop down menus etc.
    Any help is appreciated.

    All of this functionality that you are mentioning is available with Swing. You can do a google search for java Swing tutorials; if you need further help, please visit the Swing forum.

  • Where do I continue; I have a '07 Macbook Pro, and would truly appreciate your help as I freshly install my osx beginning with my original 10.4

    Please...
    Where do I continue; I have a '07 Macbook Pro, and would truly appreciate your help as I have freshly installed my osx beginning with my original 10.4
    Thank you
    PS
    I should mention; for reasons unknown to me, I no longer have use of my disk drive since reinstalling 10.4.

    You can use software update to install the latest version of Tiger.  If you connect an external DVD drive you can install an upgrade to Snow Leopard.  The disk is available at the Apple online store:
    http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    Further upgrades are dependent upon the EXACT model of your MBP.
    Ciao.

  • Cannot find serial number on box nor cd sleeve.  start guide says it begins with 1057 but neither the box nor the DVD has such a number  I can't install it without that serial numebr where do I find it??

    Trying to install Photoshop elements 13 on pc w/ WIN 8.1.
    cannot find serial number on box nor cd sleeve.  start guide says it begins with 1057 but neither the box nor the DVD has such a number  I can't install it without that serial numebr where do I find it??

    You likely have a redemption code on the box that you have to enter into an Adobe website to convert that into a serial number.
    See the information on the following page:  https://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • [SOLVED] SGA_MAX_SIZE pre-allocated with Solaris 10?

    Hi all,
    I'm about to build a new production database to migrate an existing 8.1.7 database to 10.2.0.3. I'm in the enviable position of having a good chunk of memory to play with on the new system (compared with the existing one) so was looking at a suitable size for the SGA... when something pinged in my memory about SGA_MAX_SIZE and memory allocation in the OS where some platforms will allocate the entire amount of SGA_MAX_SIZE rather than just SGA_TARGET.
    So I did a little test. Using Solaris 10 and Oracle 10.2.0.3 I've created a basic database with SGA_MAX_SIZE set to 400MB and SGA_TARGET 280MB
    $ sqlplus
    SQL*Plus: Release 10.2.0.3.0 - Production on Wed Jan 30 18:31:21 2008
    Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.
    Enter user-name: / as sysdba
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> show parameter sga
    NAME                                 TYPE        VALUE
    lock_sga                             boolean     FALSE
    pre_page_sga                         boolean     FALSE
    sga_max_size                         big integer 400M
    sga_target                           big integer 280MSo I was expecting to see the OS pre-allocate 280MB of memory but when I checked the segment is actually the 400MB (i.e. SGA_MAX_SIZE) (my database owner is 'ora10g'):
    $ ipcs -a
    IPC status from <running system> as of Wed Jan 30 18:31:36 GMT 2008
    T         ID      KEY        MODE        OWNER    GROUP  CREATOR  
    CGROUP CBYTES  QNUM QBYTES LSPID LRPID   STIME    RTIME    CTIME
    Message Queues:
    T         ID      KEY        MODE        OWNER    GROUP  CREATOR  
    CGROUP NATTCH      SEGSZ  CPID  LPID   ATIME    DTIME    CTIME
    Shared Memory:
    m         22   0x2394e4   rw-r---   ora10g   10gdba   ora10g  
    10gdba     20  419438592  2386  2542 18:31:22 18:31:28 18:28:18
    T         ID      KEY        MODE        OWNER    GROUP  CREATOR  
    CGROUP NSEMS   OTIME    CTIME
    Semaphores:
    s         23   0x89a070e8 ra-r---   ora10g   10gdba   ora10g  
    10gdba   154 18:31:31 18:28:18
    $ I wasn't sure whether Solaris 10 was one of the OSs with truly dynamic memory for the SGA but had hoped it was... this seems to say different. Really I'm just after some confirmation that I'm reading this correctly.
    Thanks.
    Joseph
    Message was edited by:
    Joseph Crofts
    Edited for clarity

    I don't want to get bogged down in too many details, as the links provided in previous posts have many details of SGA tests and the results of what happened. I just want to add a bit of explanation about the Oracle SGA and shared memory on UNIX and Solaris in particular.
    As you know Oracle's SGA is generally a single segment of shared memory. Historically this was 'normal' memory and could be paged out to the swap device. So a 500 MB SGA on a 1 GB physical memory system, would allocate 500 MB from the swap device for paging purposes, but might not use 500 MB of physical memory i.e. free memory might not decrease by 500 MB. How much physical memory depended on what pages in the SGA were accessed, and how frequently.
    At some point some people realised that this paging of the SGA was actually slowing performance of Oracle, as now some 'memory' accesses by Oracle could actually cause 'disk' accesses by paging in saved pages from the swap device. So some operating systems introduced a 'lock' option when creating a shared memory segment (shmat system call if memory serves me). And this was often enabled by a corresponding Oracle initialisation parameter, such as lock_sga.
    Now a 'locked' SGA did use up the full physical memory, and was guaranteed not to be paged out to disk. So Oracle SGA access was now always at memory speed, and consistent.
    Some operating systems took advantage of this 'lock' flag to shared memory segment creation to implement some other performance optimisations. One is not to allocate paging storage from swap space anyway, as it cannot be used by this shared memory segment. Another is to share the secondary page tables within the virtual memory sub-system for this segment over all processes attached to it i.e. one shared page table for the segment, not one page table per process. This can lead to massive memory savings on large SGAs with many attached shadow server processes. Another optimisation on this non-paged, contiguous memory segment is to use large memory pages instead of standard small ones. On Solaris instead of one page entry covering 8 KB of physical memory, it covers 8 MB of physical memory. This reduces the size of the virtual memory page table by a factor of 1,000 - another major memory saving.
    These were some of the optimisations that the original Red Hat Enterprise Linux had to introduce, to play catch up with Solaris, and to not waste memory on large page tables.
    Due to these extra optimisations, Solaris chose to call this 'locking' of shared memory segments 'initimate shared memory' or ISM for short. And I think there was a corresponding Oracle parameter 'use_ism'. This is now the default setting in Oracle ports to Solaris.
    As a result, this is why when Oracle grabs its shared memory segment up front (SGA_MAX_SIZE), it results in that amount of real physical memory being allocated and used.
    With Oracle 9i and 10g when Oracle introduced the SGA_TARGET and other settings and could dynamically resize the SGA, this messed things up for Solaris. Because the shared memory segment was 'Intimate' by default, and was not backed up by paging space on the swap device, it could never shrink in size, or release memory as it could not be paged out.
    Eventually Sun wrote a work around for this problem, and called it Dynamic Intimate Shared Memory (DISM). This is not on by default in Oracle, hence you are seeing all your shared memory segments using the same amount of physical memory. DISM allows the 'lock' flag to be turned on and off on a shared memory segment, and to be done over various memory sizes.
    I am not sure of the details, and so am beginning to get vague here. But I remember that this was a workaround on Sun's part to still get the benefits of ISM and the memory savings from large virtual memory pages and shared secondary page tables, while allowing Oracle to manage the SGA size dynamically and be able to release memory back for use by other things. I'm not sure if DISM allows Oracle to mark memory areas as pageable or locked, or whether it allows Oracle to really grow and shrink the size of a single shared memory segment. I presumed it added yet more flags to the various shared memory system calls.
    Although DISM should work on normal, single Solaris systems, as you know it is not enabled by default, and requires a special initialisation parameter. Also be aware that there are issues with DISM on high end Solaris systems that support Domains (F15K, F25K, etc.) and in Solaris Zones or Containers. Domains have problems when you want to dynamically remove a CPU/Memory board from the system, and the allocations of memory on that board must be reallocated to other memory boards. This can break the rule that a locked shared memory segment must occupy contiguous physical memory. It took Sun another couple of releases of Solaris (or patches or quarterly releases) before they got DISM to work properly in a system with domains.
    I hope I am not trying to teach my granny to suck eggs, if you know what I mean. I just thought I'd provide a bit more background details.
    John

  • Robotics error and issue within SL24 Tape library with Solaris 10

    Dear All,
    Kindly may any one help me with this issue or at least give me a hint about where to begin thinking about the solution from
    I have a tape library SL24 which is attached to the server V240 my backup server on which the robotics is not seen by the veritas net backup and when I try some commands like
    #sgscan
    the robotics isn't discovered
    the Veritas docs says that this is issue is related to the Solaris OS
    so can any one give me what are the possible causes to that error ?
    knowing that there is no zoning in this datacenter

    Did this configuration of your V240 and the SL24 ever work?
    Here's the documentation for the SL24:
    http://docs.oracle.com/cd/E25510_01/index.html
    Here's the documentation for the V240:
    http://docs.oracle.com/cd/E19088-01/v240.srvr/index.html
    I have a tape library SL24 which is attached to the server V240 ,,, attached to what? I don't think the integrated SCSI port is compatible and therefore you'll need to buy and install an appropriate HBA for the computer.
    Start with the documentation.

  • Where I can download Solaris 2.6 x86 32bit?

    Where I can download Solaris 2.6 x86 32bit at this site?

    Azimathul-Marlia wrote:
    Hi Gurus,
    If i am not wrong try this website.
    http://www.sun.com/bigadmin/hcl/drivers/dca_diskettes/index.jsp
    Yes, you are wrong.
    That link is only for the bootable floppy that was required to begin the installation process of Solaris 2.6 x86 from its CD media because in the 1980's and the early 1990's (the era of the particular Solaris being discussed in this forum thread) virtually no x86 systems could boot from CD. They could only boot from their floppy drive or their hard drive.
    The DCA disk was not the OS. That floppy was included in the media kit that was purchased from Sun. Even if you create such a floppy from that link, you still need the OS media if you hope to proceed with the installation.
    Go back and read reply #1 in this thread.

  • @count for first names beginning with "

    I was trying to come up with a formula for counting club members and partners by using an "&" in front of the first name of partners. I could not find a conditional function whereby I could count the names that begin with the "&". I used trial and error with various count functions on strings with if thens, etc. I either end up with syntax errors or a null. Not that important but I like solving puzzles and may find a use for the concept with other strings in the future. Bottom line is: I would like to pick out a unique character at the beginning of different strings and count it (numerically) if is there (true).

    Here's an alternative that is similar to Jerry's, but allows placing the ampersand in a more logical location in the Name column entries. The yellow-filled column (Flag) may be hidden.
    Column B: Entered data (names), with an ampersand used to join names of partners where applicable.
    Column C (Flag) contains a formula that places a null string in rows where there is no entry in the column B (Name), zero in rows where the names entry does not contain an ampersand, and a number larger than zero corresponding to the position of the ampersand in rows where the Names entry has one.
    C2, and filled down: =IF(LEN(B)>0,IFERROR(FIND("&",B),0),"")
    Cells D2 and E2 contain similar formulas to count the two-name (partner) entries and the single name entries, using the flags set in column C.
    D2: =COUNTIF(C,">0")
    E2: =COUNTIF(C,"=0")
    Regards,
    Barry

  • Where to begin in Oracle?

    Hello everyone,
    I am interested in obtaining an Oracle certification but do not know where to begin. I am new to this but I work with Access so I do have an understanding of databases. I spoke with someone recently and was told to learn Linux. The person was very vague in giving out any information on the subject (he acted like I was trying to break into Fort Knox). I would really appreciate it if someone could just point me into the right direction and help me get started. I know Oracle and Access are totally different but I am ready to put in the work to obtain this incredible certification. I am going to do this on my own because I cannot afford to attend any boot camps, Oracle classes, or community colleges. I have posted this question on many so called Oracle forums but know one is willing to respond to my question. Can anyone out there help?
    Thanks,
    bdthomas02

    I am trying to get the OCA certificationI assume in my reply below that you are referring to 1Z0-042 - Oracle Database 10g: Administration I (10g DBA OCA).
    I spoke with an Oracle rep and she informed me that the classroom requirement does not apply to this certificationThat's correct. You need it only when you clear the second exam (1Z0-043).
    1. Can I pass the exam by purchasing materials from a book store, Oracle website, or other suggested sources?The best source would be Oracle Training Material (Student Guides**). However, I do recommend "Oracle Database 10g OCP Certification All-In-One Exam Guide". I used this reference to clear the exams.
    Oracle Database 10g OCP Certification All-In-One Exam Guide
    http://www.amazon.com/Oracle-Database-Certification-Guide-Handbook/dp/0072257903
    ** Oracle Student Guides/ILT (Instructor Led Training) Materials
    Re: Student Guides
    Practice exams provide tools to help you improve and continue your exam preparation:
    Oracle Certification Program - Practice Test Page
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=208
    Sample Questions – 1Z0-042 Oracle Database 10g: Administration I
    http://www.oracle.com/global/us/education/certification/sample_questions/exam_1z0-042.html
    2. Do I need to know Linux in order to pass the exam (someone told me unless I know Linux I would not be able to understand the commands)?It is not necessary. See the following link for the exam topics:
    Oracle Database 10g: Administration I
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_042
    3. Since I do not know anything about Oracle how should I study for the exam and how long will it take to be able to pass the exam?You need to practice and work hard since you are new to Oracle. Arrange to install Oracle 10gR2 database, practice the installation, and try to cover all the topics which are listed in the link referenced above.
    You can download Oracle 10gR2 database from:
    Oracle Database Software Downloads
    http://www.oracle.com/technology/software/products/database/index.html
    Please let us know if you need any further clarification.

  • Renaming startup disk to begin with a dot

    I realized that 10.6 prevents you from renaming a startup disk to begin with a dot (a period), so that you can hide the volume on the desktop/Finder. I've tried the diskutil rename command in terminal, but it gives me an error saying some like "not suitable name for drive type." It worked in 10.5, but not Snow Leopard. Well, for me at least. Anyone else have this problem? Thanks.
    P.S. Not sure exactly where I should have posted this. I guess it's related to Finder.

    DO NOT start the name of the drive with a dot. if you want to make it hidden from finder (not sure why you'd want to do it with the startup drive) you can add a hidden flag to the drive.
    run this in terminal
    sudo chflags hidden /
    and it will hide the startup drive from finder. to unhide it change hidden to nohidden in the command. and of course you can just go to finder preferences->general and uncheck the box to show internal drives on the desktop. that will remove all internal drives from teh desktop.

  • ITunes can't find artists beginning with THE

    My music collection was getting too large for my internal hard drive so I changed the location of my iTunes folder to my external drive, where there was already a back up of all my music. This I create by directly copying the itunes music folder every so often. Keep itunes organised is checked. When I changed the folder location, it did updating library, then asked if I wanted to organise the folder which I did.
    However now, it won't find certain tracks/albums, says the orignal file location cannot be found do I want to locate...
    It appears that itunes can't find any track whose artist begins with the word THE, although they are in folders called "The...." in the correct music folder.
    I just updated to the latest version of itunes.
    Does anyone know what might be going on???

    Something similar happened to me. iTunes could not find any music that had the track number at the beginning of the name (an option in Advanced->Import section). My purchased music also had track numbers, but I don't know if Apple did that, or if my own iTunes did it.
    At some point, I had turned off this option, so all the songs I imported after that were found just fine. When I deleted the track numbers from the file names, iTunes found them just fine. I have way too many files to change all the name manually however. Changing the naming option in the iTunes preferences did not make a difference to the problem.

Maybe you are looking for

  • Credit Block in Sales Order

    Hi Gurus I have an issue in production system wherein a user has created a sales order for a customer say 'X' which went into a credit block. When the credit master is checked for the customer the credit limit was well below 100%. There are no open o

  • Fresh installation + what updates = good Airport connectivity?

    Last summer I did an erase and install and apparently applied some updates that made my Airport become extremely problematic. See Airport extremem card can't hang onto wifi signal - what to do? and PB's Airport Extreme card not staying connected - pl

  • Result Analysis Settlement - Posting to FI

    Hi all I am configuring Result analysis related configuration to post WIP values to FI on period basis. I did following nodes configuration 1.  Create Result Analysis Keys 2.  Define Result Analysis Versions 3.  Define Valuation Methods for Result An

  • Delete retail material via batch job?

    Hey guys, is there a way to delete a retail material via batch job? I know with transaction MM16 you can schedule a job to do that. But how can i do that without using transaction MM16. Is it possible to this via IDoc?     thx,       Wei-Ming

  • SUSE SLES9 64-bit and J2SDK 64-bit

    Hello, We have a system, which is running on SUSE SLES9 64-bit OS. I would liek to install JAVA which is J2SDK 64-bit on X86 system (java version "1.4.2_08" 64-bit). Could you please direct me the link to download the software.. I looked around under