SetCustomDatum performance SQLJ team please respond

I am facing performance overhead when using Jpub generated
classes for the object types.
I am using 817 jdbc and jpub but my database is 816. I have seen
that following statements each take around 2-3 seconds to
execute. Is there any communication between driver and database
to resolve the object type ?
I have found some posting regarding this but no solution. has
anyone here faced this problem ?
Please help.
cCallableStatement =
(OracleCallableStatement)m_cConnection.prepareCall("{call
list_unsync_appts_array(?,?,?,?,?,?,?,?)}");
((OracleCallableStatement)cCallableStatement).setCustomDatum
(1,ct_number_arr);
cCallableStatement.registerOutParameter
(2,OracleTypes.ARRAY,"T_EVENT_SUMMARY_ARR");
cCallableStatement.registerOutParameter
(3,OracleTypes.ARRAY,"T_EVENT_DETAIL_ARR");
cCallableStatement.registerOutParameter
(4,OracleTypes.ARRAY,"T_EVENT_SUMMARY_ARR");
cCallableStatement.registerOutParameter
(5,OracleTypes.ARRAY,"T_EVENT_DETAIL_ARR");
cCallableStatement.registerOutParameter
(6,OracleTypes.ARRAY,"T_EVENT_SUMMARY_ARR");
cCallableStatement.registerOutParameter
(7,OracleTypes.ARRAY,"T_ATTENDEE_EMAIL_ARR");
cCallableStatement.registerOutParameter
(8,OracleTypes.ARRAY,"T_ATTENDEE_EMAIL_ARR");
cCallableStatement.execute();

I retried this using the command line, as well as JDeveloper 3.1.1.2. It does not work.
Here are the specs:
Windows 2000
JDK 1.2.2
Oracle 8.1.6
JDBC & SQLJ 8.1.6 (comes with Oracle 8.1.6)
The package looks like this:
CREATE OR REPLACE PACKAGE qry IS
TYPE qry_results IS REF CURSOR;
FUNCTION get_all_appliances RETURN qry_results;
END qry;
Body looks like this:
CREATE OR REPLACE PACKAGE BODY qry IS
FUNCTION get_all_appliances RETURN qry_results IS
results qry_results;
BEGIN
OPEN results FOR
SELECT app_id, usr_app_name
FROM appliances
ORDER BY usr_app_name;
RETURN results;
END get_all_appliances;
END qry;
JPublisher does its thing, but it DOES NOT produce any output. It doesn't give any errors or anything, but it doesn't give any output files either.
I figure it must not be able to construct a SQL/J iterator? I don't know what's going on.
Please let me know if this is supposed to work or not? Is there anything in my code that should be changed to get it to work? Do I need to strongly type the REF CURSOR? The Jpub docs say it doesn't support strongly typed REF CURSORs.
Please advise, thanks in advance! Also please define whether this is unsupported or a bug.
David
null

Similar Messages

  • JDBC/SQLJ Team - Please respond - invalid column type error

    Hi, I have posted several messages regarding problems using SQL/J to call out a stored packaged function that returns a ref cursor, but haven't gotten one response. I have yet a new problem with it. JDBC team, please acknowledge!
    I change the way I obtain a connection to the database from using the Oracle.connect along with a properties file, to now using a DataSource connection pool. As a result, I am constantly getting a SQLException: Invalid column type error. If I change the call to the stored function to a query in the SQLJ code, it's fine. What's going on??
    A previous message I wrote stated I was constantly getting a "closed statement" error when I tried to call the next method of the iterator. I corrected this by removing the finally clause in the generated JDBC code that released the execution context.
    Again, the environment is JDK1.2.2, SQLJ 8.1.6 SDK, JDBC 8.1.6 thin, all on NT.
    Thanks
    David

    I am getting the same error message - Invalid Column Type. I am creating a Default Context by calling Oracle.getConnection(connection) passing in an instance of my own connection class that basically delegates to the OracleConnection. We wrapped the Connection so that we could trap and recover from lost database connections.
    My environment is Solaris 2.6, Oracle 7.3.4 with Sqlj 8.0.5.
    Thanks!
    [email protected]
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by David Christopher ([email protected]):
    Hi, I have posted several messages regarding problems using SQL/J to call out a stored packaged function that returns a ref cursor, but haven't gotten one response. I have yet a new problem with it. JDBC team, please acknowledge!
    I change the way I obtain a connection to the database from using the Oracle.connect along with a properties file, to now using a DataSource connection pool. As a result, I am constantly getting a SQLException: Invalid column type error. If I change the call to the stored function to a query in the SQLJ code, it's fine. What's going on??
    A previous message I wrote stated I was constantly getting a "closed statement" error when I tried to call the next method of the iterator. I corrected this by removing the finally clause in the generated JDBC code that released the execution context.
    Again, the environment is JDK1.2.2, SQLJ 8.1.6 SDK, JDBC 8.1.6 thin, all on NT.
    Thanks
    David<HR></BLOCKQUOTE>
    null

  • JPublisher problem - SQLJ Team please respond

    I'm trying to use JPublisher to generate code for a PL/SQL package that contains functions with a REF CURSOR type return value. The REF CURSOR is declared in the package spec as a TYPE, NOT strongly typed.
    (defined as:
    TYPE qry_results IS REF CURSOR;
    For some reason, JPublisher will generated classes for my object types used in the package, but it will not generated the java class for the package itself.
    If I change the type of these functions, they generate.
    The only mention of REF CURSORs I see in the JPub docs is no support for STRONGLY TYPED ones. Mine aren't, yet they don't get generated.
    Is this supposed to work?? Or does JPub have NO support for REF CURSOR return values in a packaged function?
    Thanks
    David
    null

    I retried this using the command line, as well as JDeveloper 3.1.1.2. It does not work.
    Here are the specs:
    Windows 2000
    JDK 1.2.2
    Oracle 8.1.6
    JDBC & SQLJ 8.1.6 (comes with Oracle 8.1.6)
    The package looks like this:
    CREATE OR REPLACE PACKAGE qry IS
    TYPE qry_results IS REF CURSOR;
    FUNCTION get_all_appliances RETURN qry_results;
    END qry;
    Body looks like this:
    CREATE OR REPLACE PACKAGE BODY qry IS
    FUNCTION get_all_appliances RETURN qry_results IS
    results qry_results;
    BEGIN
    OPEN results FOR
    SELECT app_id, usr_app_name
    FROM appliances
    ORDER BY usr_app_name;
    RETURN results;
    END get_all_appliances;
    END qry;
    JPublisher does its thing, but it DOES NOT produce any output. It doesn't give any errors or anything, but it doesn't give any output files either.
    I figure it must not be able to construct a SQL/J iterator? I don't know what's going on.
    Please let me know if this is supposed to work or not? Is there anything in my code that should be changed to get it to work? Do I need to strongly type the REF CURSOR? The Jpub docs say it doesn't support strongly typed REF CURSORs.
    Please advise, thanks in advance! Also please define whether this is unsupported or a bug.
    David
    null

  • OTN TEAM Please respond-matrix reports row limitation(very urgent)

    Hi ,
    using with matrix reports for delimited reports what's the maxmimum row limitation for text and excel?
    thanks in advance.
    please advice asap.
    thx in advance.

    See response in OTN TEAM Please respond-matrix reports row limitation(very urgent)

  • JDev903 custom tag (bug?)-JDev Team please respond

    JDeveloper is continually hanging while working with custom tags. For example, I will select Add Tag and nothing will happen and JDeveloper stops responding. If I go to End Task, I am told that JDeveloper is waiting for a response, but by then JDev is just a gray window. This behavior becomes more frequent after a change, i.e. change a tag name, try to delete a tag or library. In fact, I have had to completely start over in the creation of a tag library when I notice a necessary change within a tag due to the hanging and disappearance of menu items. Please see previous post, Re: 10.1.3.1 xpath-functions.xml
    Please look into this issue. Our team feels that custom tags could be a valuable tool, but we are RAPID and we don't have time to constantly shut-down and restart our IDE.
    Thanks,
    Deb

    David,
    One thing to try would be JPublisher from the command line. If your problem persists with JPublisher from the command line, then the bug needs to be filed against that product. If not, then the problem is with us.
    In either case, please post your code so we can try to reproduce the error.
    The JPublisher command line facility is documented in the JPublisher User's Guide, available from the Oracle8i 8.1.6 documentation pages on OTN.
    Thanks!

  • Simple questions for Oracle XML Team - please respond

    1) Which class/methods should be used to obtain the content
    model (mixed-content or element-content) associated with each
    element declaration in a DTD? In other words, how do I know if a
    particular element can have child elements and/or data in a
    valid XML document, the frequency each child element can appear
    under a particular element, and whether a sequence list or a
    choice list was used to declare the element?
    2) Do you have any bug reported so far for this part of Oracle's
    parser made available in the last released?
    Thanks,
    Renilton
    null

    Renilton Oliveira (guest) wrote:
    : 1) Which class/methods should be used to obtain the content
    : model (mixed-content or element-content) associated with each
    : element declaration in a DTD? In other words, how do I know if
    a
    : particular element can have child elements and/or data in a
    : valid XML document, the frequency each child element can
    appear
    : under a particular element, and whether a sequence list or a
    : choice list was used to declare the element?
    Look at oracle.xml.parser.v2.ElementDecl class and then
    getContentType and getContentElements methods.
    : 2) Do you have any bug reported so far for this part of
    Oracle's
    : parser made available in the last released?
    : Thanks,
    : Renilton
    Each release contains a list of bugs fixed. Is there a
    particular bug you are interested in?
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

  • Otn please respond

    Using oracle8i with webdb how can I get oracle's servlet based survey example (posted on their web site) to work?

    See response in OTN TEAM Please respond-matrix reports row limitation(very urgent)

  • Account problems - PLEASE RESPOND

    F.A.O. OTN Customer Team,
    I posted these issues 12 days ago and have had no reply, please respond:
    1. I have changed jobs and created a new account using [email protected] Could you please remove my old account jdjwright / [email protected] Note I no longer have access to my old email address but can provide further account details if required.
    2. When I created my new account my company address state/province was not listed. My postal city is London and I would have expected to see Greater London in the state/province drop-down list but it is not available. I eventually selected Berkshire instead which is not correct. Can you please remove Berkshire from my address and/or add Greater London to the state/province drop-down list?
    Joss

    Hey there , welcome to the community!
    The only way to do this would be to create a new Spotify account using your e-mail address. If you contact the accounts team through the online contact form they can definitely set you up with a new account and transfer over all your music content. If you receive an automated e-mail directing you back to the community, just reply to it and you will hear from a representative within 24-48 hours.

  • Problem description: My  macbook pro since this afteon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click-  EtreCheck

    My computer
    Problem description:
    My  macbook pro since this afternoon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click…
    EtreCheck version: 2.1.8 (121)
    Report generated 31 de março de 2015 18:29:15 BRT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 250
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 512 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 0:25:47
    Disk Information: ℹ️
        Hitachi HTS545032B9A302 disk0 : (320,07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 318.84 GB (47.94 GB free) - 51 errors
                Core Storage: disk0s2 319.21 GB Online
        MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.trusteer.rapport.rapportd.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.trusteer.rooks.rooksd.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    UNKNOWN Hidden (missing value)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Stickies    Application  (/Applications/Stickies.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
    User internet Plug-ins: ℹ️
        npsf_cef: Version: sf 3.3.1.1 [Click for support]
        Google Earth Web Plug-in: Version: Unknown
    Safari Extensions: ℹ️
        DivX HiQ
        DivX Plus Web Player HTML5 <video>
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
        Trusteer Endpoint Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 318.84 GB Disk used: 270.90 GB
        Destinations:
            Time Machine Backups [Local]
            Total size: 999.86 GB
            Total number of backups: 60
            Oldest backup: 2012-07-15 01:16:54 +0000
            Last backup: 2015-03-29 19:28:06 +0000
            Size of backup disk: Excellent
                Backup size 999.86 GB > (Disk size 318.84 GB X 3)
    Top Processes by CPU: ℹ️
            97%    rapportd
             3%    WindowServer
             1%    mds
             0%    fseventsd
             0%    distnoted
    Top Processes by Memory: ℹ️
        155 MB    Safari
        120 MB    Finder
        86 MB    rapportd
        86 MB    WindowServer
        69 MB    mds_stores
    Virtual Memory Information: ℹ️
        12.56 GB    Free RAM
        2.53 GB    Active RAM
        428 MB    Inactive RAM
        1.66 GB    Wired RAM
        1.04 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 31, 2015, 06:00:15 PM    Self test - passed
        Mar 31, 2015, 01:13:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-131305_[redacted].crash
        Mar 31, 2015, 01:05:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-130542_[redacted].crash
        Mar 31, 2015, 12:24:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-122433_[redacted].crash
        Mar 30, 2015, 05:45:38 PM    /Library/Logs/DiagnosticReports/Skype_2015-03-30-174538_[redacted].cpu_resource .diag [Click for details]
        Mar 30, 2015, 01:52:07 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Last.fm Scrobbler_2015-03-30-135207_[redacted].crash
        Mar 29, 2015, 05:55:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_20 15-03-29-175505_[redacted].crash
        Mar 29, 2015, 01:06:38 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130638_[redacted].hang
        Mar 29, 2015, 01:02:47 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130247_[redacted].hang

    Open Activity Monitor and kill this process - rapportd.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Hi team, please help me how to deploy creative cloud desktop application through SCCM for an enterprise

    Hi team, please help me how to deploy creative cloud desktop application through SCCM for an enterprise

    Moving this discussion to the Enterprise Deployment for Creative Cloud, Creative Suite forum.

  • I am unable to dial India toll free numbers from my iphone, these numbers are like 1800-***-1515. There is nothing as dial assist in Ios7.1.1 which i can disable and dial in india toll free numbers.Please respond if anyone has any solution

    I am unable to dial India toll free numbers from my iphone, these numbers are like 1800-***-1515. There is nothing as dial assist in Ios7.1.1 which i can disable and dial in india toll free numbers.Please respond if anyone has any solution

    Check this post, the dial assist is part of the iOS 7.1, according to page 49 of the iphone_user_guide
    Make calls to your contacts and favorites while traveling abroad. (GSM) Go to Settings > Phone and turn on Dial Assist. Dial Assist automatically adds the prefix or country code for calls to the U.S.
    This user had a similar problem and solved it by switching off the dial assist feature in Settings/Phone/Dial Assist
    Re: How to save toll free no starts with 1800?

  • My I-cloud says I have no devices set up even when i'm logged in to my apple , how do I fix this problem? Please respond quickly, I lost my ipod and even when I try to place it in lost mode it still won't recognize that I have a device. What do I do?

    My I-cloud says I have no devices set up even when i'm logged in to my apple ID account, how do I fix this problem? Please respond quickly, I lost my I-pod and even when I try to place it in lost mode it still won't recognize that I have a device. What do I do?

    If you did not set up find my iPhone on the iPod, you can't find it.

  • Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!!  SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.

    The issue:  Outlook to iPhone sync failure – Sync suddenly stopped working for calendar events but continued for contacts and notes.   Finally Fixed!!! 
    SUPPORT TEAM – PLEASE SEE THIS – Complete explanation of cause and correction steps.
    The cause:  It is now clear what caused this problem.  For years I had several “all-day” events in my Outlook calendar (birthdays, anniversaries, etc.).  In May 2012 I decided to make some of them one hour  events so I could add alerts to remind me of the event.  I did this by dragging them in Outlook to the time I wanted and expanding them to the time slot desired and then adding the alarm.
    The symptom:  Syncing stopped working for the calendar but continued working for contacts and notes.  I didn’t realize sync was failing until months later when I missed two very important phone calls, so when I noticed it the cause was not obvious. 
    The failed attempts:  I’m head of a software firm and my calendar sync is a crucial to my business life so I took this on with a vengeance.  From a quick look at events in Outlook and the iPhone I could see that the problem started in May 2012.  Events before May were in both Outlook and the iPhone but events after May were only one or the other.  Unfortunately I had changed several other things at the same time relating to other events so again the cause was not obvious.  MANY calls with AppleCare proved them incompetent so my internal IT guys assisted trying many things.  We tried a huge number of calendar changes and several versions of iTunes, iPhone OS and Office as well as both iPhone 4 and 5, all without success.
    The fix:  After 18 months of frustration, MANY  hundreds of $ expense and MANY hours of wasted time I saw a blog that had a calendar sync  problem and it indicated all day events were related.  I changed the display of the Outlook calendar to the list view, added columns so I could see “all day” event check marks as well as times of events,  sorted on the “all day” event column to move them to the top, and for all events that were “all day” events AND had a start and end time, I removed recurrence and then added the annual recurrence back…
    After I fixed all events that had BOTH “all day” set and had a start/end time, I tried another sync.  It synced for the first time in 18 months! 
    Problem occurred May 2012 – fixed Nov 2013

    Hi, to remove dummy '_ModGrp' entries, rather than crashing the 'Suppr' key on your keyboard, you can use this basic VBA macro (launched for instance from Excel).
    It will recursively remove all '_ModGrp...' folders
    Sub RemoveFolders_Click()
        Dim oOutlook As Outlook.Application
        Set oOutlook = New Outlook.Application
        Set objNameSpace = oOutlook.GetNamespace("MAPI")
        Call CleanFolders(objNameSpace.Folders)
    End Sub
    Sub CleanFolders(objFolders As Outlook.Folders)
        For i = objFolders.Count To 1 Step -1
            If Left(objFolders(i).Name, 7) = "_ModGrp" Then
                objFolders.Remove( i )
            Else
                If Not objFolders(i).Folders Is Nothing Then
                    Call CleanFolders(objFolders(i).Folders)
                End If
            End If
        Next i
    End Sub

  • HT1977 I did this and a bar showed up at the bottom and now I cant click on the apps and cant transfer them. Please help because I have accidently deleted the App store from my i pad 1. I am not very technoligically advanced so please respond in a noncomp

    I synced my ipad to my itunes store on my computer and a bar showed up on the bottom of the screen showing how many gigabytes i was using. Now i cant click on the screen to move the app from itunes to my ipad for some reason, or my movies/ music for that matter either. The real reason i am doing this is because i accidently erased the app store and dont want to erase all the apps i already have on their. So if someone can help me get the app store or fix the syncing problem that would be great because i use it for school which requires certain app be installed. Please respond quickly!

    Jimmyt97 wrote:
    Now i cant click on the screen to move the app from itunes to my ipad for some reason, or my movies/ music for that matter either.
    What are you talking about?

  • I bought a brand new ipod touch 5th gen, updated the software and now iTunes says "to allow access, please respond on your ipod touch" however the ipod has a black screen and pressing the buttons does nothing. how do i fix this?

    As the title says, this is a brand new iPod touch bought from a store, I plugged it in a commenced the "setting up" process through iTunes on may iMac. It got to the stage where it said allow this computer to access the device (or something along those lines), i clicked yes, and then a message came up "to allow access, please respond on your iPod touch. however the ipod screen is black, and pressing the buttons doesn't work. How can i fix this? or do I need to return it?

    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 another cable       
    - 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                              

Maybe you are looking for

  • HOW TO GET THE MACBOOK PRO 13" TO RUN ON THE 1440x900 RESOLUTION

    Hey guy, this is not a question bu more of an answer. I have read many forums with people wanting to up there res on the macbook pro from 1280x800 to something higher. i got my 13" MAcbook pro mid 2012 to run on the 1440x900 although its blurry and t

  • Final Cut Pro to Final Cut Express -- Format issues?

    Hi, I'm shooting a project on a Panasonic HVX-200A, and my cameraman is going to import the footage to his Final Cut Pro station. He's then going to transfer the FCP footage and data over to an external hard drive, which I am going to use to edit the

  • Need to show attributes value in the F4 help

    Hello All    I am Having 0customer has a main characteristics and its attributes is 0city. In the selection screen of the report for 0customer i am able to view all the customer name. but as per the user requirement i need to display 0customer with c

  • Digitized music not transferring from iTunes to iPod

    I've been transferring and digitizing all my old cassettes onto my computer. It works great and plays fine in iTunes, but it won't load onto the iPod. It's in mp3 format like all the other music on my iPod. Any ideas or suggestions as to what to do t

  • Loading a SQL Server table

    Hi All, I am developing a straight source - target interface from a sql server table to a sql server table. While executing the interface, I get an error message - " Cannot insert explicit value for identity column in table 'xxx' when IDENTITY_INSERT