RMAN Cloning Sun to Linux?

Hi All,
Can I do a 10g RMAN cloning from Sun Solaris SPARC to Linux 4/5 ?
If it possible please let me know the process as well.
Thanks

http://www.oracle-base.com/articles/10g/RMANEnhancements10g.php#cross_platform_tablespace_conversion
How To Use RMAN CONVERT DATABASE for Cross Platform Migration - Note:413586.1
10g : Transportable Tablespaces Across Different Platforms - Note:243304.1

Similar Messages

  • RMAN Cloning Hangs

    Hi, in RMAN cloning when i tried to execute the below script
    run{
    2> allocate auxiliary channel aux1 device type disk;
    3> allocate auxiliary channel aux2 device type disk;
    4> allocate auxiliary channel aux3 device type disk;
    5> duplicate target database to auxclone;
    6> }
    It hangs at the below point
    contents of Memory Script:
    shutdown clone;
    startup clone nomount ;
    executing Memory Script
    after a long time i got the following error
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/14/2010 18:34:18
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06136: ORACLE error from auxiliary database: ORA-01013: user requested cancel of current operation
    Any suggestions plsss...........
    Regards
    Balaji
    Edited by: user13254016 on Jun 20, 2010 12:08 PM

    user13254016 wrote:
    Hi, in RMAN cloning when i tried to execute the below script
    run{
    2> allocate auxiliary channel aux1 device type disk;
    3> allocate auxiliary channel aux2 device type disk;
    4> allocate auxiliary channel aux3 device type disk;
    5> duplicate target database to auxclone;
    6> }
    It hangs at the below point
    contents of Memory Script:
    shutdown clone;
    startup clone nomount ;
    executing Memory Script
    after a long time i got the following error
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/14/2010 18:34:18
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06136: ORACLE error from auxiliary database: ORA-01013: user requested cancel of current operation
    Any suggestions plsss...........
    Regards
    Balaji
    Edited by: user13254016 on Jun 20, 2010 12:08 PMhave you paused in between the process of rman cloning?
    RMAN-06136: ORACLE error from auxiliary database: ORA-01013: user requested cancel of current operation
    then only you will get the above error. startup in nomount and then execute the script. of duplicate.

  • Rman of database under Linux from Windows server

    Dear colleagues! I need some help.
    I have Oracle database 10.2.0.1, which works under Linux CentOS. I've just set up rman, to backup this database to local linux partition. Now, i want to adjust rman, so it starts from Windows 2003 ( i've already install Oracle 10.2.0.1 client for Wondows 32-bit) server to backup this database to local Windows folder.Could you please answer, is it possible at all?
    When i try to perform rman from Windows manually i got this errors:
    channel t1: starting piece 1 at 29-APR-10
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on t1 channel at 04/29/2010 03:07:32
    ORA-19504: failed to create file "/u02/app/oracle/product/10.2.0/db_1/dbs/c:123
    bak"
    ORA-27038: created file already exists
    Additional information: 1

    1. You can run the backup from windows server 2003 which take the RMAN backup of your linux server. But this backup can only stored into your linux server.
    2. You can't store the backup set of linux server into windows server.
    Regards
    Asif Kabir
    -- mark your helpful post as correct/helpful.

  • RMAN exit problem from linux script..

    Hi all
    I am using 11.1.6.0 on linux centos ..below is the rman script (name is rmanbackup.sh) .
    rman target / <<- EOF
    sql 'alter system archive log current';
    run {
    backup current controlfile;
    exit
    EOF
    echo "script complete for rman backup"
    mkdir /home/oracle/backup_dir
    cp /home/oracle/backup_dir /home/oracle/backup_dir1
    when i execute this, rman exit from script without executing the last 3 operating system commands .
    any help in this regard.

    As Mseberg said, Please try to mark you questions as answered, here is the answer:
    add *#!/bin/ksh* in your script ; also cp -r not cp
    [oracle@wissem ~]$ cat rmanbackup.sh
    #!/bin/ksh
    rman target / <<- EOF
    sql 'alter system archive log current';
    run {
    backup current controlfile;
    exit
    EOF
    echo "script complete for rman backup"
    mkdir /home/oracle/backup_dir
    cp -r /home/oracle/backup_dir /home/oracle/backup_dir1
    [oracle@wissem ~]$ ./rmanbackup.sh
    Recovery Manager: Release 11.2.0.1.0 - Production on Sun Aug 28 17:00:11 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ORAWISSE (DBID=3964208472)
    RMAN>
    using target database control file instead of recovery catalog
    sql statement: alter system archive log current
    RMAN> 2> 3>
    Starting backup at 28-AUG-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=149 device type=DISK
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    including current control file in backup set
    channel ORA_DISK_1: starting piece 1 at 28-AUG-11
    channel ORA_DISK_1: finished piece 1 at 28-AUG-11
    piece handle=/home/oracle/app/oracle/flash_recovery_area/ORAWISSE/backupset/2011_08_28/o1_mf_ncnnf_TAG20110828T170014_75np001q_.bkp tag=TAG20110828T170014 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
    Finished backup at 28-AUG-11
    RMAN>
    Recovery Manager complete.
    script complete for rman backup
    [oracle@wissem ~]$ ls -rtl /home/oracle/backup_dir
    total 0
    [oracle@wissem ~]$ ls -rtl /home/oracle/backup_dir1/
    total 4
    drwxr-xr-x 2 oracle oinstall 4096 Aug 28 17:00 backup_dir
    [oracle@wissem ~]$ ls -rtl /home/oracle/backup_dir1/backup_dir/
    total 0
    [oracle@wissem ~]$

  • E-business Suite RMAN cloning without connecting source

    Hi,
    I've RMAN backup with catalog and nocatalog. I want to use my nocatalog RMAN backup to clone e-business suite R12/11i Application without connecting source.
    Please advice/sugegst any doc.
    thanks

    Hi;
    What is your EBS and OS?
    Please check below notes which cover RMAN cloninig steps:
    Cloning Oracle Applications Release 12 with Rapid Clone [ID 406982.1]
    Cloning Oracle Applications Release 11i with Rapid Clone [ID 230672.1]
    FAQ: Cloning Oracle Applications Release 11i http://ID 216664.1
    Also check below thread:
    Clone -with rman
    Re: backup procedure using RMAN for 11i Instance
    Hope it answer you
    Regard
    Helios

  • Cloning of a LINUX with MAXDB problem

    Hello all,
    We cloned (copied) a complete Linux server (AAA) with SAP using MAXDB, target server was ZZZ.
    The copy was very successful, nothing missed. Edited the profile parameters and changed all ENVironment variables changing anything from AAA to ZZZ.
    SAP in AAA starts successfuly, but it was pointing the the the database from ZZZ. Any thing I should change more?
    Thanks,
    Terry

    > I issued the 'xuser' command, including the changing of the node to AAA_server. However, when I did startsap, the database is stilll trying to connect to ZZZ_server. Bottom of note 604680 has '
    What's the output of
    xuser list
    Does the user DEFAULT point to the proper database?
    > 'The name of the database as well as the server are retained as DBIdent in the database. This name is not changed by the renaming process. The DBIdent also appears in the data backups (full, incremental and log backup)'.
    > Any workaround?
    As I said before, the method you use to "clone" a system is not supported. You will need to maually rename the database, the files etc.
    See
    Note 604680 - Renaming an SAP DB or liveCache instance
    Note 1427931 - Renaming a MaxDB or liveCache instance as of Version 7.8
    Markus

  • Sun SCA6000 Linux driver occasional stalls

    Hi,
    We have encountered an issue with our SCA6000 card's kernel driver in RHEL 5.5. It seems that occasionally, in some (yet unknown) circumstances the card's kernel driver stalls and rebooting the server seems to be the only way to get the driver working again. The following syslog entries can be seen after the driver crash:
    kernel: mca0: userRefresh/semTake returned S_objLib_OBJ_TIMEOUT after 120 seconds
    kernel: INFO: task scakiod:3259 blocked for more than 120 seconds.
    kernel: "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    kernel: scakiod D ffffffff80150790 0 3259 1 3260 3258 (NOTLB)
    kernel: ffff81023adfdc38 0000000000000082 ffff810200000001 ffff8102f6caf7f8
    kernel: 0000000000000000 0000000000000009 ffff81033d2be080 ffff81010b722080
    kernel: 00056915fb68a1df 0000000001066045 ffff81033d2be268 000000023d042a80
    kernel: Call Trace:
    kernel: [<ffffffff8838a05d>] :mca:mca_dbm_response+0x488/0x63c
    kernel: [<ffffffff8008cf9d>] default_wake_function+0x0/0xe
    kernel: [<ffffffff883b822d>] :mcactl:mcactl_ioctl+0xcb2/0x1cfc
    kernel: [<ffffffff80016e31>] generic_file_aio_read+0x34/0x39
    kernel: [<ffffffff8000ceb5>] do_sync_read+0xc7/0x104
    kernel: [<ffffffff883b929d>] :mcactl:mcactl_ioctl_lin+0x26/0x2d
    kernel: [<ffffffff80042181>] do_ioctl+0x55/0x6b
    kernel: [<ffffffff80030204>] vfs_ioctl+0x457/0x4b9
    kernel: [<ffffffff8000b79a>] vfs_read+0x13c/0x171
    kernel: [<ffffffff8004c633>] sys_ioctl+0x59/0x78
    kernel: [<ffffffff8005d116>] system_call+0x7e/0x83
    We suspect that this is somehow related to the SCA6000 Linux driver and how it works in an SMP environment. As a workaround, we have disabled multiprocessing in our server by setting maxcpus=1 in our GRUB configuration. So far the issue hasn't re-occurred, but it's not sure whether this workaround helps or not, because the issue has occurred earlier very rarely.
    Has anyone else encountered this problem?

    As a follow-up, incase anyone else is wondering:
    I purchased a couple 92mm quiet Zalman fans. Then had a friend solder the connectors (I'd have soldered my own hand to it) from the original Nidec fans from both the power supply and CPU fan shroud and re-installed them. In the process, I cleaned out most of the dust from the system, and put a dust filter in between the plastic front panel and the metal case. Everything seems fine now:
    +$ cat /proc/cpuinfo+
    cpu : TI UltraSparc II (BlackBird)
    fpu : UltraSparc II integrated FPU
    prom : OBP 3.31.0 2001/07/25 20:31
    type : sun4u
    ncpus probed : 2
    ncpus active : 2
    After the old fans were pulled, I plugged them both into a 12V power supply, and they were making quite a racket, as well as showing very unstable current draw. Probably very good that I replaced them before they stopped completely
    The new fans don't move quite as much air as the original ones, but I couldn't find a listing for the air volume of the originals, as those particular models aren't manufactured by Nidec anymore. And apparently the U60 does not support any kind of temperature monitoring: lm-sensors found i2c-ipmi and bmcsensors interfaces, but there's nothing behind them. And prtconf doesn't report any thermal monitoring equipment either. The harddrives are sitting at around 38 degrees C, so the fans appear to be doing their jobs.
    So, if anyone else is wondering: yes, you can replace bad fans in an sun sparc U60 powersupply and CPU shroud with quiet off-the-shelf PC fans, with a bit of rewiring (don't forget to clamp the white sensor cable).

  • Migration of 9iAS R2 from Sun to Linux

    We want to migrate out 9i AS infrastucture and server from Sun Solaris to RedHat AS 3. I have been looking for directions on how to do this, but have come up blank. Can someone point me to a document or something that tells us how to do this?
    Any help is much appreciated.
    Thanks ... Vin

    Its basically a fresh install and then a data conversion.
    Install 9iAS R2 on Linux machine
    Patch up to latest levels on both machines
    Synchronize your LDAP database/user store
    export/Import your content areas
    If you keep the same hostname/ip address for the new server, you may get lucky - do a fresh install with the same settings as your current system on the linux box, shutdown the rdbms, do an import/export database migration - bring everything up and cross your fingers :)

  • 10g AS Operating System migration - Sun to Linux

    Has anyone successfully migrated/moved over a 2 tier 10g AS installation from Sun Solaris to RedHatLinux?
    Will it require a new installation of 10g AS for Linux and then move over the data? We plan to re-use the same hostnames and IPs. Any ideas or suggestions?

    So the plan is to install 10g AS on Linux using the same hostnames and IPs and then move over the data. Please forgive my ignorance, what's the best way to move over the data? A fulll db import/export, moving over DBF files, or?

  • Migrating Essbase App from SUN to LINUX

    Dear Essbase Members,
    Can you please help me in answering the below questions.
    We are soon to migrate our essbase applications from Current : Sun Solaris SPARC 64 bit OS   - Essbase 11.1.1.3 to Target : Oracle Linux 4 64 bit OS - Essbase 11.1.2.2 .
    can i migrate my essbase applications by create all essbase applications on the target servers and just copying all essbase objects like ( .otl, .rul ), level 0 export from source and import in the target and aggregate the cube.
    I know we have a migrating utility, but was thinking about the above approach. will i be able to copy files and make it work , as the OS and essbase version are different on both the servers.
    or is there a better way to do this.
    Thanks
    MS

    Yes you can use that approach or use the EAS migration wizard, personally I would choose the migration wizard as it will migrate more information like filters, substitution variables.
    For a list of what is and not migrated using the wizard have a read of - http://docs.oracle.com/cd/E17236_01/epm.1112/eas_help/dbwzmigrpost-migration.html
    Remember security will not be migrated if in Shared Services mode.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • RMAN cloning from RAC to Non-RAC

    Hi Gurus,
    I had successfully cloned my DB from RAC to Non-RAC environment via RMAN. Below was the configuration
    RAC
    - 2 nodes
    - 11gR2 (Compatible 11.0.1.6 as per Application Requirement)
    - ASM (2 diskgroups DATA and FRA)
    - OS RHEL 6.3
    Non - RAC
    - 1 node
    - Stand alone11gR2 (Compatible 11.0.1.6 as per Application Requirement)
    - ASM (2 diskgroups DATA and FRA)
    - OS RHEL 6.3
    My approach was to clone DB and then change SID with nid utility. My understanding was that nid utility will also replace ASM file paths from CRAMPRD to CRAMSIT but that didnt happen.
    So issue is when I am checking my file paths on CRAMSIT it still refelect CRAMPRD eg - +DATA1/CRAMPRD. Is there any way to rename this directory paths in ASM so that it should reflect my SID.
    Regards,
    Nikhil Mehta.

    No, NID wouldn't change the ASM paths.
    I presume that you did set the ORACLE_SID to CRAMSIT on the non-RAC server before the restore.
    What you should have done is to set DB_UNIQUE_NAME='CRAMSIT'   (even with DB_NAME='CRAMPRD') on the non-RAC server before the restore.  Oracle would have used the DB_UNIQUE_NAME to set the ASM PAth  (note that during the restore it would have shown "restoring to +DATA1/CRAMPRD" but would have actually been restoring to "+DATA1/CRAMSIT").
    You will now have to use Oracle Support Note
      How to rename/move a datafile in the same ASM diskgroup [ID 564993.1]
    to rename the paths in ASM.
    Hemant K Chitale

  • Rman cloning on RAC

    Hello all,
    My environment
    OS: LINUX
    ORACLE: 10.2.0.2
    my question are
    1) configured crs_home,oracle_home with asm now i have to clone from proda to prodb.
    all configurations are working fine.
    backup pieces are copied to prodb.
    if i have backupsets in prodb location. is it possible to clone?
    or backups should be in proda? then we have to duplicate?
    can anyone tell me please.

    If you not using RECOVERY CATALOG , you have to copy the backup sets or copies to the clone database server.
    RMAN checks for the backup to restore. if it is not available in the machine, it gives an error.
    RMAN> backup full database format '/u01/app/oracle/backup/%d_%U.bckp' plus archivelog format '/u01/app/oracle/backup/%d_%U.bckp';
    [oracle@rac2 ~]$ cd /u01/app/oracle/backup
    [oracle@rac2 backup]$ ls -lart
    total 636080
    drwxrwxr-x 9 oracle oinstall 4096 Jan 20 18:42 ..
    -rw-r----- 1 oracle oinstall 50418176 Jan 20 18:43 WHITE_01l3v1uv_1_1.bckp
    -rw-r----- 1 oracle oinstall 531472384 Jan 20 18:54 WHITE_02l3v203_1_1.bckp
    -rw-r----- 1 oracle oinstall 7143424 Jan 20 18:54 WHITE_03l3v2jf_1_1.bckp
    -rw-r----- 1 oracle oinstall 1346560 Jan 20 18:54 WHITE_04l3v2jv_1_1.bckp
    -rw-r----- 1 oracle oinstall 7110656 Jan 20 19:19 05l3v41r_1_1
    drwxr-xr-x 2 oracle oinstall 4096 Jan 20 19:20 .
    -rw-r----- 1 oracle oinstall 53174272 Jan 20 19:21 06l3v448_1_1
    [oracle@rac2 backup]$ scp * oracle@rac1:/u01/app/oracle/backup/
    05l3v41r_1_1 100% 6944KB 6.8MB/s 00:00
    06l3v448_1_1 100% 51MB 16.9MB/s 00:03
    WHITE_01l3v1uv_1_1.bckp 100% 48MB 2.7MB/s 00:18
    WHITE_02l3v203_1_1.bckp 100% 507MB 1.5MB/s 05:47
    WHITE_03l3v2jf_1_1.bckp 100% 6976KB 996.6KB/s 00:07
    WHITE_04l3v2jv_1_1.bckp 100% 1315KB 1.3MB/s 00:01
    NOTE:
    The target and clone database location for RMAN backup folder must be same.
    for eg: /u01/app/oracle/backup folder
    check the below link to clone database in different server.
    http://www.akadia.com/services/ora_duplicate_database_rman.html

  • Rman cloning rac+asm_cold backup

    Hi
    i have a RAC db v11.2 ,which uses asm and backed up using rman (cold backup, back'd up to asm diskgroup).
    is there any document on how to clone this db on the same cluster or remote cluster?
    if I clone on the same cluster then I guess I need to give it a new name too...
    can cloning change db characterset as well?
    Edited by: user9198889 on Jan 6, 2011 8:49 AM

    Hopes the below documents will help,
    Need Document/Steps for Cloning RAC 11g.
    http://download.oracle.com/docs/cd/E14072_01/rac.112/e10718/clonerac.htm
    http://blogs.oracle.com/AlejandroVargas/gems/RMANDUPDBPRACTICE.pdf
    Thanks

  • RMAN Cloning - Active Duplication failure

    Platform : HP-UX B.11.31 U ia64
    Oracle Version: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    connected to auxiliary database (not started)
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 01/07/2012 09:35:41
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-04014: startup failed: ORA-01078: failure in processing system parameters
    ORA-00119: invalid specification for system parameter REMOTE_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENERS_SALES_DB'
    Any idea on how to resolve this error / what causes this error much appreciated.

    I am facing issue on active database duplication and has below issue. Can any one help me on this?
    RMAN> connect target sys@Pa305
    connected to target database: PA305 (DBID=2787277616)
    RMAN> connect auxiliary sys@Pb305
    connected to auxiliary database: PB305 (not mounted)
    RMAN> DUPLICATE TARGET DATABASE
    TO 'PB305'
    FROM ACTIVE DATABASE
    2> 3> 4> ;
    Starting Duplicate Db at 31-JUL-2012 17:20:07
    using target database control file instead of recovery catalog
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: SID=2838 instance=PB3051 device type=DISK
    contents of Memory Script:
    sql clone "alter system set control_files =
    ''+DG_075_DATA01/PB305/controlfile/current.270.790104009'', ''+DG_075_FRA01/PB305/controlfile/current.286.790104009'' comment=
    ''Set by RMAN'' scope=spfile";
    sql clone "alter system set db_name =
    ''PA305'' comment=
    ''Modified by RMAN duplicate'' scope=spfile";
    sql clone "alter system set db_unique_name =
    ''PB305'' comment=
    ''Modified by RMAN duplicate'' scope=spfile";
    shutdown clone immediate;
    startup clone force nomount
    backup as copy current controlfile auxiliary format '+DG_075_DATA01/PB305/controlfile/current.269.790104009';
    restore clone controlfile to '+DG_075_FRA01/PB305/controlfile/current.288.790104009' from
    '+DG_075_DATA01/PB305/controlfile/current.269.790104009';
    sql clone "alter system set control_files =
    ''+DG_075_DATA01/PB305/controlfile/current.269.790104009'', ''+DG_075_FRA01/PB305/controlfile/current.288.790104009'' comment=
    ''Set by RMAN'' scope=spfile";
    shutdown clone immediate;
    startup clone nomount;
    alter clone database mount;
    executing Memory Script
    sql statement: alter system set control_files = ''+DG_075_DATA01/PB305/controlfile/current.270.790104009'', ''+DG_075_FRA01/PB305/controlfile/current.286.790104009'' comment= ''Set by RMAN'' scope=spfile
    sql statement: alter system set db_name = ''PA305'' comment= ''Modified by RMAN duplicate'' scope=spfile
    sql statement: alter system set db_unique_name = ''PB305'' comment= ''Modified by RMAN duplicate'' scope=spfile
    Oracle instance shut down
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 07/31/2012 17:20:18
    RMAN-06174: not connected to auxiliary database
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-04006: error from auxiliary database: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    RMAN>

  • RMAN cloning

    Hi All,
    I need to create a database clone using RMAN but the name of the clone database has to be different from that of the Source database.
    Can I use the same controlfile as the one that was backedup by the RMAN during
    backup database plus archivelog;I guess no, since this controlfile will have the same db name as that of the source database?
    Do I have to recreate the controlfile by changing the database name?
    Regards
    Sphinx

    $phinx19 wrote:
    Hi All,
    I need to create a database clone using RMAN but the name of the clone database has to be different from that of the Source database.
    Can I use the same controlfile as the one that was backedup by the RMAN during
    backup database plus archivelog;I guess no, since this controlfile will have the same db name as that of the source database?
    Do I have to recreate the controlfile by changing the database name?
    Regards
    SphinxWhat is the version you are using?
    If you prefer RMAN DUPLICATE then you can give different name other than source. If you prefer only RMAN RESTORE then you can change database name either by "DBNEWID" or recreate control file after the restore.

Maybe you are looking for

  • Playback with Blackmagic Ultrastudio Express Thunderbolt

    Hello, I'm using a MacBook Pro, a Blackmagic Ultrastudio Express Thunderbolt, and Premiere Pro CC 2014.  Under preferences I've set playback to BlackMagic playback.  When I connect a monitor to the ultra studio express I can get playback from the sou

  • PhotoShop Palette Menus Have Large Font

    I've recently been through a big crash and reinstall of the OS (from the 10.4 DVD then the Software Update to 10.4.3) and Adobe Creative Suite 8.0. I have since trashed prefs as well as the ap and reinstalled PhotoShop a couple of times. However, tha

  • Microsoft Word vs. Pages..?

    I'm in need of some feedback of Apple user experience in using Word vs. Pages? I was used to AppleWorks until it was discontinued and been trying to use Word as many people (PC/MAC users) use it as a standard word processing program. But I'm not real

  • JFileChooser set focus to specific directory

    Is it possible to set the JFileChooser to grab focus on the previous selected directory in directory only mode from the textfield containing the selected file name? The behavior I am seeking is to show the chooser with a directory already selected an

  • Getting error message when setting up CNAME & MX record. Help?

    When setting up a CNAME and MX for a 2nd site with a different email on that site, I am getting error message, "URL aready in system". Bothe 1st site and 2nd site have different emails but are both on same server. How can I fix this?