Varray Solution help

Please help, i am trying to understand VARRAY, but cant around working through this question. Not to sure of the syntax
Trying to create datatype: a Varray of 7 Numbers to hold Exam marks .
Create a table with Customer ID, Name and marks. Any data type can be used for the id. For marksi have to use the datatype created.
After it, how do i insert 7 numbers in a row.
Creating a function to get the average marks for 7. Return the answer.
This will lead to create a sql select to display the ID, Name and Marks (average).
Also how to test if varray is with only 6 marks?

Funny but not very helpful, Padders.
The online documentation is here. The best place to start with VARRAY is the PL/SQL users Guide
Cheers, APC

Similar Messages

  • Encountered an error when attempting to open Lightroom for the first time. Went to Lightroom Help and searched for the error "An error occurred when attempting to change modules". Non of the solutions helped. what now?

    Encountered an error when attempting to open Lightroom for the first time. Went to Lightroom Help and searched for the error "An error occurred when attempting to change modules". Non of the solutions helped. What now?

    I am getting this error message as well. I have just downloaded Lightroom recently. I try to click on Lightroom / preferences....and nothing happens. I tried to uninstall and it is greyed out so I can't do that either. Suggestions? Please help?

  • HT201398 unable to install app,none of these solutions helped me could someone give me new solutions please

    unable to install app,none of these solutions helped me could someone give me new solutions please

    What app?
    What 'solutions'?

  • I'm running Snow Leopard 10.6.8 and trying to install a purchased copy of Lion 10.7, to no avail. Apple Support doesn't seem to have a solution - help?

    I purchased Lion 10.7 on Christmas Day, I received my redemption code a week later. I've tried to download Lion to no avail. I've been in contact with Apple Support and they haven't been much help so far. My computer is currently running Snow Leopart 10.6.8 - however, I received Photoshop Elements for Christmas and I need at least 10.7 in order to run the program. Nothing is working. Before commenting - I CANNOT install Mavericks because it'll mess up the versions of Filemaker Pro and Quicken that I use regularly. I tried installing Mountain Lion, at the suggestion of Apple Support but I need to be running at least 10.8 in order to install that. What do I do? I don't want to have to be pushed into buying another computer when this one works just fine - but I'd like to be able to run Photoshop Elements. Apple has charged my credit card for the purchase of Lion and yet it won't install and I don't know what to do now.

    elly903 wrote:
    Before commenting - I CANNOT install Mavericks because it'll mess up the versions of Filemaker Pro and Quicken that I use regularly...
    Quicken 2007 for Intel (Snow Leopard, Lion, Mt. Lion and Mavericks) for $15:
    http://quicken.intuit.com/personal-finance-software/quicken-2007-osx-lion.jsp
    It will input your Quicken PPC data file directly if it was Quicken 2005 through 2007.  If older you need Quicken 2006 or 2007 PPC first to convert your data file; and this update must be done BEFORE you upgrade to Mavericks:
    http://quicken.intuit.com/support/help/patching/quicken-2006-manual-updates--mac -/GEN82200.html
    Filemaker Pro PPC (in this case 7) running in Snow Leopard Server installed into Parallels for use in Lion, Mt. Lion and Mavericks:
                                  [click on image to enlarge]
    Snow Leopard Server: 1.800.MYAPPLE (1.800.692.7753) - Apple Part Number: MC588Z/A (telephone orders only)
    This solution allows you to run your Photoshop Elements in Mavericks concurrently with Filemaker Pro PPC.  Mavericks is a free download.

  • When i sync my phone it goes through all the photo's then a window pops up which says that itunes has stopped working and the closes itunes down, i have tried syncing a few times and it just keeps doing the same but says windows MAY send a solution, help

    i am getting really frustrated with syncing and updating my iphone, everytime i sync when the photo's have sunk a window pops up and says itunes has stopped working and closes the programme, it also says that windows may send me a solution but they never do !!!! please can someone help me

    Hello Suzanne,
    Thank you for providing the details of iTunes unexpectedly quitting.  You have taken some really good troubleshooting steps already.  I found an article with additional steps you can take to further isolate and troubleshoot an issue like the one you described:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Problem-Solution: Help! I'm seeing my iCloud account two or more times in Notes and Contacts!

    Problem: Help! I’m seeing my iCloud account two or more times in Notes and Contacts!
    Solution:
    Open [System Preferences] >
    Open [iCloud] >
    Uncheck [Contacts] for each duplicate iCloud you see in Contacts. ex. My iCloud Account is listed three times = uncheck Contacts twice. The checkbox next to Contacts will fill back in again automatically.
    Uncheck [Notes] for each duplicate iCloud account you see in Notes. (same instructions for Contacts; repeat the steps for each duplicate account)
    Why is this happening?
    It has to do with iCloud Keychain. If you set up iCloud keychain on more than one Mac, it appears to duplicate the iCloud account in each respective application once per Mac. (ex. 2 Macs = 1 Duplicate). The good news is that the above fix appears to be permanent and does not reoccur.

    Minor addition:
    I’m setting up a new Mac—how can I avoid this?
    Turn on iCloud in System Preferences (SP)
    When asked if you wish to set up Mail, Contacts, Calendar, Find my Mac, et al., uncheck all boxes, and click Next.
    Check the “Keychain” box first, then check all other boxes except Contacts and Notes.
    Within a few minutes, these boxes will check themselves.

  • JAX-WS contract first solution help needed

    Hi,
    I am trying to create a bunch of web services using jax-ws which I will deploy on Jboss. I would like to create xml schemas and wsdl files before I create my solution because I want a clearer contract betweent client and server that is not defined by the server code.
    I have managed to create an xml schema and generated the message files. I also created a wsdl file and implemented a service endpoint which refers to the wsdl file.
    My problem now is that I cannot seem to get the mapping (marshalling) to the Java objects to work correctly. When I create a simple client that calls the service defined in the wsdl file I have managed to get the request to map to the webmethod in my endpoint. But I cannot seem to figure out how to get my message validated against the schema, which means that I can call the method with any type of request without getting an error message. This is also true for the return object. The solution doesn't seem to care whether I return a string or the object defined in the wsdl file.
    I created my solution as a "regular" jar which I deploy on Jboss.
    @Stateless
    @WebService(name = "Test", portName = "TestPort", targetNamespace = "http://www.company.com/test-service/", wsdlLocation = "META-INF/wsdl/test-service.wsdl")
    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public class TestBean {
         @WebMethod(operationName = "PerformOperation")
         public Response newOperation(Request request) {
              return response;
    }Could you give me some tips and advice to help me finish my solution. It would also good if anyone could tell me how to turn message validation on.
    Regards,
    Leo

    Hi Nico,
    In multithreading, all the threads are independent. Here the threads miao and bau are independent.
    There is no guarantee which thread executes first. In your program for miao you explisitly called sleep and hence bau thread executed.
    Explanation:
    ========
    When you start both the threads miao and bau both are in runnable start. Only one thread can go to running. Lets consider miao goes to running state. Because you called sleep miao goes to sleeping and bau goes to running state and once the sleep completed for miao it goes to runnable state and as bau is in running and once bau completes miao again goes to running state and then it also completes.
    Thanks & Regards,
    Murali.
    ===========

  • Site solution help needed

    Hi, I have a potential client who needs a site that his
    clients can securely
    log on to and access information that he has uploaded for
    them. He doesn't
    need a merchant account but does require a secure interface
    and site. Does
    anyone know of a ready made solution that would fit this
    need?
    Many thanks for any help.

    > Hi, I have a potential client who needs a site that his
    clients can
    > securely log on to and access information that he has
    uploaded for them.
    > He doesn't need a merchant account but does require a
    secure interface and
    > site. Does anyone know of a ready made solution that
    would fit this need?
    >
    > Many thanks for any help.
    'collaboration portal' sounds like the type of application
    he'd be looking
    for.
    -Darrel

  • Storge solution Help

    I need help in my storage solution.
    running Win764bit, ASUS P9X79 WS.
    Areca 1882ix-24/28port 3.Gen is running and supports  3 raid cofigurations. (2xRaid for fast work, 1x for quick intermediate backup).
    I use 2 final-external  backups
    1x QNAP-NAS connected via LAN (slow)
    1x Adoonics 5-Tower RT55SNHX (5x 4TB Seagate constellation ES.3, Raid 10=mirrored with 1xhot spare)
    My problem is the connection of Adoonics 5-Tower RT55SNHX to my NLE ASUS P9X79 WS: http://www.addonics.com/products/rt55snhx.php
    a. Adoonics 5-Tower RT55SNHX has internal a port multiplier
    b. Adoonics 5-Tower RT55SNHX has 1 output eSATA
    When i connect Adoonics 5-Tower RT55SNHX output eSATA and use Addonics eSata to USB 3 converter-stick everything works fine. (http://www.addonics.com/products/adu3esa.php)
    Now i want for increasing backup-speed connect  Adoonics 5-Tower RT55SNHX output eSATA    to a NLE ASUS P9X79 WS input eSATA (http://www.addonics.com/technologies/tutorial_pm.php)
    In my understanding Addonics says in this case  a eSATA controller-card (or somethng like that)  which supports multiport function has to be used on  ASUS P9X79 WS.
    Who has a proper solution, how i can handle this problem?
    thanks for help, Klaus
    UPDATE, after posting i found this 4 Port eSATA II RAID5/JBOD PCI-E 8x Controller
    http://www.addonics.com/products/adsa3gpx8-4e.php
    will this  solve the problem.  Whill there be maybe a conflict with ARECA 1882ix 
    Thanks
    Message was edited by: klfi

    Harm,
    this i understood.
    Areca controlls
    a.) 1x Raid 0 5TB projects , media, stuff
    b.) 1x Raid 0 5TB render, Cache, After Effects cache + exports which will be saved regularely
    c.) 1x  Raid 0 3 TB quick intermediate savings
    d.) + now 1x 5-Tower (raid 5 4x4TB)
    Will 1x 4TB areca hot spare (as y suggested) protect all 4 raids or only 5-Tower raid?
    Somy points Nr C.) and D.) are not necessary ?
    UPDATE:
    Sorry Harm, i found  -- (CN1) SAS 25-28 Ports (External) SFF-8088 -- at areca connection
    Very big a back side.....
    My brain is working, my eyes are closed .... to much cable-things
    Klaus
    UPDATE Nr 2
    Sorry Harm,
    i thik i have it.
    Y explained abouve "use hot spare for the 4-tower drive.
    Also my point Nr B.) is wrong becouse not needed
    Thanks klaus
    Message was edited by: klfi
    Message was edited by: klfi

  • External backup solution - help

    Hi all,
    I currently have 2 x 160Gb drives in my G5. One is my boot drive, which holds everything and the other drive i clone using CCC when i feel the need to.
    I have just started editing DV movies using iMovie and storage is becoming a problem. i want to purchase some new drives to sort out my system and still a backup when i want to, or use the schedule fuction in CCC.
    I believe i am correct in thinking i should have one drive for my system and programs the other for my data (documents, movies folder,iTunes lib etc)?
    I am thinking of buying another 2 external firewire drives or an enclosure to hold 2+ drives in. I would use one of these external drives for my raw DV and a scrach disk for PS CS.
    Am i on the right lines here? What would be the best way of backing up all these drives so i can still boot if my system drive goes down and i have backups of all my data?
    It seems the best solution would be to replace the 2 x internal drives with bigger ones (250Gb) then use the 2 original 160Gb drives in the external FW enclosure.
    I am also thinking of upgrading to Tiger before i do this.
    Any advise would be great,
    Thanks.
    Rob

    I currently have 2 x 160Gb drives in my G5. One is my boot drive, which holds everything and the other drive i clone using CCC when i feel the need to.
    Good your cloning your boot drive. The problem is your cloning to another internal drive, so your tying up a very fast interface with a clone that you hardly access. It would be best to have the clone of your boot drive on a external drive and keep it disconnected. This way if you get hacked or your machine gets fried at least a copy of your boot drive is safe.
    I don't agree with partitioning a drive with apps, boot, files seperate, this was for the OS 9 days with no auto-defragmentation. Now it's a performance problem.
    I keep nothing in my spare space on my boot, rather having it for expansion of the OS/apps or a temporary holding area. Running up against the limit of a partition is about the worst thing possible.
    I have just started editing DV movies using iMovie and storage is becoming a problem. i want to purchase some new drives to sort out my system and still a backup when i want to, or use the schedule function in CCC.
    You should check out (search Apple) for DejaVu, it's a System Preference Pane that will auto-clone and auto-backup even when your logged out. Very simple, select the folder/drive, set the time and select the destination.
    I believe i am correct in thinking i should have one drive for my system and programs the other for my data (documents, movies folder,iTunes lib etc)?
    Yes this is a substantial performance option, you keep a OS/boot/"bare bones" home drive (w/iTunes music) kept below 50% filled and then keep your space hogging files like documents, pictures and (especially) movies in NEW folders on the second internal drive.
    This way the boot drive stays optimized, it stays below 50% filled as anything more starts to affect performance. Since iTunes constantly accesses the drive with small files in a random fashion (music shuffle), it's best to keep these files on the boot drive which the OS also accesses the drive the same way. The object is to keep the hard drives arm traveling in a small tight area. Since drives write data from the outside edges of the platters working inwards, for performance a boot drive should be comprised of a lot of little files randomly accessed.
    With files drives they tend to read large data, the arm moves and the file is read in one big swoop. So one can fill these up, but still performance will start to suffer after 50%. Hard drive caches only help with writes under 16MB. Anything more than that or reads, depends upon the mechanical performance of the arm moving the heads across the platters. Which is the performance bottleneck.
    Now faster spinning platters and faster moving arms do help considerably with performance. If you install a 150GB 10,000 Western Digital Raptor as a boot drive you'll see the performance difference right away.
    Large 7,200 RPM drives more than 50% filled as boot drives are a performance nightmare. So many people complain their "Quad" is slow and the biggest cause is people buy these huge drives for boot, taking large storage space over performance. Apple should provide a Raptor as a boot drive as a BTO option, but of course a slower machine will make you want to upgrade sooner.
    When you have your files on the file drive it can be read at the same time as the OS drive. Which adds another performance benefit.
    I am thinking of buying another 2 external firewire drives or an enclosure to hold 2+ drives in. I would use one of these external drives for my raw DV and a scratch disk for PS CS.
    Ok if you upgrade to CS2 the 2GB memory limit for Photoshop is overridden, so you most likely won't need a "scratch disk", work in RAM is 40% faster than a drive.
    Am i on the right lines here? What would be the best way of backing up all these drives so i can still boot if my system drive goes down and i have backups of all my data?
    It seems the best solution would be to replace the 2 x internal drives with bigger ones (250Gb) then use the 2 original 160Gb drives in the external FW enclosure.
    Your on the right track, but a larger boot drive will slow your computers performance.
    My suggestion is to do this:
    1: Buy Tiger and iLife '06 (it's not included)
    2: Buy a Firmteck 4 ports in/4 ports out SATA PCI card.
    3: Buy a 150 GB 10,000 RPM Raptor
    4: Buy a Lacie 250 GB Firewire 800/400 external drive.
    5: Buy a four drive external SATA enclosure.
    6: Buy 2-4 internal SATA drives for the enclosure.
    C boot from the Tiger install disk and select Disk Utility>Erase w/Zero the Lacie and format HFS+ (journaled) and install Tiger on that, setup using the same name as your Panther drive. Do not use Migration Assistant!
    Option boot from your Lacie/Tiger and visit all your drive makers sites and download any driver updates so Tiger will work with your other drives. Run them when you connect a drive.
    Install the FirmTech card in your PCI slot. Supposedly slot 2 and 3 are shared, so perhaps you should use slot 4. This card is going to get a lot of work.
    Remove your internal hard drives and install the Raptor connecting the SATA to the Firmteck internal port. This is important because WD drives have improved SATA specs and the G5's don't. Reboot from the LaCie and run Disk Utility Erase w/Zero on the Raptor. Run any Firmtec software if you need too.
    Use Carbon Copy Cloner (Tiger version!) to clone your LaCie to the Raptor. Disconnect the LaCie and reboot from the Raptor and repair permissions.
    Ok now your up on the Raptor, install your apps from original disks/sources, cherry pick certain apps from the Panther drive. Take this time to clean house. If you screw up, simply reverse clone from the LaCie and start over.
    Replace your iTunes folder in the same exact spot (pathname) on the Tiger/Raptor drive as it was on the Panther drive. Rename the Panther drive and set the name of the Tiger/Raptor drive to the original name of the Panther drive. This way your iTunes playlists should be preserved as the playlists contain the pathnames to the songs. If not you'll have to edit your iTunes XML file with "find/replace".
    Grab your Library/Mail your Library/Safari bookmarks from the Panther drive.
    Once you cleaned out the Panther drive, clone the Tiger/Raptor to the LaCie for safekeeping and Erase w/Zero the Panther drive. It will now become your file drive, keep your drive hogging stuff here that you use over time.
    Now onto your external enclosure, you can place the extra SATA internal drive in here, or keep it as a third clone f your boot drive.
    Place what SATA drives you want into the 4 bay enclosure, connecting one drive to one port on the outside of the FirmTec card. Erase w/Zero as usual each drive.
    Now you can set two identical drives in the enclosure as a RAID O set in Apple's Disk Utility, this would make a excellent "scratch disk" or "working disk" as your speed is greatly improved, especially if you use 10,000 RPM drives.
    You can place a huge 7,200 RPM SATA drive in one of the enclosures drive bay for auto-backup of files from the RAID O using the DejaVu software.
    RAID O (stripe) can be risky as the data path is split between each drive in the set, lose one drive and all your data on the RAID O is gone.
    Don't use "mirror" (RAID 1) for backup because any corruption or accidents get immediatly written to the second drive in the mirror. Use Auto-cloning (for boot drives) or Auto-backup software instead.
    So you have a lot of options, with all the drives being used and the LaCie for a clone of your boot drive for emergencies. You'll have a performance working disk if you need it, as well as all around performance of your machine for many years to come.
    http://www.amug.org/amug-web/html/amug/reviews/articles/firmtek/1eve4/
    You can also test your drives performance (roughly) using X-Bench

  • Problem-Solution: Help! Whenever I Archive a read e-mail from my Inbox, it shows up in Archive as Unread.

    Problem: Help! Whenever I Archive an already read e-mail from my Inbox, it shows up in Archive as Unread.
    Solution:
    Open Mail.app >
    If your vertial mailbox list on the right is already showing, then skip the next step.
    Click [View] then [Show Mailbox List] >
    Delete the Smart Mailbox "Today" from the list. >
    Quit Mail, then re-open it.
    Why is this happening?
    I've seen this since Mavericks 10.9 launched but it's likely to have existed earlier than this. My conjectural opinion is that using a Smart Mailbox like "Today" (turned on by default) seem to exacerbate this behavior. I've noticed it happens a lot more often than not with a Gmail account as well, even running 10.9.1.

    Update to above question:
    Hello All,
    To anyone with the same problem described above, on THEIR iPad (if it is running iOS 7.0.2):
    Go to Settings; Mail, Contacts, Calendars; DELETE your *******@btinternet.com e-mail account, that you originally set up either using 'Other', or the 'BT' option which I am sure was in the list previous to the iOS 7 update.
    Then ADD a NEW account choosing YAHOO from the list of options. DO NOT USE 'OTHER'.
    Enter the correct details just as you (almost certainly) had already done in your previous attempts using 'other'.
    When you see the 'verifying......' and 'the blue ticks' you should be able to exit settings and open your mail app and then receive all your 'old' e-mails again, AND be able to SEND as well.
    All my 'old' e-mails, were NOT found in the 'old e-mail' folder though. THEY are still in my inbox.
    So this fix worked for me.
    After I deleted my account from 'OTHER' and put it in Yahoo, I like other people also ended up with more folders.
    I hope this works for you on YOUR Apple devices.
    Bob

  • FCP to NTSC monitor solution help required

    Greetings,
    Please forgive me, this is my first foray into owning a Mac.
    I am getting started with Final Cut Pro, and am looking for a good way to capture analog sources, and output my FCP timeline to an NTSC monitor. My monitor takes RGB and component, and I would like to use one of those if possible.
    I have looked into the AJA Kona cards, and they seem a little too robust for my needs. I won't be capturing HD SDI any time soon. The blackmagic solutions seemed interesting, the Decklink SP looked good, and the Intensity looked OK too, but I haven't seen too much talk on them. Are their any other solutions people are using to monitor their timelines? Currently I am just working with plain old DV.
    Thanks so much for your advice,
    David

    The Intensity Pro may be just right for you with your Mac Pro. Very reasonably priced. I have the HDMI only Intensity card and it is nice. Not sure of all connections packaged with the Pro model, but good stuff. Intel units only for this product.
    AJA is an awesome company and great products. I have the LHe and the tech support is the best. Like anything you do get what you pay for.
    Good Luck
    Z1&V1user

  • Agent monitoring solution help!

    Hi all
    Just going to run this by you all if I may.
    Is it possible to remote monitor an agent (ipcc Express Prem) whose pc is not on our network and not attached to the phone.
    The phones and agent desktop sit on our network but the pc's sit on 3rd party network, this is not going to change.
    All the documents I have read suggest the pc needs to be attached to the phone or use rspan vlans which is also not an option.
    Think I already know the answer but are looking for inspiration.
    Thanks
    Rich

    Only if you can SPAN the voice VLAN of that phone (no layer three hops) directly into CCX server. On the Windows versions you use the second NIC for this. With Linux, the first NIC and it must be attached to a switch that supports two-way traffic on a SPAN destination.
    If SPAN isn't viable then you would need to use Cisco Quality Management or another recording product (there is a boatload of them) that supports Built In Bridge-based recording. Sometimes this is also referred to as Network Recording.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Need solution help!

    I am using InDesign CS3 version 5.0. Here's what I need to do:
    I will be receiving a PDF file from a client containing 14 or so pages. These pages need to be placed in an InDesign document containing 28 in a very specific way: for instance, the first page of the received PDF needs to go to the 27th page of the InDesign document, the second PDF page to the 23rd InDesign page, etc. (We need other images to be placed between those we receive from the client.) This pattern will remain the same for each document we receive.
    As you can see, manually placing these pages would be extremely tedious and time-consuming. I want to automate this process. Is there a way I can configure Adobe Acrobat Professional (I'm using 8.0.0) and InDesign to accomplish this? Any plug-ins out there that would help me?
    Thanks in advance for any suggestions.

    When a new version of the Calendar is required, collect the template to a working folder (such as
    James Smith Calendar 2009). This will collect a copy of the "Placeholder.PDF" file in the Links subfolder. Just be sure to set the Package option to "update links in package". The PDF placeholder can be any name that makes sense to you.
    Save the new content PDF received from the client to the links folder, overwriting the placeholder version by using the placeholder name.
    Open the InDesign file.
    Update the modified links (should do all at once).
    Proceed with whatever other edits you normally make.
    You can save a copy of the source PDF with the original name to the links folder, too, just in case you need to verify that you've added the correct art at some point later. The client will not likely see the nuts and bolts of the design behind the scenes, so it shouldn't matter what the links are named so long as the project files are separated into individual folders.
    -mt

  • Please if anyone know the solution help me

         i'm new iphone holder then i heard about the new software that ver 5.0.1 and when i connected my iphone with itunes i get new update available and i download it then it automatic updated my i phone the problem is when i Finished upgrading it locked the phone i tried alot to solve it but thier is noting work
    and i tried to look for some one who know how to unlock my iphone they told me that u have to wait one month for geting the solution *** is this
    factory lock :@ why ?????
    please anyone had faced the same problem advise me what to do ?

    u mean i should connect my phone with app thats for jillbroken to solve the problem and it will be useful and it will work without problem hhhhh i dont know how to use jialbroken
    i wish i do
    can u send me steps to go with it
    <Email Edited by Host>

Maybe you are looking for

  • Rename doesn't update in library loop view

    After renaming, I have to deselect and reselect images to have the filename update.

  • IPhoto '08 compresses my photos

    I noticed this weekend that iPhoto 08 will automatically compress any photo that I make alterations to with the iPhoto 08 application by 50-70%. For example, I imported a 7 mb .jpeg file into iPhoto 08, adjusted the pic's temperature and then noticed

  • Looking at videos in iPhoto

    I would like to look only at videos in iPhoto.  I searched this question and found an answer that I should make a smart album and use the keyword "movie" which I guess videos get automatically tagged with.  This got me my videos through July 2012 but

  • TSM Process help , please

    Hello Experts, Please, let me know the following: q1) how to link between sap and  third party tool like TSM, or any other tool (detailed process ) q2) how do we write from SAP to TSM  (looking for detailed process) q3) How do we restore from TSM whe

  • How many iphones on one itune account?

    Hello, I would like to know how many iphones, ipads, ipods or the mix of all three can I put on one itune account? Thanks