Sandbox WebPart Postback too Large?

Hi guys, I've done some research and it looks like the error I'm running into (when saving the web part properties) is that my post back is too large. 
This is a simple sandbox web part I'm building, which works great until I added the last configuration option which put me over the limit.
Web Part Code (.cs)
using System;
using System.ComponentModel;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using Microsoft.SharePoint;
using Microsoft.SharePoint.WebControls;
namespace P.SPS.UI.Web_Parts.jQuery_UI_Accordion_Zone
[ToolboxItemAttribute(false)]
public class jQuery_UI_Accordion_Zone : WebPart
#region custom web part properties
[WebBrowsable(true),
Category("JQuery Options"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Include jQuery"),
WebDescription("Check to include reference to jQuery. * Google CDN")]
public bool includejQuery { get; set; }
[WebBrowsable(true),
Category("JQuery Options"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Include jQuery UI"),
WebDescription("Check to include reference to jQuery UI. * Google CDN")]
public bool includejQueryUI { get; set; }
[WebBrowsable(true),
Category("JQuery Options"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Include jQuery UI CSS"),
WebDescription("Check to include reference to jQuery UI CSS. * Google CDN")]
public bool includejQueryUICSS { get; set; }
[WebBrowsable(true),
Category("JQuery Options"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Include SPAccordions Script"),
WebDescription("Check to include the custom spaccordions() jQuery function.")]
public bool includeSPAccordionsScript { get; set; }
[WebBrowsable(true),
Category("JQuery Accordion() Properties"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Width (px)"),
WebDescription("If set a min and max width will be applied to the tab container. (integer)"),
DefaultValue(0)]
public int dataWidth { get; set; }
[WebBrowsable(true),
Category("JQuery Accordion() Properties"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Active"),
WebDescription("Which panel should be open? (integer)"),
DefaultValue(0)]
public int dataActive { get; set; }
[WebBrowsable(true),
Category("JQuery Accordion() Properties"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Scroll to Top on Activate"),
WebDescription("When set to true, the accordion will stay in view while switching headers.")]
public bool dataScrollToTop { get; set; }
[WebBrowsable(true),
Category("JQuery Accordion() Properties"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Collapsible"),
WebDescription("When set to true, the active panel can be closed.")]
public bool dataCollapsible { get; set; }
[WebBrowsable(true),
Category("JQuery Accordion() Properties"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Disabled"),
WebDescription("If set the accordion will be disabled.")]
public bool dataDisabled { get; set; }
[WebBrowsable(true),
Category("JQuery Accordion() Properties"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Event"),
WebDescription("The type of event that the headers should react to activate the panel. (event in quotations and comma seperated)")]
public string dataEvent { get; set; }
public enum dataHeightStyleOptions { auto, fill, content }
[WebBrowsable(true),
Category("JQuery Accordion() Properties"),
Personalizable(PersonalizationScope.Shared),
WebDisplayName("Height Style"),
WebDescription("Controls the heigh of the accordion widget and each panel.")]
public dataHeightStyleOptions dataHeightStyle { get; set; }
#endregion
protected override void Render(HtmlTextWriter writer)
if (includejQuery)
writer.WriteLine("<script src=\"//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js\"></script>");
if (includejQueryUI)
writer.WriteLine("<script src=\"//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js\"></script>");
if (includejQueryUICSS)
writer.WriteLine("<script language=\"javascript\">$('head').append('<link rel=\"stylesheet\" href=\"//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css\" />');</script>");
if (includeSPAccordionsScript)
writer.WriteLine("<script language=\"javascript\">$(document).ready(function(){if((document.getElementById(\"MSOLayout_InDesignMode\").value==1)?false:true){$(\".spaccordions\").spaccordions()}});(function(a){a.fn.spaccordions=function(){var e=a(this).data(),b={active:(e.active)?e.active:0,collapsible:(e.collapsible==1)?true:false,disabled:(e.disabled)?e.disabled:false,heightStyle:(e.heightstyle)?e.heightstyle:\"auto\",event:(e.event)?e.event:\"click\"};if(e.scrolltotop){b.activate=function(g,l){var k;if(l.newHeader.length==1){k=a(l.newHeader[0])}else{k=a(this).find(\".ui-accordion-header\").eq(0)}var i=a(window).height();var o=(a(window).scrollTop()==0)?a(\"#s4-workspace\").scrollTop():a(window).scrollTop();var h=k.height();var j=k.offset().top;var m=a(\"#s4-ribbonrow\").height();var n=j+o-m;console.log(\"elementScrollY \"+j);console.log(\"screenY \"+i);if(j>=m&&j<=i){}else{a(window).scrollTop(n);a(\"#s4-workspace\").scrollTop(n)}}}var f=a(this).parents(\"table\").eq(1);var d=a('<div class=\"accordion\">');if(e.width>0){d.width(e.width)}var c=a(\"\");a(this).parents(\"tr\").eq(1).remove();f.find(\".s4-wpTopTable\").each(function(h){var g=a(this).find(\" > tbody > tr > td\");c=c.add(\"<h3>\"+a(g[0]).find(\".ms-WPTitle\").text().trim()+\"</h3>\");c=c.add(\"<div>\"+a(g[1]).html()+\"</div>\")});d.append(c);f.before(d);f.hide();d.accordion(b);return this}})(jQuery);</script>");
writer.WriteBeginTag("div");
writer.WriteAttribute("class", "spaccordions");
// build custom jquery Accordion() options
if (!isEmptyorNull(Convert.ToString(dataWidth.ToString())))
writer.WriteAttribute("data-width", dataWidth.ToString());
if (!isEmptyorNull(Convert.ToString(dataActive)))
writer.WriteAttribute("data-active", dataActive.ToString());
if (!isEmptyorNull(Convert.ToString(dataCollapsible)))
writer.WriteAttribute("data-collapsible", Convert.ToString(dataCollapsible).ToLower());
if (!isEmptyorNull(dataDisabled.ToString()))
writer.WriteAttribute("data-disabled", dataDisabled.ToString());
if (!isEmptyorNull(dataEvent))
writer.WriteAttribute("data-event", dataEvent);
if (!isEmptyorNull(Convert.ToString(dataHeightStyle)))
writer.WriteAttribute("data-heightstyle", dataHeightStyle.ToString());
if (!isEmptyorNull(Convert.ToString(dataScrollToTop)))
writer.WriteAttribute("data-scrolltotop", Convert.ToString(dataScrollToTop).ToLower());
writer.Write(HtmlTextWriter.TagRightChar);
writer.WriteEndTag("div");
writer.WriteLine("<p>Use the web part properties menu to configure options for <a href=\"http://jqueryui.com/accordion/\" target=\"_blank\">jQuery UI Accordion</a>.</p>");
base.Render(writer);
protected void Page_Load(object sender, EventArgs e)
public bool isEmptyorNull(string value)
if (string.IsNullOrEmpty(value) || value == "0")
return true;
return false;
Now can anyone recommend how I could solve this issue? I'm not a back-end programmer :/.
Error after Post:
Web Part Error: Unhandled exception was thrown by the sandboxed code wrapper's Execute method in the partial trust app domain: An unexpected error has occurred.
Show Error Details
Debugger doesn't show anything so I know it wasn't reaching my code.

Hi,
What the last configuration option did you add?
Try to disable the ViewState of the .Net control in the web part.
Or
Add following into web.config(C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\ 14\UserCode) to avoid sandbox webpart error after post back.
<httpRuntime requestLengthDiskThreshold=”4096” /> (or set value as per your requirement)
Here is a blog for you to take a look at:
http://sohilmakwana.wordpress.com/2013/11/29/sandbox-error-unhandled-exception-was-thrown-by-the-sandboxed-code-wrappers-execute-method-in-the-partial-trust-app-domain/
If you want to achieve an Accordion web part, the following links for your reference:
http://altfo.wordpress.com/2013/06/18/jquery-accordion-based-announcement-web-part/
http://fitandfinish.ironworks.com/2010/02/how-to-create-an-accordion-web-part.html
Thanks,
Dennis Guo
TechNet Community 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]
Dennis Guo
TechNet Community Support

Similar Messages

  • BW Web Report Issue - Result set too large

    Hi,
    When I execute a BEx Query on Web I am getting “Result set too large ; data retrieval restricted by configuration (maximum = 500000 cells)”.
    Following to my search in SDN I understood we can remove this restriction either across the BW system globally or for a specific query at WAD template.
    In my 7x Web template I am trying to increase default max no of rows parameters, As per the below inputs from SAP Note: 1127156.
    But I can’t find parameter “Size Restriction for Result Sets” for any of the web items (Analysis/Web Template properties/Data Provider properties)….in the WAD Web template
    Please advise where/how can I locate the properites
    Instructions provided in SAP Note…
    The following steps describe how to change the "safety belt" for Query Views:
    1. Use the context menu Properties / Data Provider in a BEx Web Application to maintain the "safety belt" for a Query View.
    2. Choose the register "Size Restriction for Result Sets".
    3. Choose an entry from the dropdown box to specify the maximum number of cells for the result set.
                  The following values are available:
    o Maximum Number
    o Default Number
    o Custom-Defined Number
                  Behind "Maximum Number" and "Default Number" you can find the current numbers defined in the customizing table RSADMIN (see below).
    4. Save the Query View and use it in another Web Template.
    Thanks in advance

    Hi Yasemin,
    Thanks for all help...i was off couple of days.
    To activate it I can suggest to create a dummy template, add your query in it, add a menu bar component add an action to save the query view. Then you run the template and change the size restriction for result set then you can save it by the menu.
    Can you please elaborate on the solution provided,I created dummy template with analysis and Menu bar item...i couldn't able to configure menu bar item...
    Thanks in advance

  • Query is allocating too large memory error in OBIEE 11g

    Hi ,
    We have one pivot table(A) in our dashboard displaying , revenue against a Entity Hierarchy (i.e we have 8 levels under the hierarchy) And we have another pivot table (B) displaying revenue against a customer hierarchy (3 levels under it) .
    Both tables running fine under our OBIEE 11.1.1.6 environment (windows) .
    After deploying the same code (RPD&catalog) in a unix OBIEE 11.1.1.6 server , its throwing the below error ,while populating Pivot table A :
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    *State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 96002] Essbase Error: Internal error: Query is allocating too large memory ( > 4GB) and cannot be executed. Query allocation exceeds allocation limits. (HY000)*
    But , pivot table B is running fine . Help please !!!!!
    data source used : essbase 11.1.2.1
    Thanks
    sayak

    Hi Dpka ,
    Yes ! we are hitting a seperate essbase server with Linux OBIEE enviorement .
    I'll execute the query in essbase and get back to you !!
    Thanks
    sayak

  • I have a 500 GB hard drive and a 1TB Time Capsule running on a MacBook Pro.  It was all working well until the MacBook went in for a repair a week or so ago.  Since then, TC will not perform a backup;  instead, it says the backup is too large for the disk

    Since having my MacBook Pro repaired (for a video problem) Time Capsule returns the following message:  "This backup is too large for the backup disk. The backup requires 428.08 GB but only 192.14 GB are available."
    I notice that there is also a new sparse bundle.
    Since TC has my ONLY backup (going back about 4 years) I am reluctant to wipe it and start over fresh as I am afraid of losing files. 
    Is there a way of dealing with this?
    I am using Snow Leopard 10.6.8

    The repair shop likely replaced a major circuit board on your MacBook Pro, so Time Machine thinks that you have a "new" computer and it wants to make a new complete backup of your Mac.
    You are going to have to make a decision to either add another new Time Capsule....or USB drive to your existing Time Capsule....and in effect start over with a new backup of your Mac and then move forward again.
    For "most" users, I think this is probably the best plan because you preserve all your old backups in case you need them at some point, and you start over again with a new Time Capsule so you have plenty of room for years of new backups.
    Or, as you have mentioned, you have the option of erasing the Time Capsule drive and starting all over again. The upside is that you start over and have plenty of room for new backups. The downside is that you lose years of backups.
    Another option....trying to manually delete old backups individually....is tricky business....and very time consuming. To get an idea of what is involved here, study this FAQ by Pondini, our resident Time Capsule and Time Machine expert on the Community Support area. In particular, study the pink box.
    http://web.me.com/pondini/Time_Machine/12.html
    Once you look through this, I think you may agree that this type of surgery is not for the faint of heart.  I would suggest that you consider this only if one of the other options just cannot work for you.

  • Since upgrade to iOS 7 Email error on over 100KB emails "Cannot Send Mail  The message was rejected by the server because it is too large." Connecting to Exchange via Activesync

    Hi,
    Following the upgrade to iOS 7.0.3 on all our iPhone and iPad devices, it has been identified that when sending emails around 100KB in size and over an error message appears on the device stating “Cannot Send Mail  The message was rejected by the server because it is too large.” See error message below. The send/receive limit is over 10MB so this is not the issue.
    We are in an Exchange Environment using Microsoft Activesync. This issue is not evident in iOS 6. This has been tested on an iPhone 3GS running version iOS 6.1.3. We have been unable to repeat the issues seen on iOS 7 on the older OS. It is not possible to roll back to the older operating system as Apple are no longer signing the software.
    We use Microsoft Active Sync to connect to our Exchange servers through a TMG. The issue is very inconsistent, some identical emails go through, some fail. This is not an issue with the send/receive limit as this is over 10MB. The error message when it fails on the TMG is Status: 413 Request Entity Too Large, which we believe is from IIS on the CAS server.
    Does anyone have any suggest course of actions to take?
    Many Thanks

    This resolution have to attend at the server not with the ios device. My employer's mail administrator reject me to correct it from the server. As his concern is, if ither ios devices works why don't mine? So I am helpless than changing my iphone. It works fine for early versions of ios and with androids. And also one of my friends iphone4 with ios 7 (similar as mine) works too. So I guess it's something wrong with my iPhones settings. But basic question I cannot understand is it works in my phone before this ios7 upgrading. And currently working with my yahoo account too. Favourable reply expected.

  • Error Message "Some content on the PDF is too large to fit on a single page.

    I get the below error when I try to download a response as a .pdf:
    Some content on the PDF is too large to fit on a single page.
    Please go to the "Design Tab" and adjust the contents, the font-size, or divide the flagged items into multiple elements.
    Any ideas?

    Go to the Design Tab and make sure you switch to the Page View (look the bottom right corner of the screen)
    Once you see the Page View (used to see what the PDF will look like for your response) scroll down and you might see which object is being trucated (it will be covered by a red rectangle). This often happen if you have a element that is too big to fit on one page (like a single or multi choice field).
    You will need to adjust your element so that nothing is trucated.
    Gen

  • ACROBAT XI Pro -EDIT TOOL SET  - POP-UP WINDOW IS TOO LARGE

    Good Day -
    I've been experiencing very nagging problem since installing recent Acrobat Xi Pro uodate (on windows 7 system):
    Specifically - I cannot edit/change the TOOL SET to include needed TOOLS (i.e., that were all previously in my Tool set) as the EDIT TOOL SET WINDOW (i.e., pop-up
    window) is TOO LARGE and does not allow scrolling/ or moving down to SAVE  any tool sets and or tool set changes. Very frustrating as all attempts (and recommendations from reviews/support) for decreasing the size of EDIT TOOL SET WINDOW (popup) in order to save (i.e. include ANY) tools have been unsuccessful.  So for past week I've been unable to include/use any TOOLS for working in (i.e., editing/commenting etc) pdf's.  Has anyone else experienced this problem?  Would greatly appreciate any / all steps & recommendations for fixing.
    Thank-you!

    First, make sure you are on the latest update 11.0.09. Help->check for updates should get you there.
    If check for updates says that you have the latest, see if the setting: Edit->Settings->General->Basic Tools->Scale for screen resolution and try various options (you'll have to restart Acrobat with each selection)

  • Cannot decrypt RSA encrypted text : due to : input too large for RSA cipher

    Hi,
    I am in a fix trying to decrypt this RSA encrypted String ... plzz help
    I have the encrypted text as a String.
    This is what I do to decrypt it using the Private key
    - Determine the block size of the Cipher object
    - Get the array of bytes from the String
    - Find out how many block sized partitions I have in the array
    - Encrypt the exact block sized partitions using update() method
    - Ok, now its easy to find out how many bytes remain (using % operator)
    - If the remaining bytes is 0 then simply call the 'doFinal()'
    i.e. the one which returns an array of bytes and takes no args
    - If the remaining bytes is not zero then call the
    'doFinal(byte [] input, int offset, in inputLen)' method for the
    bytes which actually remained
    However, this doesnt work. This is making me go really crazy.
    Can anyone point out whats wrong ? Plzz
    Here is the (childish) code
    Cipher rsaDecipher = null;
    //The initialization stuff for rsaDecipher
    //The rsaDecipher Cipher is using 256 bit keys
    //I havent specified anything regarding padding
    //And, I am using BouncyCastle
    String encryptedString;
    // read in the string from the network
    // this string is encrypted using an RSA public key generated earlier
    // I have to decrypt this string using the corresponding Private key
    byte [] input = encryptedString.getBytes();
    int blockSize = rsaDecipher.getBlockSize();
    int outputSize = rsaDecipher.getOutputSize(blockSize);
    byte [] output = new byte[outputSize];
    int numBlockSizedPartitions = input.length / blockSize;
    int numRemainingBytes = input.length % blockSize;
    boolean hasRemainingBytes = false;
    if (numRemainingBytes > 0)
      hasRemainingBytes = true;
    int offset = 0;
    int inputLen = blockSize;
    StringBuffer buf = new StringBuffer();
    for (int i = 0; i < numBlockSizedPartitions; i++) {
      output = rsaDecipher.update(input, offset, blockSize);
      offset += blockSize;
      buf.append(new String(output));
    if (hasRemainingBytes) {
      //This is excatly where I get the "input too large for RSA cipher"
      //Which is suffixed with ArrayIndexOutofBounds
      output = rsaDecipher.doFinal(input,offset,numRemainingBytes);
    } else {
      output = rsaDecipher.doFinal();
    buf.append(new String(output));
    //After having reached till here, will it be wrong if I assumed that I
    //have the properly decrypted string ???

    Hi,
    I am in a fix trying to decrypt this RSA encrypted
    String ... plzz helpYou're already broken at this point.
    Repeat after me: ciphertext CANNOT be safely represented as a String. Strings have internal structure - if you hand ciphertext to the new String(byte[]) constructor, it will eat your ciphertext and leave you with garbage. Said garbage will fail to decrypt in a variety of puzzling fashions.
    If you want to transmit ciphertext as a String, you need to use something like Base64 to encode the raw bytes. Then, on the receiving side, you must Base64-DEcode back into bytes, and then decrypt the resulting byte[].
    Second - using RSA as a general-purpose cipher is a bad idea. Don't do that. It's slow (on the order of 100x slower than the slowest symmetric cipher). It has a HUGE block size (governed by the keysize). And it's subject to attack if used as a stream-cipher (IIRC - I can no longer find the reference for that, so take it with a grain of salt...) Standard practice is to use RSA only to encrypt a generated key for some symmetric algorithm (like, say, AES), and use that key as a session-key.
    At any rate - the code you posted is broken before you get to this line:byte [] input = encryptedString.getBytes();Go back to the encrypting and and make it stop treating your ciphertext as a String.
    Grant

  • Mac Mini display is too large for screen on only one user account

    Okay, so I left my two year olds alone for a minute playing the "alphabet game" on my Mac Mini. They only had the keyboard, no mouse but managed to muck up my display leaving me a bit frustrated.  The screen is now too large for my Samsung display. The only way to see everything (dock, top bar, etc) is to move my mouse arrow to the end of my display and see it roll back onto the page.  I've checked the settings there and they are fine. The MacBook Pro plugs right in and is proper resolution. So I then wondered if another account on the Mac Mini would do the same thing. I logged out of my Admin account and into another and everything looks just dandy. I log back into my Admin account and it's too large and blurry again. The resolution is set correct at 1920x1080 at 60 Hz.
    What button did they push on my keyboard that would do this and how do I get it back?? Aargh! Thanks all!

    Ha, figured it out myself from another discussion forum finally. Thoght I'd share in case anyone else runs into this. They must have hit "Zoom" by htting the "Control" and scroll buttons at the same time..
    Resolution:
    You can zoom out by holding down the Option and Command buttons on the keyboard and, while you hold them down, pressing the - key. 

  • I am trying to download my paid for Elements 13 upgrade. When I click on the "download" button, I recieve this message: 413  Header Length too Large

    I am trying to download my paid for Elements 13 upgrade. When I click on the "download" button, I receive this message: 413  Header Length too Large.  Help?

    You can download using direct download link , which I had provided.
    Download Photoshop Elements products | 13, 12, 11, 10
    During installation , when prompted enter serial number and proceed with the installation .
    If you had purchased upgrade serial number.
    First enter Photoshop Elements 13 serial number .
    Then it will ask for previous qualifying version serial number.
    From the drop down list , select Photoshop Elements 12 and then enter Photoshop Elements 12 serial number 

  • Page header plus page footer too large for the page in crystal report 2008.

    Hi,
    when we selecting pieview and print after entering paramter it's showing error: page header plus page footer too large for the page. error in File.rpt page header or page footer loanger than page. and it's not showing print layout format if i connect another printer it's showing layout designe. and some times it's showing letter formate and if i give print it's taking default lamdscape but we setup defual setup for printer 10*12 inches in particular printer.please guide me how we can solve this issues.
    regds,
    samapth

    This is a really hard post to read. See if you can take a bit of time to reword it, but one thing I do understand is that you are getting this error:
    page header plus page footer too large for the page.
    Typically, you can trust that if the error is thrown, it is true. E.g.; this is not one of those errors that says one thing, and means another. I suspect that you have some field(s) in the header(s) that grow, depending on the data. If there is too much data or the data is too long ( a text for example), the error will be thrown. To resolve this, see if placing the field(s) into a group footer / header will help.
    Ludek

  • ERROR : OpenDoc CR to PDF - File is too large for attachment.

    We are getting the following error in 3.1 using an OpenDoc call when we call a large Crystal Report to PDF format...
    Error : 52cf6f8f4bbb6d3.pdf File is too large for attachment.
    It runs OK from BOE when given parameters that returned 44 pages. (PDF = 139 KB)
    We get the error on a parameter-set that returns 174 pages when run via CR Desktop or as a SCHEDULED Instance. (PDF = 446 KB).
    Client application can't use the SDKs to SCHEDULE Instances - only configured for OpenDoc calls.....
    The BOE server is running on SOLARIS - and it's is a 2 Server CMS-Cluster.
    The problem is SPORADIC, so I am thinking the issue is related to a specific setting on one of the servers.
    Any thoughts on where to start looking...?

    Problem is _not _with the number of Rows returned - it is an issue with the size of the PDF file that it is trying to move.
    Found a possible WINDOWS solution on BOB - need to find if there is an equivalent for SOLARIS...
    Check the dsws.properties on web server D:\Program Files\Business Objects\Tomcat55\webapps\dswsbobje\WEB-INF\classes
    See if you can change any parameter to remove size limitation.
    #Security measure to limit total upload file size
    maximumUploadFileSize = 10485760

  • Rep-1813:object r_supp_name too large to fix in matrix cell.

    hi all,
    im getting an issue while running orale report.
    i used layout model as matrix.
    im getting error as:
    rep-1813:object r_supp_name too large to fix in matrix cell.
    r_supp_name is repeating frame of supplier_name field.
    i had already set maximum number of records but still my issue not solved.
    im unable to rectify it anyone please help me.
    thanks,

    Dear,
    I am facing the same problem my question is that you resolve your issue about REP-1813 or still pending if solved kindly share with us.
    Regards,
    K.J.J.C

  • SQL Error: ORA-12899: value too large for column

    Hi,
    I'm trying to understand the above error. It occurs when we are migrating data from one oracle database to another:
    Error report:
    SQL Error: ORA-12899: value too large for column "USER_XYZ"."TAB_XYZ"."COL_XYZ" (actual: 10, maximum: 8)
    12899. 00000 - "value too large for column %s (actual: %s, maximum: %s)"
    *Cause:    An attempt was made to insert or update a column with a value
    which is too wide for the width of the destination column.
    The name of the column is given, along with the actual width
    of the value, and the maximum allowed width of the column.
    Note that widths are reported in characters if character length
    semantics are in effect for the column, otherwise widths are
    reported in bytes.
    *Action:   Examine the SQL statement for correctness.  Check source
    and destination column data types.
    Either make the destination column wider, or use a subset
    of the source column (i.e. use substring).
    The source database runs - Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    The target database runs - Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    The source and target table are identical and the column definitions are exactly the same. The column we get the error on is of CHAR(8). To migrate the data we use either a dblink or oracle datapump, both result in the same error. The data in the column is a fixed length string of 8 characters.
    To resolve the error the column "COL_XYZ" gets widened by:
    alter table TAB_XYZ modify (COL_XYZ varchar2(10));
    -alter table TAB_XYZ succeeded.
    We now move the data from the source into the target table without problem and then run:
    select max(length(COL_XYZ)) from TAB_XYZ;
    -8
    So the maximal string length for this column is 8 characters. To reduce the column width back to its original 8, we then run:
    alter table TAB_XYZ modify (COL_XYZ varchar2(8));
    -Error report:
    SQL Error: ORA-01441: cannot decrease column length because some value is too big
    01441. 00000 - "cannot decrease column length because some value is too big"
    *Cause:   
    *Action:
    So we leave the column width at 10, but the curious thing is - once we have the data in the target table, we can then truncate the same table at source (ie. get rid of all the data) and move the data back in the original table (with COL_XYZ set at CHAR(8)) - without any issue.
    My guess the error has something to do with the storage on the target database, but I would like to understand why. If anybody has an idea or suggestion what to look for - much appreciated.
    Cheers.

    843217 wrote:
    Note that widths are reported in characters if character length
    semantics are in effect for the column, otherwise widths are
    reported in bytes.You are looking at character lengths vs byte lengths.
    The data in the column is a fixed length string of 8 characters.
    select max(length(COL_XYZ)) from TAB_XYZ;
    -8
    So the maximal string length for this column is 8 characters. To reduce the column width back to its original 8, we then run:
    alter table TAB_XYZ modify (COL_XYZ varchar2(8));varchar2(8 byte) or varchar2(8 char)?
    Use SQL Reference for datatype specification, length function, etc.
    For more info, reference {forum:id=50} forum on the topic. And of course, the Globalization support guide.

  • TIme Machine  backup grows too large during backup process

    I have been using Time Machine without a problem for several months, backing up my imac - 500GB drive with 350g used. Recently TM failed because the backups had finally filled the external drive - 500GB USB. Since I did not need the older backups, I reformatted the external drive to start from scratch. Now TM tries to do an initial full backup but the size keeps growing as it is backing up, eventually becoming too large for the external drive and TM fails. It will report, say, 200G to back up, then it reaches that point and the "Backing up XXXGB of XXXGB" just keeps getting larger. I have tried excluding more than 100GB of files to get the backup set very small, but it still grows during the backup process. I have deleted plist and cache files as some discussions have suggested, but the same issue occurs each time. What is going on???

    Michael Birtel wrote:
    Here is the log for the last failure. As you see it indicates there is enough room 345g needed, 464G available, but then it fails. I can watch the backup progress, it reaches 345G and then keeps growing till it give out of disk space error. I don't know what "Event store UUIDs don't match for volume: Macintosh HD" implies, maybe this is a clue?
    No. It's sort of a warning, indicating that TM isn't sure what's changed on your internal HD since the previous backup, usually as a result of an abnormal shutdown. But since you just erased your TM disk, it's perfectly normal.
    Starting standard backup
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Ownership is disabled on the backup destination volume. Enabling.
    2009-07-08 19:37:53.659 FindSystemFiles[254:713] Querying receipt database for system packages
    2009-07-08 19:37:55.582 FindSystemFiles[254:713] Using system path cache.
    Event store UUIDs don't match for volume: Macintosh HD
    Backup content size: 309.5 GB excluded items size: 22.3 GB for volume Macintosh HD
    No pre-backup thinning needed: 345.01 GB requested (including padding), 464.53 GB available
    This is a completely normal start to a backup. Just after that last message is when the actual copying begins. Apparently whatever's happening, no messages are being sent to the log, so this may not be an easy one to figure out.
    First, let's use Disk Utility to confirm that the disk really is set up properly.
    First, select the second line for your internal HD (usually named "Macintosh HD"). Towards the bottom, the Format should be +Mac OS Extended (Journaled),+ although it might be +Mac OS Extended (Case-sensitive, Journaled).+
    Next, select the line for your TM partition (indented, with the name). Towards the bottom, the Format must be the same as your internal HD (above). If it isn't, you must erase the partition (not necessarily the whole drive) and reformat it with Disk Utility.
    Sometimes when TM formats a drive for you automatically, it sets it to +Mac OS Extended (Case-sensitive, Journaled).+ Do not use this unless your internal HD is also case-sensitive. All drives being backed-up, and your TM volume, should be the same. TM may do backups this way, but you could be in for major problems trying to restore to a mis-matched drive.
    Last, select the top line of the TM drive (with the make and size). Towards the bottom, the *Partition Map Scheme* should be GUID (preferred) or +Apple Partition Map+ for an Intel Mac. It must be +Apple Partition Map+ for a PPC Mac.
    If any of this is incorrect, that's likely the source of the problem. See item #5 of the Frequently Asked Questions post at the top of this forum for instructions, then try again.
    If it's all correct, perhaps there's something else in your logs.
    Use the Console app (in your Applications/Utilities folder).
    When it starts, click +Show Log List+ in the toolbar, then navigate in the sidebar that opens up to your system.log and select it. Navigate to the +Starting standard backup+ message that you noted above, then see what follows that might indicate some sort of error, failure, termination, exit, etc. (many of the messages there are info for developers, etc.). If in doubt post (a reasonable amount of) the log here.

Maybe you are looking for

  • Bootcamp and windows

    hey i want to install windows xp on my mac and when i try partitioning the disk for a 10GB windows space, it tells me that it cant't partition because "some files can't be moved". it says i need to run disk utility and partition/format my HD as a sin

  • solved pls help needed in creating template

    hi frs i have created a template need some modification to be done my xml output looks like below off            hours              q1           q2          q3         avg aaa          10                    1            2            3            2 bb

  • 10.8.4 upgrade stuck

    My "Software Update..." tells me I need to upgrade to 10.8.4 (I'm currently on 10.8.3 on a Macbook Pro).  I click Install and am told to restart, which I do.  And when I get back from restarting, I'm still told to upgrade to 10.8.4.  For some reason,

  • After Effects CC Crashed after starting up

    Hello. I'm experiencing crashes shortly after i start up After Effects CC. Was working fine in the past 3 days. Please help me! Here's the image of the crash error: PS: I've tried reinstalling AE, uninstalled quicktime, deleting cache.

  • Opinions please: Multiple libraries

    Hi, Please give me your opinion if you have some experience of libraries What's the best solution for multiple libraries. I can see there are a number of solutions. I have not the money to buy them all or spend ages trying them all out, and I don't k