(SQR 4401) Out of Param storage;Use -Mfile to increase PROGLINEPARMS

I get this error when I run SYSAUDIT and also SETSPACE.SQR. The PSSQR.INI is set as PROGLINEPARS=65535. However I did not have any issues with first SQR DDDAUDIT. Can you please let me know how to resolve this issue?. I also increased PROGLINEPARS to much more than 65535, but sqr again throws as error.
Tools 8.51
Report Parameters thru command line.
-ZIFc:\PT8.51\sqr\pssqr.ini -ic:\PT8.51\sqr\ -fc:\temp\sysaudit.pdf -debugx -printer:ht
Thanks
Periyasamy.

Is that the same error if turning off the debug flag? What I curious is that when I run the dddaudit or/ sysaudit for the PT8.51 I installed, there's no issue, and the command used was not set a debug flag. [However, this option should not make sense as it should be working the same whether the flag is set or not.]
I would rather believe this maybe a file defect. Current I do not have a delivered SQR at hand, if you can get from someone else or your other System, please have a check if the file is defect or not. (As you already have run sysaduit successfully, but not for dddaudit and setspace.)
Here's some tips from Google by this error FYI: http://www.sqrug.org/sqr-users/sqrusers_98q1/msg00397.html
Thanks,
Saxon SI

Similar Messages

  • Out-of-Line Storage: an Intermediate Table is not created

    Hi
    I'm trying to use the "Out-of-Line Storage: Using an Intermediate Table to Store the List of References" sample from "Oracle XML DB Developer’s Guide".
    Here are my schemas:
    oebs_content_organization.xsd
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:oebs="http://www.rosbank.ru/oebs"
    targetNamespace="http://www.rosbank.ru/oebs/content/organization"
    xmlns:appsxx_organization="http://www.ibm.com/xmlns/prod/websphere/j2ca/jdbc/appsxx_organization_v"
    elementFormDefault="qualified" xmlns:xdb="http://xmlns.oracle.com/xdb"
    xdb:storeVarrayAsTable="true">
    <xsd:import schemaLocation="oebs.xsd" namespace="http://www.rosbank.ru/oebs"/>
    <xsd:import namespace="http://www.ibm.com/xmlns/prod/websphere/j2ca/jdbc/appsxx_organization_v"
    schemaLocation="AppsXx_Organization_V.xsd"/>
    <xsd:complexType name="contentOrganizationType" xdb:SQLType="CONTENT_ORGANIZATION_T">
    <xsd:complexContent>
    <xsd:extension base="oebs:contentAbstractType">
    <xsd:sequence minOccurs="1" maxOccurs="1">
    <xsd:element name="organization" minOccurs="1" maxOccurs="unbounded" xdb:SQLInline="false"
    xdb:defaultTable="ORGANIZATION"
    type="appsxx_organization:AppsXx_Organization_V"/>
    </xsd:sequence>
    </xsd:extension>
    </xsd:complexContent>
    </xsd:complexType>
    </xsd:schema>
    oebs_content_organization_element.xsd
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:organization="http://www.rosbank.ru/oebs/content/organization"
    targetNamespace="http://www.rosbank.ru/oebs/content/organization"
    xmlns:oebs="http://www.rosbank.ru/oebs" elementFormDefault="qualified"
    xmlns:xdb="http://xmlns.oracle.com/xdb" xdb:storeVarrayAsTable="true">
    <xsd:include schemaLocation="oebs_content_organization.xsd"/>
    <xsd:import schemaLocation="oebs.xsd" namespace="http://www.rosbank.ru/oebs"/>
    <xsd:element name="content" type="organization:contentOrganizationType"
    substitutionGroup="oebs:contentAbstract" xdb:SQLName="CONTENT_ORGANIZATION"
    xdb:defaultTable=""/>
    </xsd:schema>
    I registered them.
    But I can't find an Intermediate Table which have to keep the List of References to the "organization" element because next select doesn't return any result:
    SELECT * FROM USER_NESTED_TABLES
    Can anybody give me suggestion where these references are stored and how to index them?
    Thanks
    Dmitry

    You appear to hitting bug 5979468 which is fixed in 11g..
    With the heavy usage of inheritance in your XML Schemas I would VERY STRONGLY recommend that you upgrade to 11g immediately...
    SQL*Plus: Release 11.1.0.6.0 - Production on Wed May 14 22:08:49 2008
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    SQL> spool testcase.log
    SQL> --
    SQL> connect sys/ as sysdba
    Enter password:
    Connected.
    SQL> --
    SQL> set define on
    SQL> set timing on
    SQL> --
    SQL> define USERNAME = ROSBANK
    SQL> --
    SQL> def PASSWORD = ROSBANK
    SQL> --
    SQL> def USER_TABLESPACE = USERS
    SQL> --
    SQL> def TEMP_TABLESPACE = TEMP
    SQL> --
    SQL> def DIRECTORY_PATH = &1
    SQL> --
    SQL> drop user &USERNAME cascade
      2  /
    old   1: drop user &USERNAME cascade
    new   1: drop user ROSBANK cascade
    User dropped.
    Elapsed: 00:00:00.51
    SQL> grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &PASSW
    ORD
      2  /
    old   1: grant create any directory, drop any directory, connect, resource, alter session, create view to &USERNAME identified by &P
    ASSWORD
    new   1: grant create any directory, drop any directory, connect, resource, alter session, create view to ROSBANK identified by ROSB
    ANK
    Grant succeeded.
    Elapsed: 00:00:00.20
    SQL> alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
      2  /
    old   1: alter user &USERNAME default tablespace &USER_TABLESPACE temporary tablespace &TEMP_TABLESPACE
    new   1: alter user ROSBANK default tablespace USERS temporary tablespace TEMP
    User altered.
    Elapsed: 00:00:00.04
    SQL> connect &USERNAME/&PASSWORD
    Connected.
    SQL> --
    SQL> alter session set events ='19027 trace name context forever, level 0x800'
      2  /
    Session altered.
    Elapsed: 00:00:00.00
    SQL> call xdb_utilities.createHomeFolder()
      2  /
    Call completed.
    Elapsed: 00:00:00.21
    SQL> create or replace directory XMLDIR as '&DIRECTORY_PATH'
      2  /
    old   1: create or replace directory XMLDIR as '&DIRECTORY_PATH'
    new   1: create or replace directory XMLDIR as 'C:\xdb\customers\ROSBANK'
    Directory created.
    Elapsed: 00:00:00.56
    SQL> declare
      2    JDBC XMLType := XMLType(bfilename('XMLDIR','JDBCASI.xsd'),nls_charset_id('AL32UTF8'));
      3    APPS XMLType := XMLType(bfilename('XMLDIR','AppsXx_Organization_V.xsd'),nls_charset_id('AL32UTF8'));
      4    OEBS XMLType := XMLType(bfilename('XMLDIR','OEBS.xsd'),nls_charset_id('AL32UTF8'));
      5  begin
      6    dbms_xmlschema.registerSchema
      7    (
      8        schemaurl => 'JDBCASI.xsd'
      9       ,schemadoc => JDBC
    10       ,local     => TRUE
    11       ,genBean   => false
    12       ,genTypes  => TRUE
    13       ,genTables => TRUE
    14       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    15    );
    16    dbms_xmlschema.registerSchema
    17    (
    18        schemaurl => 'AppsXx_Organization_V.xsd'
    19       ,schemadoc => Apps
    20       ,local     => TRUE
    21       ,genBean   => false
    22       ,genTypes  => TRUE
    23       ,genTables => TRUE
    24       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    25    );
    26
    27    dbms_xmlschema.registerSchema
    28    (
    29        schemaurl => 'oebs.xsd'
    30       ,schemadoc => OEBS
    31       ,local     => TRUE
    32       ,genBean   => false
    33       ,genTypes  => TRUE
    34       ,genTables => TRUE
    35       ,ENABLEHIERARCHY => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    36    );
    37  end;
    38  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:01:13.70
    SQL> declare
      2    xmlSchema XMLType := XMLType(
      3  '<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:oebs="http://www.rosbank.ru/oebs" targetNamespace="http://www.r
    osbank.ru/oebs/content/organization" xmlns:appsxx_organization="http://www.ibm.com/xmlns/prod/websphere/j2ca/jdbc/appsxx_organizatio
    n_v" elementFormDefault="qualified" xmlns:xdb="http://xmlns.oracle.com/xdb" xdb:storeVarrayAsTable="true">
      4          <xsd:import schemaLocation="oebs.xsd" namespace="http://www.rosbank.ru/oebs"/>
      5          <xsd:import namespace="http://www.ibm.com/xmlns/prod/websphere/j2ca/jdbc/appsxx_organization_v" schemaLocation="AppsXx_
    Organization_V.xsd"/>
      6          <xsd:complexType name="contentOrganizationType" xdb:SQLType="CONTENT_ORGANIZATION_T">
      7                  <xsd:complexContent>
      8                          <xsd:extension base="oebs:contentAbstractType">
      9                                  <xsd:sequence minOccurs="1" maxOccurs="1">
    10                                          <xsd:element name="organization" minOccurs="1" maxOccurs="unbounded" xdb:SQLInline="fal
    se" xdb:defaultTable="ORGANIZATION" type="appsxx_organization:AppsXx_Organization_V"/>
    11                                  </xsd:sequence>
    12                          </xsd:extension>
    13                  </xsd:complexContent>
    14          </xsd:complexType>
    15  </xsd:schema>');
    16  begin
    17    DBMS_XMLSCHEMA.registerSchema(SCHEMAURL => 'oebs_content_organization.xsd', SCHEMADOC => xmlSchema, GENTABLES => TRUE);
    18  end;
    19  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:12.51
    SQL> set pages 0 lines 250
    SQL> --
    SQL> column table_name format A40
    SQL> column column_name format A40
    SQL> column parent_table_name format A40
    SQL> column parent_table_column format A40
    SQL> --
    SQL> select table_name
      2    from user_xml_tables
      3  /
    OEBS
    CONTENT
    ORGANIZATION
    Elapsed: 00:00:29.40
    SQL> select table_name, parent_table_name, parent_table_column
      2    from user_nested_tables
      3  /
    SYS_NTjt3LMhVVSJ6XnKEY8x7idQ==           CONTENT                                  TREAT("XMLDATA" AS "CONTENT_ORGANIZATION
                                                                                      _T")."organization"
    Elapsed: 00:00:00.00
    SQL> select table_name, column_name
      2    from user_refs
      3  /
    SYS_NTjt3LMhVVSJ6XnKEY8x7idQ==           COLUMN_VALUE
    OEBS                                     "XMLDATA"."contentAbstract"
    Elapsed: 00:00:00.67
    SQL>
    SQL>
    SQL>

  • I have an ipad&iPhone but used the same iCloud account for both during setup.i now have ran out of iCloud storage!

    I have an ipad&amp;iPhone but used the same iCloud account for both during setup.i now have ran out of iCloud storage! If I delete the account from iPhone will I lose the apps from my ipad?
    And will new account that i set up on iPhone give me 5gb storage? I assume its not as easy it sounds, it never is!
    It is the camera roll on both devices that are using the storage up, and I know I can transfer the photos to a hard copy, which I will but if I can get 5gb from two separate iCloud accounts then that's the route I will take!
    Many thanks in advance for your help.
    Ps I had originally synced the iPad and iPhone but as far as this apple illiterate operator is aware I managed to stop them syncing a few months at lol.thanks

    Welcome to the Apple Community.
    I assume that the same account is required on both devices (it would be rather awkward otherwise) and that most of your space is consumed by back up.
    You will need to buy more storage or back up to iTunes instead of iCloud.
    Being able to back up to the cloud can be very useful, especially if you don't have access to a computer or have infrequent access to one, however unless you specifically need to use iCloud for back up, you will find backing up to iTunes significantly more convenient and possibly more reliable.

  • Is there a way to find out how much storage I have used on my iphone4s?

    I am new to icloud and want to back up my phone but it is saying I have too much data to back up to the free 5.0GB.  I can purchase more but note sure how much I will need.  Is there a way to find out how much storage my phone is currently using?

    Go to Settings - General - Usage, and you will see a breakdown of all your apps along with how much space they are using.
    My guess is that you have a lot of pictures that should probably be exported to your PC/Mac to free up your space.   5GB is a lot for one phone, you should be able to get by without buying more storage if you do a little housecleaning first.

  • Running out of internal storage space! Want to make room by deleting photos WITHOUT LOSING MY PHOTOS! Can I delete the Camera Roll yet still keep my photos in Photo Stream?? Will doing this free up ios storage? Does Photo Stream auto delete ever?

    Hello, I am out of internal storage on my Iphone 4 ALREADY (Just purchased 3 months ago!). I need to clear up some space so I can do updates and take new photos. I was thinking about backing up my Photo Stream to the icloud and then deleting my Camera Roll.
    1.) Is this a terrible idea??? I do NOT want to lose those photos! But I NEED more space on my phone!
    2.) Will deleting Camera Roll free up space (a sufficient amount? My Camera Roll is at 4.5 GB)?
    3.) Will deleting Camera Roll delete my photos from Photo Stream also? It doesn't seem to.
    4.)  Does Photo Stream ever automatically delete photos???
    5.)  Is there anyway I can save the pictures from my phone to my computer??? I can see the photos on my computer when viewing them through Photo Stream, but those are not permanent, correct?
    This is one of the most ridiculous, confusing and unnessacary things I've ever known! Why oh why can't we just have a good ol' SD Card??? (My Droid never ever ran out of storage and I had it for 2 years...)
    I tried backing up my photos in Itunes, but I don't have a new enough version. I tried downloading a new itunes and it still tells me I don't have the new version.
    I have been working on this for 4 hours, its 2:30 am and I am going to bed. I am sorry I had to ask, but I've been searching and searching and just cannot find the answers. Thank you so much for your help!
    6.) Also, I haven't been able to find the videos using the Icloud or the Photo Stream either...
    7.) Do you have to have your device (pc) synced with icloud to access the info you backed up from iphone?? Like can I show my cousin my photos at her house using her computer by just loggin on??? Or can I only view my contacts, calender, mail, notifications, and such?
    8.) Where on the icloud would one find text messages or other saved info??
    Thank you so very much for helping me!!!

    What I would say is best is to import the videos and photos to your computer so that you can delete camera roll photos with a copy of them in your possession:
    http://support.apple.com/kb/ht4083
    In regards to backing up Photo Stream
    http://support.apple.com/kb/HT4486:
    Does Photo Stream use my iCloud storage?
    "No. Photos uploaded to My Photo Stream or Shared Photo Streams do not count against your iCloud storage."
    However, you can do the tedious task of moving your camera roll pictures to photo stream by ensuring photo stream is turned on for your device and take a screen shot of each picture in your camera roll to move it over.
    To take a screen shot, just press the "Home Button" and the "Sleep/Wake Button" at the same time while viewing the image.
    1.)  It's not a terrible idea, it can be tedious though.
    2.)  Deleting a bunch of photos/videos from a camera roll 4.5GB in size can definitely free up space
    3.)  Photo Stream photos, as you said, appear to stay upon deleting the photos.  (Tested it personally)
    4.)  Photo Stream has a limit according to:  (http://support.apple.com/kb/HT4858)
              Essentially, it won't erase your photos until you tell it to.
    5.)  http://support.apple.com/kb/ht4083  (As shown above)
    6.)  To update iTunes, you must download and then "Run" the download you get off the website.  Otherwise you will just have an installer program sitting there not updating iTunes.
    7.)  You can bring up your Photo Stream pictures anywhere you have Photo Stream capabilities.  For a computer at someone else's house, they would have to have the iCloud control panel (http://support.apple.com/kb/dl1455) on their computer and be signed into their Photo Stream and viewing your profile's pictures (http://support.apple.com/kb/ts4379)
    8.)  On iCloud, you can backup your text messages, but you cannot view them independently on www.icloud.com.
    http://support.apple.com/kb/ht4859
    "You get 5 GB of free iCloud storage for:
    Photos and videos in the Camera Roll
    Device settings (for example: Phone Favorites, Wallpaper, and Mail, Contacts, Calendar accounts)
    App data
    Home screen and app organization
    Messages (iMessage, SMS, and MMS)
    Ringtones
    Visual Voicemails"
    Hope some of this information helps!

  • I have my personal music (not purchased from Itunes) stored in two locations, on my PC and on an external HD. How can I find out which directory itunes uses to access this music? I am using Itunes version 11.4.0.18. Thanks

    I have my personal music (not purchased from Itunes) stored in two locations, on my PC and on an external HD. How can I find out which directory itunes uses to access this music? I am using Itunes version 11.4.0.18. Thanks

    Many thanks JEM24 for your help.  Ive just spent the best part of six hundred pounds on a new Sony Rx100m2 compact camera, so I have no interest in the Ipods camera at all really. I doubt Ill be watching many videos on it as Im very lucky in that I have a good Android tablet. Its more as a stock music player that Ill be buying the Ipod for, if indeed I do end up buying one. I dont like the idea of paying the exorbitant amount added for more memory space that Apple along with most other companies charge. In fact I read an article on this very subject just yesterday in the tech section of Flipboard. It stated in the article that in the case of the Iphone  the actual cost of each additional  gigabyte of storage  to Apple et al is something in the order of 60p.. This is certainly not reflected in the price us the customer has to pay at the till.. Its for this reason primarily that Apple in particular, because their products do not allow adding expandable memory of your own in the form of cheap to buy cards, that nobody in their right mind buys the 64gig etc Iphones..I am aware that we are discussing my potential purchase of an Ipod Touch here but you see my point. Many thanks again though for helping me.

  • I have iphone and ipad on same apple id.  I'm out of icloud storage so phone won't back up.  Can I switch my ipad to a different apple ID and switch over all of the apps I purchased?

    Am I able to create a new apple ID for either my phone or iPad and transfer all of the apps I purchased.  Right now I have them both under the same apple id and can't backup my iphone because I'm out of iCloud storage.
    Thanks

    This detailed explanation for iCloud account transfer could help you sort out your question:
    http://www.quora.com/iCloud/I-have-duplicate-Apple-IDs-one-of-which-i-use-on-ICl oud-and-want-to-cancel-that-one-and-re-configure-iCloud-Any-ideas

  • Trying to delete my Contacts Storage using Clear Data button however it's Unavailable

    Just recently upgraded to a Droid Razr (been a long time blackberry user) and really just beginning to understand some of the features.  During the initial setup I didn't handle my contacts the way I would have preferred and would like to start over.  From what I can decipher, I should be able to go to Settings>Applications>Storage Use> and then chose "Contacts Storage" to completely delete my contacts via the "Clear Data" button.
    However, the "Clear Data" button is grayed out and unavailable.  I've tried using "Force Stop" thinking that if this application currently had the data in an open state then that might be why is was unavailable.  However, it doesn't appear that "Force Stop" ever actually stops the application and it certainly doesn't allow me to chose "Clear Data" afterwards.
    Does anyone know how I could either make the "Clear Data" button available or another method to completely remove my contacts?
    Some other info that might be helpful:
    Hardware: Droid Razr
    Android Version: 2.3.6
    Data Size: 31.29MB
    I do not want to "root" my phone at this time.  If I were going to make a wild guess, I think it could be related to Backup Assistant (same idea that if an application has locked the data, it's not read/writable).  However, I don't see any way in the phone to disable Backup Assistant to test this theory.  Furthermore, I have disabled sync with all other contact services (facebook, linkedin, etc.) so if I can ever delete my contacts... the deletion won't propogate to my original sources.
    Any help would be greatly appreciated!!!

    Take a look at these instructions i Found And you might be able to Get Rid of them by Tapping on the Contacts up on Top then hitting your settings and Tap Manage Contacts that might give you the option there to get Rid of them. You could Export them to your SD CARD Then once in there Format the Card. But a word of Caution if you have an Pictures or Songs in there they will be Wiped as Well..
    How do I manage my contacts on my DROID RAZR?
    How do I manage my contacts?
    Quick links 
    Create a new contact
    Add recent calls to contacts
    Edit a contact
    View contact
    Unable to view contacts within the Navigation app     
    My contacts on Corp Sync account Stopped Syncing after I updated the phone software to 6.12.173  
    Delete a contact
    Add picture to contact     
    Create a new contact group
    Delete a group
    Sort contacts
    Set an individual ringtone for a contact
    Contact transfer assistant
    Choose which contacts to display
    Create a new contact
    Touch ,tap contacts.
    Press the Menu key and tap Add contact.
    Choose an account to store new contacts
    Add all the information you want to store for this contact in the appropriate fields.
    Tap Save.
    Add recent calls to contacts
    From the Home screen, tap 
    Tap the recent (second from the left icon).
    Scroll to the number you want to add to contacts.
    Touch and hold the number.
    Tap Add to contacts.
    Select Existing to add number to existing contact or New to create a new contact.
    Add all the information you want to store for this contact in the appropriate fields.
    Scroll down and tap Save.
    Edit a contact
    From the Home screen, tap .   
    Tap Contacts.
    Locate and tap the contact you would like to edit.
    Tap the options key. (four squares located beneath the display screen)
    Tap Edit contact.
    Make your changes.
    Tap Save.
    View contact
    Tap   
    Tap Contacts.
    Press and hold the contact that you would like to view and tap View Contact.
    Delete a contact
    Tap  
    Tap Contacts.
    Tap and hold on the contact.
    Scroll down and tap Delete contact.
    Tap OK to confirm.
    Note: At this time multiple contact selection is not supported.Add picture to a Contact
    From the Home screen, tap .   
    Tap Contacts.
    Locate and tap the contact you would like to edit.
    Tap the options key. (four lines located beneath the display screen)
    Tap Edit contact.
    Tap on the image icon located on the top left corner
    Make your selection
    Tap Save.
    Create a new contact group
    Tap   
    Tap Contacts.
    Tap on the group icon  located next to the magnifying icon.
    Press the menu button
    Tap New Group.
    Enter the name of your group.
    Tap OK.
    Tap the check box of the names you would like to add to the group..
    Tap Done.
    Repeat steps 7-9 until you are done adding items into the groups.
    Delete a group
    Tap   
    Tap Contacts.
    Tap on the group icon located next to the magnifying icon.
    Tap and hold on the group name you wish to delete. 
    Tap delete group.
    Tap Yes to confirm.
    Sort contactsTo sort contacts or set display options, press Menu > Display options and touch:
    Only contacts with phones: hide email-only contacts.
    Sort list by: sort by first or last name.
    View contact names as: view contacts as first name or last name first.
    Choose contacts to display: select which source to use contacts from.
    Set an individual ringtone for a contactYou can assign a custom ringtone for each of your contacts.
    Touch and touch the name of the person.
    Touch > Options.
    Touch Ringtone and select the ringtone to use.
    To switch back to the default ringtone for a contact, select Options > Ringtone > Default ringtone. CLICK HERE to visit our web based contact transfer assistant.
    Contacts Menu OptionsWithin your contacts Menu you will have other options to help manage and share your contacts such as, Add contact, Display options, Accounts, Import/Export, Share name cards and More.Notes:
    Exporting contacts to the SIM card does not currently save the contacts. You can export and save contacts to the SD card.
    If you have multiple SIM cards, you will need to power cycle the device for all the SIM contacts to be visible.
    Under More, you can see My info - Which contains all of your contact information.  And Settings - Access toDisplay suggestions and Contact storage, which allows you to choose which account new contacts will be saved to.
       You can also remove the Display suggestions under you Contacts settings as well by removing the check from this location as well.
    Unable to view contacts within the Navigation appIf you're unable to view your contacts within the Nagivation application, try updating your Google maps application. Touch Market > Menu > My apps and select maps to update to the latest version.
    Choose which contacts to display.
    Q: I have several accounts set up in my phone. How do I choose which contacts to display for the account i have set up such as Facebook, Corporate/Enterprise, Gmail/Google etc..? A: From the home screen, touch Apps > Contacts, touch the Menu key> Display options. Under Choose contacts to display, select the account which contacts the contact you wish to display or not display and check to display or uncheck to hide the contacts.
    My contacts on Corp Sync account Stopped Syncing after I updated the phone software to 6.12.173If you experience the issue with the contact sync after the update, please follow the steps below:
    Under Accounts, select the corp sync account, General Settings, and UNCHECK the Contacts check mark.
    Tap on - OK, OK.  Go to your Corp Sync email account and tap on the Manual Refresh (two arrows) to perform the Sync.
    Power Cycle the device and repeat the steps above by CHECKING the Contacts check.
    Details 
    Answers others found helpful
    MotoCast User Manual
    Troubleshooter
    Download MOTOCAST Desktop Software
    Locks Up/ Freezes (DROID RAZR)
    How can I speed up receiving the GPS signal for my outdoor workout faster?

  • How to upload 100 Mb+ video on Azure storage using PHP

    Dear Sirs,
    I have uploaded 1.2 Mb video to Azure storage through PHP code with no problem. When I tried to upload a 90 Mb video I got the following error message:
    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 90363852 bytes) in C:\xampp\htdocs\projetos\ajao\azure-sdk-for-php-master\WindowsAzure\Blob\BlobRestProxy.php on line 1319
    Can somebody please instruct me how to upload 100 Mb+ file size into Azure storage using PHP code?
    In advance thanks for your help.
    Best regards,
    Luiz Doi

    Hi Manu, Im having the same problem as Luiz, getting the same type of errors. I'm not a dev so I thought I ask for more details to clear things out.
    I have a Joomla site that was configured in though Azure hosting but I can't upload anything into Joomla less than 8MB. So basically having Azure storage blobs and media services for Joomla is useless if I can't use the larger files into the site or out
    of the site into Azure storage/Media services acct.   
    I even manually changed the upload_max_filesize and post_max_size parameters on the admin and then directly on the site code and even added a php.ini file on the root to override all as I read
    here but still nothing worked. 
    Therefore the code you posted above seems the solution but just wanted to be sure if it will solve my issue.
    1. I need my Azure hosted site to allow larger files up to 500MB.
    2. I need the files people upload on my site front end through a form see
    here to be sent to my Azure blob. What code do I need to paste on the Joomla's forms admn. So basically files first go into site and then to storage.
    3. After I upload the Php SDk and then the Http_Request2 PEAR
    and paste your code in the SDK how does the code recognize my Azure site and my azure blob/containers? Where in the code do I plug in my info?
    Kindly advise.
    Karin
    kd9000

  • How to find out Mapping Loading type using db query

    Is there a way to find out mapping loading type using a database query.
    Is there a table in database which stores loading type information?
    Thanks,
    Niranjan

    hi,
    i found the below
    select
            comp.map_name
           ,comp.map_component_id             comp_map_component_id
           ,comp.operator_type                comp_operator_type
           ,comp.data_entity_id               comp_data_entity
           ,comp.data_entity_name             comp_data_ename
           ,comp.data_entity_type             comp_data_etype
           ,param.map_component_name          param_comp_name
           ,param.parameter_id                param_par_id
           ,param.parameter_name              param_par_name
           ,param.parameter_group_name        param_par_gr_name
           ,param.parameter_type              param_par_type
           ,param.position                    param_position
           ,param.data_type                   param_data_type
           ,param.transformation_expression   param_transform
           ,param.data_item_id                param_data_item_id
           ,param.data_item_name              param_data_item_name
           ,param.source_parameter_name       param_src_parameter
           ,nvl2(param.source_parameter_name,'TARGET','SOURCE') param_INFO
           ,param.map_component_id             param_map_component_id
           ,md.map_component_id                md_map_component_id
           ,md.map_component_name              md_map_component_name
           ,md.parameter_name                  md_parameter_name
           ,md.parameter_id                    md_parameter_id
           ,md.position                        md_position
           ,md.transformation_expression       md_transformation
           ,md.description                     md_description
           ,md.source_expression               md_source_expression
           ,mp.MAP_COMPONENT_ID                    mp_map_component_id
           ,mp.MAP_COMPONENT_NAME                  mp_map_component_name
           ,mp.PROPERTY_ID                        mp_property_id
           ,mp.PROPERTY_NAME                      mp_property_name
           ,mp.PROPERTY_GROUP_NAME                mp_property_group_name
           ,mp.BUSINESS_NAME                      mp_business_name
           ,mp.PROPERTY_VALUE                  mp_property_value
           ,mp.DESCRIPTION                     mp_description
    from all_iv_xform_map_components comp,
         all_iv_xform_map_parameters param,
         ALL_IV_XFORM_MAP_DETAILS md,
         ALL_IV_XFORM_MAP_PROPERTIES mp
    where  mp.business_name                  = 'DATAENTITY.PARMETERS.LOADTYPE'
    and  param.map_component_id           = comp.map_component_id
    and  param.map_component_id           = md.map_component_id(+)
    and  param.parameter_id               = md.parameter_id (+)
    and  md.map_component_id              = mp.map_component_id (+)i think it contains what we require;
    can you check on your side?
    rgds

  • HT4847 i have 5gb of icloud storage, used 2.5gb but it wont let me unlock the other 2.5gb of storage. How can i use the remainig 2.5gb of storage?

    i have 5gb of icloud storage, used 2.5gb but it wont let me unlock the other 2.5gb of storage. How can i use the remainig 2.5gb of storage?

    I got rid of AMDS, ASU ,QuickTime and iTunes from control ones I also found folder in Vista with D:\Users\Rick\Music\iTunes\Previous iTunes Library and there is one dated 2009-03012.itl. I moved this file up one folder and delted existing iTunes Library.itl. iTune still failed to identify my iPhone. There are other files iTunes Library Extras.itdb, iTunes Library Geniyes,itdn and iTunes Music Library,xml date dtd 06/18/2009 after upgrade except the latter which is date 06/23/2009. So something is not allowing me to pull or put everything back to when it worked.
    YES this is my only iPhone and only PC I have access to with iTunes.
    Here is what Apple gave to someone Sunday 28 June:
    http://discussions.apple.com/thread.jspa?threadID=2035950&start=75&tstart=0
    I checked these out too and they appear the same printed out nearly a week prior. I agree with Coach TO, if I had bad drivers or Vista errors it would not have shown up only when I updated to latest Version of 8.2.023. My Phone was identified on a PC with iTunes at the local AT&T store. He suggested I get phone into Recovery made while connected to iTunes and that resolves the problem 9 out of 10 time. Weak spot was he tried to get phone into Recovery without iTunes connection and thought I may have iPhone problem, then changed his mind when it worked while connected. He also stated it could take an hour. I have not tried to put my iPhone in Recovery lately, I think I did a while back and it failed to go into Recovery as error "iPhone detected by, not identified..."Has anyone tried forcing phone into Recovery? I understand you may lose all that is on phone. If iTunes still fails to identify would we not be in worse shape even if iTunes holds a recent backup which it does not for many of us? Will Apple take back or exchange phone if yours is not identitifed, AT&T today told me I had to go to Apple Store for this or anything to happen.

  • Why Inner join or Outer join is not used for Pool or Cluster tables  ?

    Hi SAP-ABAP Experts .
    With Due Regards .
    May u explain me why Inner join or Outer join is not useful for Pool or Cluster tables  ?
    because peoples advised not use Joins for Pool and Cluster tables , What harm will take place , If we do this ?
    Best Regards to all : Rajneesh

    Both Pooled and Cluster Tables are stored as tables within the database. Only the structures of the two table types which represent a single logical view of the data are defined within the ABAP/4 Data Dictionary. The data is actually stored in bulk storage in a different structure. These tables are commonly loaded into memory (i.e., 'buffered') due to the fact they are typically used for storing internal control information and other types of data with little or no external (business) relevance.
    Pooled and cluster tables are usually used only by SAP and not used by customers, probably because of the proprietary format of these tables within the database and because of technical restrictions placed upon their use within ABAP/4 programs. On a pooled or cluster table:
    Secondary indexes cannot be created.
    You cannot use the ABAP/4 constructs select distinct or group by.
    You cannot use native SQL.
    You cannot specify field names after the order by clause. order by primary key is the only permitted variation.
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • ADI0052E: TSM API Error: ANS1311E (RC11)   Server out of data storage space

    Hello guys,
    I have a problem with the backup on MaxDB. It always fails with the following error message
    ADI0052E: TSM API Error: ANS1311E (RC11)   Server out of data storage space
    Has anyone faced this problem before? Any solution how could this be solved?
    Thanks for your help.
    Regards,
    Dan

    Hi Dan,
    Check the TSM server and make sure the primary storage pool that is defined
    as your copy destination for the management class you are using is not full
    and or you have not run out of scratch tapes. In either case a storage pool
    has filled up and cannot migrate data causing the RC11. This is usually what
    an RC11 Server out of data storage space means.
    I am sharing configuration for Oracle database. You can check similar configuration for MaxDB database.
    when i defined the node in my tsm server :
    REG NODE hostname_oracle password maxnummp=2, it was defined in standard storage pool, i moved it in other storage.
    Hope this is useful.
    Regards,
    Deepak Kori

  • How do I list Storage used by Individual MySites

    Is there a way to find out which user is utilising the most space in the MySite content DB?
    I know the size of the content database but I would like to find out who is using the most so I can keep an eye out for anyone that may be rapidly heading towards hitting storage limits.
    It would be really cool if it was possible to zero in on the libraries that have the most storage allocated so I can guide them to places that need to be pruned.
    Thanks in advance for any help given.
    Darren

    Hi,
    According to your post, my understanding is that you wanted to list Storage used by Individual MySites.
    There are two out of the box way to find the My Site size with SharePoint.
    Central admin>Application Managment>SiteCollection Quotas and Locks>close to the bottom of the page under quotas it shows the current size.
    Site actions> site Settings> under site actions > Site Collection Web Analytics reports, this gives you the total size for the collection.
    In addition, you can list site collection size using PowerShell. For more information, please refer to:
    Using PowerShell to find site collection size in SharePoint 2010
    Find All SharePoint 2010 Site Collections
    and Their Sizes Using PowerShell
    Here is a similar thread for your reference:
    http://community.spiceworks.com/topic/159522-sharepoint-2010-find-size-of-the-site-without-powershell
    Thanks,
    Linda Li
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Disk storage used by Mac Mail?

    I was trying to figure out what was eating up my iMac's hard drive and came across the surprising fact that my IMAP accounts using Mac Mail as the client involve many GB of disk storage. [Mail is not the worst offender, but it is puzzling.]
    Can anyone explain what the client storage is for? I thought in the IMAP world the messages reside on the server and I expected that only indices with subject lines would resid on my disk. Obviously this is not an accurate picture, at least for Mac Mail. [I have clients for 3 IMAP servers on my Android phone and there is no comparable storage used there.]
    Is there a way to clean out my client disk storage without deleting the messages from the server?
    Thanks for any help.

    One of IMAP's advantages is it's synchronization features so you can work from multiple clients and not miss much, especially when not connected to a network. Turning this feature off requires you to have an internet connection to read and manage your email. It will therefore limit how much email you can search through with Spotlight, and also the options for backing it up and restoring it with Time Machine if you inadvertently delete an important message.

Maybe you are looking for

  • Calendar weather units always revert to celsius

    I switched the calendar app's weather units to fahrenheit, but it always changes back to celsius. I've tried clearing app data and re-setting the units, but after a while (or immediately after swiping the app out of the task manager), it goes right b

  • "Flies are in use" error while trying to trash - help?

    Hello! I have 2 old Macs - a PowerMac G4 that's on it's last legs, and an old PowerBook 5300cs! Well, as the G4 is wearing out, and the Powerbook's floppy drive is dead, I wanted to make sure all of the files are saved. So, Today I booted the G4 into

  • Flex 3 : Contour Plot Chart

    Hi, I have been tasked with a project where a contour plot chart is required like the one below. Does anyone know how this coould be done in Flex or are there any third-party components available to do this? Thanks very much for you help. Martin

  • 160 GB external USB HDD won't mount in 10.4.9; does in 10.4.0

    I'm using a Beige G3 (though I don't think the model is the issue). I know there's nothing wrong with the drive whatsoever, because it mounts on PCs, and it mounts when booted from both other hard drives on the system, on Mac OS 9.2.2 and Mac OS 10.4

  • Help: JPanel/JFrame display complexities, wrong size

    I am trying to make a simple game of worms.I wan't to draw a rectangle in the center of the window where in the middle the game is played and on the outside score, lives and other such things are displayed. The problem is the rectangle won't draw pro