Script keeps repeating

Hi All --
I have a script that is supposed to retrieve some information from two tables based upon a select statement. Then write the data to a file. However, the script keeps repeating and does not break out of the loop. It doesn't give me any errors and eventually the server times out. When I run the select statement by itself, it only retrieves about 15 records. Not sure why it doesn't break out of the loop. Any ideas? My code is below:
Thanks,
Donna
CREATE OR REPLACE PROCEDURE CourseMem_Extract IS
filehandler UTL_FILE.FILE_TYPE;
counter Number := 0;
Begin
filehandler := UTL_File.FOPEN('d:\files', 'BbCourseMem'| |To_Char(sysdate, 'mm-dd-yyyy-hhmi')| |'.txt', 'w');
For Faculty_Cursor IN
Select Distinct a.Course_Number, a.Course_Section, a.Campus_code, a.Year, a.Term, a.Course_Length,
c.Faculty_First_Name, c.Faculty_Last_Name, c.Cohort_Number, c.birth_date
from Course a, Faculty c
Where (
(Course_Section Is Not Null AND
(a.Faculty_SSN = c.social_security_number )
AND Active_Status = 'A')
Loop
counter := counter + 1;
UTL_FILE.PUT(filehandler, Faculty_Cursor.Course_Number);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Campus_Code);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Course_Length);
UTL_FILE.PUT(filehandler, Faculty_Cursor.term);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Year);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Course_Section);
UTL_FILE.PUT(filehandler, '|');
utl_file.put(filehandler, Faculty_Cursor.Faculty_First_Name);
utl_file.put(filehandler, Faculty_Cursor.Faculty_Last_Name);
utl_file.put(filehandler, (Lower(Faculty_Cursor.Cohort_Number)));
UTL_FILE.PUT(filehandler, (To_Char(Faculty_Cursor.birth_date, 'mm/dd/yyyy')));
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Instructor');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Enabled');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Y');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, ' ');
utl_file.New_Line(filehandler);
END LOOP;
UTL_FILE.PUT(filehandler, '***FileFooter|'| |counter| |'|'| |To_Char(sysdate, 'hh:mi:ss dd/mm/yyyy'));
UTL_FILE.FFLUSH(filehandler);
UTL_FILE.FCLOSE(filehandler);
EXCEPTION
when utl_file.invalid_path then
raise_application_error(-20001, 'INVALID_PATH: File loc or name was invalid.');
when utl_file.invalid_mode then
raise_application_error(-20002, 'INVALID_MODE: open_mode in FOPEN was invalid.');
when utl_file.invalid_filehandle then
raise_application_error(-20002, 'INVALID_FILEHANDLE: The file handle was invalid.');
when utl_file.invalid_operation then
raise_application_error(-20003, 'INVALID_OPERATION: The file could not be opened or operated on as requested.');
when utl_file.read_error then
raise_application_error(-20004, 'READ_ERROR: An OS error occurred during the read operation.');
when utl_file.write_error then
raise_application_error(-20005, 'WRITE_ERROR: An OS error occurred during the write operation.');
when utl_file.internal_error then
raise_application_error(-20006, 'INTERNAL_ERROR: An unspecified error in PL/SQL.');
end CourseMem_Extract;
Execute CourseMem_Extract;
null

Well, I changed the code to an explicit cursor and the first part of it works. But my second cursor is not working. It now hangs. Could it be caused by the version of Oracle (Oracle8 Enterprise Edition Release 8.0.6.0.0 ) or by the OS being NT? Here is the modified code:
CREATE OR REPLACE PROCEDURE CourseMem_Extract IS
filehandler UTL_FILE.FILE_TYPE;
counter Number := 0;
Cursor l_Faculty is
Select a.Course_Number, a.Course_Section, a.Campus_code, a.Year, a.Term, a.Course_Length,
c.Faculty_First_Name, c.Faculty_Last_Name, c.Cohort_Number, c.birth_date
from Course a, Faculty c
Where (
(a.Course_Section Is Not Null AND c.Active_Status = 'A' AND (a.Faculty_ID = c.Identification_number ) ) );
Faculty_Cursor l_Faculty%RowType;
Begin
filehandler := UTL_File.FOPEN('d:\files', 'BbCourseMem2'| |To_Char(sysdate, 'mm-dd-yyyy-hhmi')| |'.txt', 'w');
UTL_FILE.PUT_LINE(filehandler, 'External_Course_Key|External_Person_Key|Role|Row_Status|Available_Ind|New_Data_Source_Key');
Open l_Faculty;
Loop
Fetch l_Faculty INTO Faculty_Cursor;
Exit When l_Faculty%NotFound;
counter := counter + 1;
UTL_FILE.PUT(filehandler, Faculty_Cursor.Course_Number);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Campus_Code);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Course_Length);
UTL_FILE.PUT(filehandler, Faculty_Cursor.term);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Year);
UTL_FILE.PUT(filehandler, Faculty_Cursor.Course_Section);
UTL_FILE.PUT(filehandler, '|');
utl_file.put(filehandler, Faculty_Cursor.Faculty_First_Name);
utl_file.put(filehandler, Faculty_Cursor.Faculty_Last_Name);
utl_file.put(filehandler, (Lower(Faculty_Cursor.Cohort_Number)));
UTL_FILE.PUT(filehandler, (To_Char(Faculty_Cursor.birth_date, 'mm/dd/yyyy')));
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Instructor');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Enabled');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Y');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, ' ');
UTL_FILE.PUT(filehandler, '');
utl_file.New_Line(filehandler);
Commit;
END LOOP;
Close l_Faculty;
Cursor l_Course is
Select Distinct a.Course_Number, a.Course_Section, a.Campus_code, a.Year, a.Term, a.Course_Length,
c.Student_First_Name, c.Student_Last_Name, b.Cohort_Number, d.birth_date
from Course a, Student b, applicant c, demography d
Where (
(a.Course_Number = b.Course_Number_One AND
b.Course_Section1 Is Not Null AND
b.Stage_Grade Is Null AND b.Termination_Status Is Null)
OR
(a.Course_Number = b.Course_Number_Two AND
b.Course_Section2 Is Not Null AND
b.Indep_Study_Grade Is Null AND b.Termination_Status Is Null)
AND
( c.Identification_number = b.Identification_number )
and
( c.Identification_number = d.Identification_number )
and
( d.Identification_number = b.Identification_number )
Course_Cursor l_Course%RowType;
Begin
Open l_Course;
Loop
Fetch l_Course INTO Course_Cursor;
Exit When l_Course%NotFound;
counter := counter + 1;
UTL_FILE.PUT(filehandler, Course_Cursor.Course_Number);
UTL_FILE.PUT(filehandler, Course_Cursor.Campus_Code);
UTL_FILE.PUT(filehandler, Course_Cursor.Course_Length);
UTL_FILE.PUT(filehandler, Course_Cursor.term);
UTL_FILE.PUT(filehandler, Course_Cursor.Year);
UTL_FILE.PUT(filehandler, Course_Cursor.Course_Section);
UTL_FILE.PUT(filehandler, '|');
utl_file.put(filehandler, Course_Cursor.Student_First_Name);
utl_file.put(filehandler, Course_Cursor.Student_Last_Name);
utl_file.put(filehandler, (Lower(Course_Cursor.Cohort_Number)));
UTL_FILE.PUT(filehandler, (To_Char(Course_Cursor.birth_date, 'mm/dd/yyyy')));
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Student');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Enabled');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, 'Y');
UTL_FILE.PUT(filehandler, '|');
UTL_FILE.PUT(filehandler, ' ');
UTL_FILE.PUT(filehandler, '');
utl_file.New_Line(filehandler);
Commit;
END LOOP;
Close l_Course;
UTL_FILE.PUT(filehandler, '***FileFooter|'| |counter| |'|'| |To_Char(sysdate, 'hh:mi:ss dd/mm/yyyy'));
UTL_FILE.FFLUSH(filehandler);
UTL_FILE.FCLOSE(filehandler);
EXCEPTION
when utl_file.invalid_path then
raise_application_error(-20001, 'INVALID_PATH: File loc or name was invalid.');
when utl_file.invalid_mode then
raise_application_error(-20002, 'INVALID_MODE: open_mode in FOPEN was invalid.');
when utl_file.invalid_filehandle then
raise_application_error(-20002, 'INVALID_FILEHANDLE: The file handle was invalid.');
when utl_file.invalid_operation then
raise_application_error(-20003, 'INVALID_OPERATION: The file could not be opened or operated on as requested.');
when utl_file.read_error then
raise_application_error(-20004, 'READ_ERROR: An OS error occurred during the read operation.');
when utl_file.write_error then
raise_application_error(-20005, 'WRITE_ERROR: An OS error occurred during the write operation.');
when utl_file.internal_error then
raise_application_error(-20006, 'INTERNAL_ERROR: An unspecified error in PL/SQL.');
end CourseMem_Extract;
Execute CourseMem_Extract;
null

Similar Messages

  • Updating Firefox 4.0 to 5.0 downloaded from Mozilla Firefox Add-Ons keeps repeating duplicate downloads...

    Firefox 5.0 upgrade from Mozilla downloads keeps repeating???

    I've since updated manually to 4.0.1, but haven't yet tried the full uninstall version, because I have to export plenty of settings first (and/or manually copy them). Also means I'd have to start from scratch with many customizations in No Script.
    That said, I'll try the 'Safe Mode' option tonight, thank you :-)!
    If I have to uninstall the whole shebang, I'd be more tempted to go back to 3.6.x until a few more of 4's teething problems (e.g. the messy print dialogues, particularly preview, which regularly doesn't even work) have been tackled.
    Thanks-1M! for now - keep you posted.

  • Script / Tracker repeat

    I am running the below script which seems to be doing its job to a certain extent.
    Once the script runs and the sim fails over, the tracker does not restart its timer until the tracker has changed to up.
    What I am after is for the script to run as below, but to keep running the ping tests and if the tracker fails over but stays down for another 15 minutes to run again, and then again after another 15 minutes and keep repeating every 15 minutes until the tracker changes to up.
    So the unit is swapping the sim every 15 minutes until it receives a signal. This is because one sim may run out of data allowance and the 2nd sim may have no signal.
    no track 2 ip sla 20 reachability
    no ip sla 20
    no event manager applet SimFailover
    track 2 ip sla 20 reachability
     delay down 180 up 180
    ip sla 20
     icmp-echo 8.8.8.8 source-interface Vlan1
     frequency 30
    ip sla schedule 20 life forever start-time after 00:15:00
    event manager applet SimFailover
     event track 2 state down
     action 1.0 syslog msg "No connectivity, failing over sim"
     action 0.1 cli command "enable"
     action 0.2 cli command "show cellular 0 security"
     action 0.3 regexp "Active SIM = ([0-9])" $_cli_result match sim
     action 0.4 if $sim eq 0
     action 0.5 cli command "cellular 0 lte sim activate slot 1"
     action 1.1 else
     action 1.2 cli command "cellular 0 lte sim activate slot 0"
     action 1.3 end

    What you should do is have your track down applet install another applet that actually does the swapping:
    event manager environment q "
    event manager environment cr $_cli_result
    event manager environment s $sim
    event manager applet SimFailover
     event track 2 state down
     action 001 cli command "enable"
     action 002 cli command "config t"
     action 003 cli command "event manager applet SimTimer"
     action 004 cli command "event timer watchdog time 900"
     action 005 cli command "action 0.1 cli command enable"
     action 006 cli command "action 0.2 cli command $q show cellular 0 security$q"
     action 007 cli command "action 0.3 regexp $q ?Active SIM = ([0-9])$q $cr match sim"
     action 008 cli command "action 0.4 if $s eq 0
     action 009 cli command "action 0.5 cli command $q cellular lte sim activate slot 1$q"
     action 010 cli command "action 1.0 syslog msg $q No connectivity, failing over sim$q"
     action 011 cli command "action 1.1 else"
     action 012 cli command "action 1.2 cli command $q cellular lte sim activate slot 0$q"
     action 013 cli command action 1.3 end"
     action 014 cli command "end"
    event manager applet SimTrackUp
     event track 2 state up
     action 1.0 cli command "enable"
     action 2.0 cli command "config t"
     action 3.0 cli command "no event manager applet SimTimer"
     action 4.0 cli command "end"

  • ITunes Match keeps repeating and Sonos Play 5!

    So this note has two pieces to it, one related to iTunes Match and the other is Sonos Play 5.   First an observation about the iTunes Match repeating problem.  I wanted to start using iTunes Match for a couple of reasons so I started to run it. It went through Step 1 and Step 2, started Step 3, stopped and restarted on Step 1. 
    So I was reading trying to find a solution in the Apple Support Community.  Some suggested that there was a corrupted song in the library so I went back to watch to see if I could catch when it left Step 3 to go back to Step 1. I was not really able to see exactly were it was reverting back to Step 1. 
    I then discovered ajlewis1851 note about reset Match, Store and the computer (https://discussions.apple.com/message/20530276#20530276)
    I also discovered a song that was not in my library so I deleted that from the library as well.  Neither of these seemed to work and it was back repeating itself.
    I left Match running while I was doing more searching and I discovered the thread about gating the upload speed as the upload speed might be the problem.  Well I spent a long time trying to figure out how to slow my Airport Extreme Base Station down and then I noticed that Match was uploading between 2-15 files before it would kick back to the beginning and the total number of files to be uploaded was slowly decreasing. 
    Low and behold after quite some time, Match finally finished and said it was done!  This has to be some serious bug in Match, but eventually it got done.  Not sure whether the two steps before helped or not.
    Now to the beginning of the story.  I started down this path because I was setting up a new iPod Touch to serve as controller for my new Sonos Play 5 system.  Everything seemed to work fine with Pandora and I was very excited. Synced a few playlist from my iTunes library and for many of the songs there was the dreaded ‘unplayable icon”-circle with a line through it!  Did some additional searching and discovered that the iPod Touch to Sonos Play 5 was only possible with DRM songs.
    This is an aside.  It is necessary to place this discovery against my experience of playing my iPod thru a Sonos iPod Dock without having to worry about the DRM status of the music.  My disappointment was nearly overwhelming.
    But Sonos recommended a strategy of iTunes Match to remove the DRM from the songs in my library.  Hence, my need for iTunes Match from the beginning of this story.  But this is not a very clean solution.  Even after one has done the iTunes Match, it is necessary to find all of the ‘Protected AAC audio files’ in your library, delete them and then download the ‘Purchased AAC audio files’ from the cloud.  (https://sonos.custhelp.com/app/answers/detail/a_id/626) and Apples directions (http://support.apple.com/kb/ht1711)
    There are of tricks in doing this ‘Protected’ to ‘Purchased’ transition.  When you select Music in your library, and then right click on the top bar above the music you can select additional columns to be shown. Select ‘Kind’ and you can see which music is protected vs purchased.  You can sort this column, thus bring all of the ‘Protected’ files together, select them all and with one right click delete them!  (I very very strongly recommended you have a couple of backups of your library, just in case and there is a small box in the dialogue about deleting them from the Cloud as well---MAKE SURE THIS BOX IS NOT SELECTED). Much to my delight, in the ‘Cloud’ column, you are presented with the choice to download the ‘Cloud’ version (now DRM free).  As best as I can tell, one has to download each song from the Cloud individually. My fingers were very tired after millions of clicks.  I did a few at a time so it took me the better part of a day to accomplish. 
    I was very excited because I now had DRM free music in my library (I figured this would solve the problem).  I connected the iPod Touch to the library, choose not to sync my playlist so all the playlists from the iPod Touch were removed and then reselected the playlists of interest and had them placed back on the iPod.  I ejected the iPod and tested the playlist on the Sonos.  Much to my surprise, the unplayable songs were still unplayable!!! 
    I deleted the Sonos App and reinstalled it (Did not work). 
    I deleted the playlist from the iPod Touch, and resync it to my library (You really don’t want to do this as it also deleted the playlist from my library!)  Fortunately, I had one of those backups.
    I then sync another playlist to the iPod Touch.  This second playlist was the complete album from which two songs were placed in the original problem playlist.  Much to my surprise, all of the songs from the album were fine, EXCEPT, the two songs that were unplayable in the original playlist.
    I finally came to the conclusion that something had been stored on the iPod during the initial sync with the DRM containing music that prevented the non-DRM music from working properly.  With a deep breath, and only after I disable the iPod Touch connection to iCloud (in a couple different places), I then went to Settings > General > Reset > Erase All Content and Settings and ran it to restore original factory settings. It was plugged into a power source.
    After setting the iPod Touch up again, I reconnected it to my iTunes library and moved the problem playlist over that contained several unplayable songs.  IT WORKED!  All the songs were playable.
    LESSONS: 
    1. If iTunes Match keeps repeating steps 1 and 2 watch carefully to see if the number of songs to be processed is changing for the better.  If yes, at least in my situation, it completed the process, but it took much longer than I believe it should have.
    2. My suspicion is that if you have installed DRM protected songs on an iPod Touch, the Sonos recommended solution will not work as stated.  Interestingly, it did seem work on my iPad and 4G iPhone. 
    Addendum: I have discovered a few songs where the Sonos recommended solution did not work on the iPad and iPhone as well.  Several are from the Madonna.

    Well.....It is now working....... Including converting locked tracks located on the IPad library into unlocked 256kbps tracks playable by Sonos...
    Used these steps:
    Signed up for ITunes Match using ITunes on a Windows PC
    Let Match do it's thing with 700 or so tracks
    Followed the procedure in the link above to create a smart playlist of tracks with bit rates less than 256kbps
    Using the smart playlist as a guide, I deleted or download tracks not appearing in Sonos on the PC. Then, refreshed the Sonos music library and confirmed these tracks now available and playable by Sonos
    On the IPad, for tracks that were grayed out in Sonos, I deleted and re-downloaded the tracks using the Music app (swipe right to left on a track to delete it)... then got into Sonos on the IPad to confirm the tracks no longer grayed out.
    So... I'm now happy.... I like the Sono system of WIFI streaming which is very flexible and produces decent sound quality, but did not realize until after buying the Sonos bridge and two Sonos speakers that older ITunes songs would not play in Sonos due to DRM locking.  So, will now work through the library of locked tracks converting and re-downloading.
    Thanks again for the pointers on this question.

  • When i go to buy an app on my ipod touch, i click the buy button then the install button and it just keeps repeating itself then dissappears, why is this?

    when i go to buy an app on my ipod touch, i click the buy button then the install button and it just keeps repeating itself then dissappears, why is this?     help me please, i cant download no apps.

    If  you have iOS 3.1.3 then it is an Apple problem.

  • TS1292 I bought a 4 pack of $25 Itunes gift cards and only 2 will activate.  For the second two it just keeps asking for my login. No error message just keeps repeating the login

    I bought a 4 pack of $25 Itunes gift cards and only 2 will activate.  For the second two it just keeps asking for my login. No error message just keeps repeating the login.  Is there any way to fix this or did I just lose $50

    Report this here:
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • ITunes keep repeating a song in my playlist.  The repeat icon is no longer on the upper right hand side

    iTunes keep repeating a song in my playlist on my iphone (4 I thnk).  The repeat icon is no longer on the upper right hand sideiTunes keep repeating a song in my playlist.  The repeat icon is no longer on the upper right hand side

    I looked under file but I couldn't find the "Genius & Playlist" option. I also looked under the other options on the top left side but I couldn't find it there either. And all "Genius suggestions" does for me is show similar songs already purchased in my library. It doesn't show me anything new that I haven't purchased.

  • Why does playlist on iPod keep repeating and repeating even though play count rule is 1

    Hello, everyone!
    I have a smart playlist of about 100 songs.  The play count rule is set to play songs with a play count of less than 1.  A few days ago, I reset all of the songs play count to 0.  If you ask me, the way I have it set up, when the iPod is playing with my headphones on, the iPod should automatically update each songs play count to 1 after each song plays.  After I have listened to all 100 songs, the playlist on the iPod should be empty.  The reason is is because since each song was updated from their play count of 0 to 1 after each one played the play count rule in the playlist should show no songs in the playlist.  Like I said before, the rule says to play any songs with a play count of less than 1.  Since all of the play count of the 100 songs are now 1 and not less than 1, the playlist should be empty.
    The problem is, when I'm listening to my iPod and the 100 songs have played, the playlist is not empty.  It just keeps repeating songs and it will never stop.  When I go to iTunes, the songs are randomly with play counts of 3 or 2 or 1 or however many times they have been repeated.
    Does anyone know why this is?

    The reason the songs don't delete themselves after playing from the playlist on the iPod is because your iPod is not smart enough to do that. It's only when you re-sync your iPod to your iTunes library does the smart playlist in your iTunes library delete the played songs. Then the playlist on your iPod will adjust to the number left unplayed in that playlist.
    So as long as you don't sync back to your library the number of songs in that playlist will never reduce to zero.
    CDJunkie

  • I had a box on the top of the browser that has written, you got mail. The problem is it keeps repeating you got mail. I don't want to hear it.

    I had a box on the top of the browser that has written, you got mail. The problem is it keeps repeating you got mail. I don't want to hear it.
    This is an unsolicited ad for "winning" an I phone. I am very tired of winning all this junk. I certainly do not want ads talking to me now.

    This appears above the page, in the toolbar area? That's probably caused by an add-on. Try disabling ALL nonessential or unrecognized extensions on the Add-ons page. Either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, if in doubt, disable (or remove).
    Often a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Does that get rid of the ad?
    Two other things:
    (1) You may want to check the Windows Control Panel, Add/Remove Programs, for any undisclosed bundle items. Click the "Installed on" column heading to group by date so they are easier to spot. Remove whatever looks suspicious or unnecessary.
    (2) You may want to supplement your regular security software with some of the scanning/cleaning programs listed in our support article: [[Troubleshoot Firefox issues caused by malware]].

  • WHY DOES MY EMAILS KEEP REPEATING IN VIP FOLDER IN MAIL APPLICATION?

    WHY DOES MY EMAILS KEEP REPEATING IN VIP FOLDER IN MAIL APPLICATION? I AM USING MOUNTAIN LION 10.8.5. I HAVE LINKED MAIL WITH MY GMAIL ACCOUNT. 

    Hi rignald,
    If you are having issues with the VIP mailbox in Mail, you may find the following article helpful:
    Mail (Mountain Lion): Make a sender a VIP
    http://support.apple.com/kb/PH11728
    Regards,
    - Brenden

  • My ipod 4gen keeps rebooting for 9 seconds then stops for 4 seconds, and it keeps repeating this, how do i get it to stop?

    my ipod 4gen keeps rebooting for 9 seconds then stops for 4 seconds, and it keeps repeating this, how do i get it to stop?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • How do i get my music off repeat. the same song keeps repeating.

    I am having difficulty getting my ipod touch off repeat. It just keep repeating the same song. I tried shuffle and it just goes to the next song and keeps repeating that song.
    does anyone have a solution for this dilemma?  James Jr.

    Turn off the repeat control. If you touch the screen in album view this control will be to the left side of the scrubber bar.

  • When I type letters keep repeating and I did change the keyboard

    When I type letters they keep repeating. I have already changed the keyboard.

    Hi there Thernon,
    You may want to double check the key repeat settings. Take a look at the article below for more information.
    OS X Mavericks: Set how quickly a key repeats
    http://support.apple.com/kb/PH13736
    -Griff W.

  • Installed Mavericks on my Mac 2 days ago, and now every time I start up the Mac a box appears iTunesDroper, asking me to enter my password. I enter the password it is accepted and then keeps repeating the same until I click on cancel

    Installed Mavericks on my Mac 2 days ago, and now every time I start up the Mac a box appears iTunesDroper, asking me to enter my password. I enter the password it is accepted and then keeps repeating the same until I click on cancel

    Kernel panics are usually hardware.
    Hold down 'd' key and it should boot into Apple Hardware Test, or insert your OEM install DVD to do so.
    No, we are mere users and mortals and usually you need to do some troubleshooting by trial and error and testing. Schedule an appointment.
    http://docs.info.apple.com/article.html?artnum=106227
    http://www.macmaps.com/kernelpanic.html
    http://www.thexlab.com/faqs/kernelpanics.html

  • Itouch keeps repeating same song - will not advance to next song

    Hi,
    My itouch, after working fine for over one year, now will not advance to the next song automatically. It keeps repeating the next song.

    you haven't got the repeat button 'on' by accident have you
    http://i19.photobucket.com/albums/b159/LUFCRACE/photo.jpg
    the arrows on the left under the scroll bar. if they are blue then they are 'on'
    (sounds obvious, but i solved this exact problem for someone this way only yesterday)
    Message was edited by: Anna Sandham
    Message was edited by: Anna Sandham

Maybe you are looking for