Error in alertlog file..

Hi Guru's,
i'm back after 2 months last 2 months my server is in good condition but just now some error.
Llog in screen opened and then user-name and password also accepted but when entering in any responsibility developer form window its showing the user-name password error but after 5 minutes its automatically solved.At that time i checked my alert log file. there is some error i cant understand that error ..how it comes any user created that error please explain to me and also if error comes again what can i want to do?
below i attached that error:
Thread 1 advanced to log sequence 7267
Current log# 21 seq# 7267 mem# 0: C:\ORACLE\PRODDATA\LOG21A.DBF
Current log# 21 seq# 7267 mem# 1: C:\ORACLE\PRODDATA\LOG21B.DBF
Wed Sep 15 08:42:35 2010
ARC0: Beginning to archive log# 25 seq# 7266
Wed Sep 15 08:42:47 2010
ARC0: Completed archiving log# 25 seq# 7266
Wed Sep 15 08:58:10 2010
Completed checkpoint up to RBA [0x1c63.2.10], SCN: 0x0000.38077d53
Wed Sep 15 09:19:43 2010
Recovery of Online Redo Log: Thread 1 Group 21 Seq 7267 Reading mem 0
Mem# 0 errs 0: C:\ORACLE\PRODDATA\LOG21A.DBF
Mem# 1 errs 0: C:\ORACLE\PRODDATA\LOG21B.DBF
Recovery of Online Redo Log: Thread 1 Group 21 Seq 7267 Reading mem 0
Mem# 0 errs 0: C:\ORACLE\PRODDATA\LOG21A.DBF
Mem# 1 errs 0: C:\ORACLE\PRODDATA\LOG21B.DBF
Recovery of Online Redo Log: Thread 1 Group 21 Seq 7267 Reading mem 0
Mem# 0 errs 0: C:\ORACLE\PRODDATA\LOG21A.DBF
Mem# 1 errs 0: C:\ORACLE\PRODDATA\LOG21B.DBF
Wed Sep 15 09:33:25 2010
skgpspawn failed:category = 27143, depinfo = 9261, op = spdcr, loc = skgpspawn
Wed Sep 15 09:51:36 2010
Beginning log switch checkpoint up to RBA [0x1c64.2.10], SCN: 0x0000.3807d7a5
Thread 1 advanced to log sequence 7268
Current log# 22 seq# 7268 mem# 0: C:\ORACLE\PRODDATA\LOG22A.DBF
Current log# 22 seq# 7268 mem# 1: C:\ORACLE\PRODDATA\LOG22B.DBF
Wed Sep 15 09:51:37 2010
ARC0: Beginning to archive log# 21 seq# 7267
Wed Sep 15 09:51:49 2010
ARC0: Completed archiving log# 21 seq# 7267
Regards
***SBJ***

Hi SBJ
What is your EBS and Db version?
Please check below notes which could be helpfulf or your issue:
Initial Request Causes System to Hang [ID 751718.1]
Skgpspawn Errors In Alert Log, New Connections to Database Fail [ID 435787.1]
Regard
Helios

Similar Messages

  • How to get ORA errors in alertlog file using shell script.

    Hi,
    Can anyone tell me how to get all ORA errors between two particular times in an alertlog file using shell script.
    Thanks

    Hi,
    You can define the alert log as an external table, and extract messages with SQL, very cool:
    http://www.dba-oracle.com/t_oracle_alert_log_sql_external_tables.htm
    If you want to write a shell script to scan the alert log, see here:
    http://www.rampant-books.com/book_2007_1_shell_scripting.htm
    #!/bin/ksh
    # log monitoring script
    # report all errors (and specific warnings) in the alert log
    # which have occurred since the date
    # and time in last_alerttime_$ORACLE_SID.txt
    # parameters:
    # 1) ORACLE_SID
    # 2) optional alert exclusion file [default = alert_logmon.excl]
    # exclude file format:
    # error_number error_number
    # error_number ...
    # i.e. a string of numbers with the ORA- and any leading zeroes that appear
    # e.g. (NB the examples are NOT normally excluded)
    # ORA-07552 ORA-08006 ORA-12819
    # ORA-01555 ORA-07553
    BASEDIR=$(dirname $0)
    if [ $# -lt 1 ]; then
    echo "usage: $(basename) ORACLE_SID [exclude file]"
    exit -1
    fi
    export ORACLE_SID=$1
    if [ ! -z "$2" ]; then
    EXCLFILE=$2
    else
    EXCLFILE=$BASEDIR/alert_logmon.excl
    fi
    LASTALERT=$BASEDIR/last_alerttime_$ORACLE_SID.txt
    if [ ! -f $EXCLFILE ]; then
    echo "alert exclusion ($EXCLFILE) file not found!"
    exit -1
    fi
    # establish alert file location
    export ORAENV_ASK=NO
    export PATH=$PATH:/usr/local/bin
    . oraenv
    DPATH=`sqlplus -s "/ as sysdba" <<!EOF
    set pages 0
    set lines 160
    set verify off
    set feedback off
    select replace(value,'?','$ORACLE_HOME')
    from v\\\$parameter
    where name = 'background_dump_dest';
    !EOF
    `
    if [ ! -d "$DPATH" ]; then
    echo "Script Error - bdump path found as $DPATH"
    exit -1
    fi
    ALOG=${DPATH}/alert_${ORACLE_SID}.log
    # now create awk file
    cat > $BASEDIR/awkfile.awk<<!EOF
    BEGIN {
    # first get excluded error list
    excldata="";
    while (getline < "$EXCLFILE" > 0)
    { excldata=excldata " " \$0; }
    print excldata
    # get time of last error
    if (getline < "$LASTALERT" < 1)
    { olddate = "00000000 00:00:00" }
    else
    { olddate=\$0; }
    errct = 0; errfound = 0;
    { if ( \$0 ~ /Sun/ || /Mon/ || /Tue/ || /Wed/ || /Thu/ || /Fri/ || /Sat/ )
    { if (dtconv(\$3, \$2, \$5, \$4) <= olddate)
    { # get next record from file
    next; # get next record from file
    # here we are now processing errors
    OLDLINE=\$0; # store date, possibly of error, or else to be discarded
    while (getline > 0)
    { if (\$0 ~ /Sun/ || /Mon/ || /Tue/ || /Wed/ || /Thu/ || /Fri/ || /Sat/ )
    { if (errfound > 0)
    { printf ("%s<BR>",OLDLINE); }
    OLDLINE = \$0; # no error, clear and start again
    errfound = 0;
    # save the date for next run
    olddate = dtconv(\$3, \$2, \$5, \$4);
    continue;
    OLDLINE = sprintf("%s<BR>%s",OLDLINE,\$0);
    if ( \$0 ~ /ORA-/ || /[Ff]uzzy/ )
    { # extract the error
    errloc=index(\$0,"ORA-")
    if (errloc > 0)
    { oraerr=substr(\$0,errloc);
    if (index(oraerr,":") < 1)
    { oraloc2=index(oraerr," ") }
    else
    { oraloc2=index(oraerr,":") }
    oraloc2=oraloc2-1;
    oraerr=substr(oraerr,1,oraloc2);
    if (index(excldata,oraerr) < 1)
    { errfound = errfound +1; }
    else # treat fuzzy as errors
    { errfound = errfound +1; }
    END {
    if (errfound > 0)
    { printf ("%s<BR>",OLDLINE); }
    print olddate > "$LASTALERT";
    function dtconv (dd, mon, yyyy, tim, sortdate) {
    mth=index("JanFebMarAprMayJunJulAugSepOctNovDec",mon);
    if (mth < 1)
    { return "00000000 00:00:00" };
    # now get month number - make to complete multiple of three and divide
    mth=(mth+2)/3;
    sortdate=sprintf("%04d%02d%02d %s",yyyy,mth,dd,tim);
    return sortdate;
    !EOF
    ERRMESS=$(nawk -f $BASEDIR/awkfile.awk $ALOG)
    ERRCT=$(echo $ERRMESS|awk 'BEGIN {RS="<BR>"} END {print NR}')
    rm $LASTALERT
    if [ $ERRCT -gt 1 ]; then
    echo "$ERRCT Errors Found \n"
    echo "$ERRMESS"|nawk 'BEGIN {FS="<BR>"}{for (i=1;NF>=i;i++) {print $i}}'
    exit 2
    fi

  • Errors in alertlog file

    I am finding following message in alert log file everyday.What could be the reason & what is the solution.There are no accompanying errors.
    ALERT ! ALERT ! 25-JAN-2001 16:00 : DATA OBJECT FOUND INVALID CHECK IT OUT
    null

    I am finding following message in alert log file everyday.What could be the reason & what is the solution.There are no accompanying errors.
    ALERT ! ALERT ! 25-JAN-2001 16:00 : DATA OBJECT FOUND INVALID CHECK IT OUT
    null

  • Trace dump error alertlog file

    Hi,
    Today i had checked my alertlog file . i can see below message showing there. i gone to cdmp_20110926135759 this directory there are lot of trw files (smon, rvwr,reco ..etc ). please guide me . we are using oracle 10.2.0.4.0
    Mon Sep 26 13:57:59 2011
    Trace dumping is performing id=[cdmp_20110926135759]
    regards,
    John
    T

    Hi,
    Below the message from my alertlog file.
    Mon Sep 26 10:24:30 2011
    Errors in file /d01/app/oracle/admin/njmdb/udump/njmdb1_ora_1364224.trc:
    ORA-00600: internal error code, arguments: [17280], [2], [0x70000010861C088], [], [], [], [], []
    ORA-00600: internal error code, arguments: [17280], [2], [0x70000010861C088], [], [], [], [], []
    Mon Sep 26 10:42:14 2011
    Thread 1 advanced to log sequence 7607 (LGWR switch)
    Current log# 7 seq# 7607 mem# 0: /oradata_gpfs/oradata/njmdb/redo7.log
    Mon Sep 26 11:15:45 2011
    Thread 1 advanced to log sequence 7608 (LGWR switch)
    Current log# 8 seq# 7608 mem# 0: /oradata_gpfs/oradata/njmdb/redo8.log
    Mon Sep 26 11:55:39 2011
    Trace dumping is performing id=[cdmp_20110926115555]
    Mon Sep 26 11:58:31 2011
    Errors in file /d01/app/oracle/admin/njmdb/udump/njmdb1_ora_1302948.trc:
    ORA-00600: internal error code, arguments: [17280], [2], [0x70000010861C088], [], [], [], [], []
    ORA-03135: connection lost contact
    Mon Sep 26 11:58:32 2011
    Trace dumping is performing id=[cdmp_20110926115832]
    Mon Sep 26 12:01:55 2011
    Thread 1 advanced to log sequence 7609 (LGWR switch)
    Current log# 7 seq# 7609 mem# 0: /oradata_gpfs/oradata/njmdb/redo7.log
    Mon Sep 26 12:50:48 2011
    Thread 1 advanced to log sequence 7610 (LGWR switch)
    Current log# 8 seq# 7610 mem# 0: /oradata_gpfs/oradata/njmdb/redo8.log
    Mon Sep 26 13:47:10 2011
    Thread 1 advanced to log sequence 7611 (LGWR switch)
    Current log# 7 seq# 7611 mem# 0: /oradata_gpfs/oradata/njmdb/redo7.log
    Mon Sep 26 13:57:43 2011
    Trace dumping is performing id=[cdmp_20110926135759]
    thanks,
    john

  • Error While Adding File in Mimes

    Hello Experts,
    I am new to WDA, and am trying to add a image as a mime object in the WD component.
    But its giving an error "Error when Loading File"
    I tried putting the image in the Mimes repository but still the same error.
    Any clue what can be the problem,?
    Is any authorization requered?
    The image is of type jpg
    Thanks in advance
    Jeet

    hi ,
    u proceed as follows , thn u wud be able to import the mime object
    1 go to Object Name -> create->mime object ->import
    2 insert a UI elemnt of type image
    3 bind it source property with the mime . u wud find mime here
    COMPONENT IMAGES tab , when u click on the source property of image

  • While importing a request error message' Check-sum error in data file'

    Hi Friends
    I have a problem.
    We are trying to inport a request after putting the files in cofile and data file folders( 4.6C System).While doing so an error message is seen in the log " Check-sum error in data file after XXXX bytes".
    Can some one help me with this?
    Thanks
    Regards
    Ankur

    Hi Ankur,
    It is sure your file is corrupted or not present.
    Check in cofiles and data directory under /usr/sap/trans your transport request number.
    Best Wishes.
    Kumar

  • Error in IDOC - File scenario

    Hi Experts,
    This is my error :
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_INV_SND_SERV</SAP:Code>
      <SAP:P1>INTEGRATION_SERVER_XID</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Unable to convert the sender service INTEGRATION_SERVER_XID to an ALE logical system</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    OTHER ERROR  FOR  PAYLOAD OF  SENDER PART IS AS BELOW :
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    The character '>' was expected. Error processing resource 'file:///C:/Documents and Settings/ABC/Local Settings/Tempor...
    <?xml version="1.0" encoding="UTF-8" ?><ZZ/AFS/FUNACK><IDOC BEGIN="1"><EDI_DC40 SEGMENT="1"><TABN...
    Please Help,
    Regards,
    Study SAP

    Hi,
    The problem occurs when sender and receiver business system or business service does not have a logical system name.
    ID - Integration Directory
    Posting the IDOC'S into SAP R/3 System, sender and receiver business system or business service requires the logical system name. If the business system (Web As ABAP) does not have the logical system name, then add the logical system for business system.
    In technical system browser
    If business system type = Web AS ABAP, then add the Logical system in Technical System level and Save.
    If business system type = Third-Party, then add the logical system in business system level and Save.
    If the business service does not have the logical system name in ID, it needs to be configured as follows.
    Check the below screen shot which shows how to add the logical system for business service.
    Go to ID and click the Business service -> Services -> Adapter Specific Identifiers. Enter the logical system name and Save.
    Apply and activate.
    Hope this will help you.
    regards
    Aashish Sinha
    PS : reward points if helpful

  • Program Error- cannot open file? Please help! I lost my whole project!

    When I try to open an animation psd file, I keep getting a box that says my request could not be completed due to a program error. The file is 23.7 MB and I am using a PC.... I at least need to get the file open so i can export the animation.

    I don't personally know how to repair such a file, but I can suggest a utility that will be able to fetch an uncorrupted backup copy if it is in Window's Shadow copy.
    http://shadowexplorer.com/   It's a free and easy to use utility. I personally have it.
    Gene

  • Error message "Live file system repair is not supported."

    System won't boot. Directed to Disk Utility to repair but get error message "Live file system repair is not supported."  Appreciate all help.
    Thanks.
    John

    I recently ran into a similar issue with my Time Machine backup disk. After about 6 days of no backups - I had swapped the disk for my photo library for a media project; I reattached the Time Machine disk and attempted a backup.
    Time Machine could not backup to the disk. Running Disk Utility and attempting to Repair the disk ended up returning the "Live file system repair is not supported" message.
    After much experimentaion with disk analysis softwares, I came to the realization that the issue might be that the USB disk dock wasn't connected directly to the MacBook Pro - it was daisy-chained through a USB Hub.
    Connecting the USB disk dock directly to the MBP and running Disk Utility appears to have resolved the issue. DU ran for about 6 hours and succesfully repaired the disk. Consequently, I have been able to use that Time Machine disk for subsequent backups.

  • Oracle error  "No message file for" after Upgrade to 10.2.0.5

    After upgrade from 9.2.0.8 to 10.2.0.5 i get the following error "No message file for"
    (with both Users sidadm and orasid)
    Platform AIX 64 bit
    The installation und Upgrade with dbua works fine.
    DB and SAP runs after the Upgrade.
    then I tried
    SQL> select xx from v$log;
    select xx from v$log
    ERROR at line 1:
    ORA-00904: Message 904 not found; No message file for produstyle='font-
    family:courier' ct=RDBMS,
    facility=ORA; arguments: ["XX"]
    The Environment is correct,
    ORACLE_HOME,ORACLE_SID,PATH,LIBPATH have right Values.
    I cant find any failure in Configuration or Install Logs.
    So i tried the following:
    Copy the complete Directorie /oracle/SID/102_64/rdbms/msg from a
    10.2.0.4 Oracle Installation to the 10.2.0.5 home.
    the result ist that the Messagefile could be read by Oracle an i get
    the ORA-00904
    Here the same Query:
    SQL> select xx from v$log;
    select xx from v$log
    ERROR at line 1:
    ORA-00904: "XX": invalid identifier
    So I do the same procedure with an other System.
    I detect:
    the Patch 9952230 (SAP_102051_201011/9952230) delivers
    both Message Files oraus.msg and oraus.msb which caused the problem.
    Has anyone the same Problem?
    Are there any other Impacts with wrong Message Files .
    I raised a OSS Call, but no answer till today.
    best regards
    Uwe

    I could not find anything is sap notes, but oracle recommends to update binary file oraus.msb in $ORACLE_HOME/rdbms/mesg
    Download link:
    https://updates.oracle.com/ARULink/PatchDetails/process_form?patch_num=10235783
    You can find more details also in:
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=10235783.8
    https://support.oracle.com/CSP/main/article?cmd=show&type=BUG&id=10235783
    The problem with this solution. It is not officially released by SAP.

  • Error reading from file glibc-2.5-24.i686.rpm RHEL 5 Setup stuck at 80%

    Hi, I am installing Oracle 10g on RHEL 5 (Red Hat Enterprise Linux 5) machine I am facing two problems
    1) while installing the rpm packages the following package gave an error
    Error reading from file glibc-2.5-24.i686.rpm
    2) I still gave a try to runInstaller command the installer opened but was stuck at 80%
    I have 3 GB ram and 320GB hard drive I am not sure what to put in the swap memory and other settings i blindly followed instructions given here
    http://www.oracle-base.com/articles/10g/OracleDB10gR2InstallationOnRHEL5.php
    What could be the problem where do I find the error log if its created
    Please help me
    Thanks
    Edited by: 891355 on Nov 6, 2011 12:06 PM

    I found the installActions file in the installer folder and I think this could be the problem
    INFO: The 'shiphomeproperties.xml' file is missing from shiphome location '/home/oracle/Desktop/database/install/../stage/products.xml.' Add this file to the 'Disk1/stage' directory of the shiphome.
    though I am attaching the log file for more details do you think the installer is corrupt :(
    InstallActions log file ==> http://www.mediafire.com/?nh7mx7bxqht9ovu
    Edited by: 891355 on Nov 6, 2011 1:35 PM

  • Error reading wsdl file excepetion null

    Hi
    I am trying to invoke a proxy service (web service) wsdl from a bpel process. When i add a web service adapter, put url of external web service and save it, all my service end points defined in the BPEL process are becoming non editable. Binding of operation is changing from web service to HTTP binding for all end points. When I try to edit any partner link, Jdev throws an error " error reading wsdl file excepetion null " for local services. For external service, even though i am refering to a url on the server, it points to " C:\Oracle\Middleware\jdeveloper\jdev\bin\...\xxxx?WSDL" and throws same error " failed to read wsdl file(System could not find the path specified". I am just clueless as to why this is happening. Any help is much appreciated.

    Try the SOA Forum - SOA Suite

  • \\Error Reading Rules File when dimbuild with DLR

    Hi
    I am using Essbase 11.1.2.1.
    I create a DLR via the web console EAS (11.1.2.1 too) : a very simple one : dimbuild DLR, ";" as separator, 2 fields (parent and child)
    when i try do do a "Update Ouline..." with a very simple file (1 line : accounts;test) I have this error message "\\Error Reading Rules File"
    I don't know if it can help but if I create the same DLR on another 7.1 essbase serveur through this same wec eas console (11.1.2.1), I have no problem...
    another information, too : my 11.1.2.1 server has a //ESS_LOCALE English_UnitedStates.Latin1@Binary ESSLANG. My 7.1 server has a //ESS_LOCALE French_France.ISO-8859-15@Default ESSLANG. I really don't know if there is a link, or absolutely not.
    Thanks in advance for your help!
    Fanny

    unable to load essmsh.exe : the error message seems to indicate that it is a problem with a path in the environment variables.
    So if you say that the "Error Reading Rules File" is typically a path issue, all is probably linked!
    The admin will probably correct that tomorrow : I let you know if it solves the problem!
    Thanks!
    Fanny

  • Error reading product file driver files

    When attempting apply a large merge patch I receive the following error:
    Screening out files not valid for this installation...
    Determining valid on-site files...
    AutoPatch error:
    The following file is missing:
    /oracle/prodappl/pa/11.5.0/admin/driver/pasb038.drv
    AutoPatch error:
    Error reading product file driver files [complete; make tapes]
    AutoPatch error:
    Error determining valid on-site files
    Any ideas?
    I've tried using options=noprereq option, but that didn't help.

    - Try to restore the file from a backup you have Or just copy it from any other environment.
    - Make sure that you have included all pre-req patches in the merged file.
    I've tried using options=noprereq optionBy this you tell adpatch not to check for pre-req, use 'options=prereq' instead.

  • Error reading zip file in Java 6

    We have a bespoke installer program that fails, intermittently, in Java 6 on Windows. After installing some files, it then fails with a stack trace like this:
    java.util.zip.ZipException: error reading zip file
         at java.util.zip.ZipFile.read(Native Method)
         at java.util.zip.ZipFile.access$1200(ZipFile.java:29)
         at java.util.zip.ZipFile$ZipFileInputStream.read(ZipFile.java:447)
         at java.util.zip.ZipFile$1.fill(ZipFile.java:230)
         at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:141)
         at java.io.FilterInputStream.read(FilterInputStream.java:90)
         at com.XXXX.trent.installer.Installer.writeStreamToFile(Unknown Source)
         at com.XXXX.trent.installer.Installer.installFile(Unknown Source)
         at com.XXXX.trent.installer.PatchFileInstaller.installFile(Unknown Source)
         at com.XXXX.trent.installer.PatchFileInstaller.installFiles(Unknown Source)
         at com.XXXX.trent.installer.UpgradeInstaller$TpfAction.run(Unknown Source)
         at com.XXXX.trent.installer.UpgradeInstaller.runActions(Unknown Source)
         at com.XXXX.trent.installer.UpgradeInstaller.install(Unknown Source)
         at com.XXXX.trent.installer.TrentInstall$SoftwareInstallStage.install(Unknown Source)
         at com.XXXX.trent.installer.TrentInstall$UpgradeInstallWorker.install(Unknown Source)
         at com.XXXX.trent.installer.PatchInstall$InstallWorker.construct(Unknown Source)
         at com.XXXX.trent.utils.SwingWorker$2.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:619)The same code works in Java 5 on the same environments that it now fails in Java 6 (1.6.0_16).
    Any ideas?
    Thanks.

    gimbal2 wrote:
    it is not weird, it is a bug in the application. Don't let the upgrade from Java 5 to Java 6 make you believe otherwise.It's a singularly bad exception message though. I would have thought that something from java.util might be a bit more explicit about what the problem is.
    Winston

Maybe you are looking for

  • Can no longer open up report file - Crystal Crashes

    I have a crystal report that I can not longer get to open. I'm on windows 7 32-bit, and I've attempted to open it in both 2008 and 2011. The report is comprised mainly of sub-reports. Each sub-report in its own report header section. I'm pretty sure

  • JButton in JTable with custom table model

    Hi! I want to include a JButton into a field of a JTable. I do not know why Java does not provide a standard renderer for JButton like it does for JCheckBox, JComboBox and JTextField. I found some previous postings on how to implement custom CellRend

  • Time Capsule not backing up after 1.5 years

    Can someone help with this message? I am running time machine to back up my imac and MacBoo Pro also. imac is running snow leopard and macbookpro is running mt lion. "This backup is to large for the backup disk. the backup requires 12.58 GB but only

  • Brain-Dead iPod shuffle!

    I'm on my dad's PC right now, and there is something wrong with his iPs. When I plug it in, it just mounts in My Computer as F:, and it was NOT set up to enable disk use. So I opened iTunes, and it comes up saying: "The software required for communic

  • Using SDHC to store iTunes library?

    Can I migrate my iTunes libraries to a SDHC and using the apple adapter access the music directly on my iPad ?