Problem with ffmpeg: "lame: output buffer too small"

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 15.00 (15/1)
Input #0, flv, from 'cEoVBVBCkGI.flv':
Duration: 00:09:31.06, start: 0.000000, bitrate: 305 kb/s
Stream #0.0: Video: flv, yuv420p, 320x240, 241 kb/s, 15 tbr, 1k tbn, 1k tbc
Stream #0.1: Audio: mp3, 22050 Hz, mono, s16, 64 kb/s
File 'pluxus.mp3' already exists. Overwrite ? [y/N] y
Output #0, mp3, to 'pluxus.mp3':
Stream #0.0: Audio: libmp3lame, 22050 Hz, mono, s16, 64 kb/s
Stream mapping:
Stream #0.1 -> #0.0
Press [q] to stop encoding
[mp3 @ 0x814b270]mdb:255, lastbuf:0 skipping granule 0
[mp3 @ 0x814b270]mdb:255, lastbuf:196 skipping granule 0
[libmp3lame @ 0x814c760]lame: output buffer too small (buffer index: 9404, free bytes: 388)
Audio encoding failed
[n00b@asrock Music]$
Any ideas?

Hi to all!
I've uploaded lame-3.97-1 package to AUR. You will have to delete gstreamer0.10-ugly-plugins because it needs lame-3.98.2.
http://aur.archlinux.org/packages.php?ID=366

Similar Messages

  • I/O Error ioe: Output buffer too small

    I am currently running an FTP process from within the database using a Java stored procedure attempting to send about 199 rows. I am receiving the error message i/o error ioe: Output buffer too small.
    If I reduce the number of rows to below 83, I can successfully complete, however, any number over 83, and the technical problem occurs.
    Is there an Oracle Parameter in the init.ora file that I can modify to increase the amount of data sent... (BTW.. 82 Rows is approximately 8K of data)
    Thanks,
    wn

    I am currently running an FTP process from within the database using a Java stored procedure attempting to send about 199 rows. I am receiving the error message i/o error ioe: Output buffer too small.
    If I reduce the number of rows to below 83, I can successfully complete, however, any number over 83, and the technical problem occurs.
    Is there an Oracle Parameter in the init.ora file that I can modify to increase the amount of data sent... (BTW.. 82 Rows is approximately 8K of data)
    Thanks,
    wn

  • A procedure with a buffer too small problem

    hey!
    while running a procedure for loading data from csv file into a db table (on 9i db),
    i got the error "ORA-06502: PL/SQL: numeric or value error: character string buffer too small".
    It's make scense since i have a large csv file (2 columns ,about 30,000 rows , containing 1 to 5 length number in each cell) .
    My question: Is there any way to enlarge the buffer capacity in order to deal with such a large volume of data?
    or any other way to fix the proc?
    (of caurse now the buffer is set to max.).
    thanks
    yair

    Is there any way to enlarge the buffer capacity in order to deal with such
    a large volume of data?It's not the total volume of your data. Somewhere you are trying to fit a string into too small a column or variable....
    SQL> declare
      2      n number(4,0);
      3  begin
      4      n := &fourdigits;
      5  end;
      6  /
    Enter value for fourdigits: 1234
    old   4:     n := &fourdigits;
    new   4:     n := 1234;
    PL/SQL procedure successfully completed.
    SQL> r
      1  declare
      2      n number(4,0);
      3  begin
      4      n := &fourdigits;
      5* end;
    Enter value for fourdigits: 12345
    old   4:     n := &fourdigits;
    new   4:     n := 12345;
    declare
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: number precision too large
    ORA-06512: at line 4
    SQL> declare
      2      v varchar2(4);
      3  begin
      4      v := &fourdigits;
      5  end;
      6  /
    Enter value for fourdigits: 1234
    old   4:     v := &fourdigits;
    new   4:     v := 1234;
    PL/SQL procedure successfully completed.
    SQL> r
      1  declare
      2      v varchar2(4);
      3  begin
      4      v := &fourdigits;
      5* end;
    Enter value for fourdigits: 12345
    old   4:     v := &fourdigits;
    new   4:     v := 12345;
    declare
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at line 4
    SQL> Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • Wrong forum!!!  character string buffer too small problem

    Hi,
    I'm using a pl/sql procedure which builds a string held by a VARCHAR2 variable, however i've just discovered that in certain situations this string exceeds 2000 characters and i get this error:-
    ORA-20500: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    How can i stop this from happening. Do i need to use another datatype??
    PROCEDURE p_build_string(p_string_to_build IN OUT VARCHAR2
    ,p_string_to_add IN VARCHAR2
    ,p_delimiter IN VARCHAR2) IS
    BEGIN
    /* initialise string */
    IF INSTR(p_string_to_add,'''') <> 0 THEN
    IF p_string_to_build IS NULL THEN
    p_string_to_build := ''''||REPLACE(p_string_to_add,'''','''''')||'''';
    l_number_of_string_items := 1;
    ELSE
    p_string_to_build := p_string_to_build||p_delimiter||''''||REPLACE(p_string_to_add,'''','''''')||'''';
    l_number_of_string_items := l_number_of_string_items + 1;
    END IF;
    ELSE
    IF p_string_to_build IS NULL THEN
    p_string_to_build := ''''||p_string_to_add||'''';
    l_number_of_string_items := 1;
    ELSE
    p_string_to_build := p_string_to_build||p_delimiter||''''||p_string_to_add||'''';
    l_number_of_string_items := l_number_of_string_items + 1;
    END IF;
    END IF;
    dbms_output.put_line(l_number_of_string_items || ' ' ||p_string_to_build);
    END;
    Message was edited by:
    david_wood

    I'm not suggesting this is your problem, but
    select status
    into v_status,
    from registration_offender_xref But you have declared
          v_status  varchar2(10);Much better to declare things like this
          v_status  registration_offender_xref.status%type;That way you know your variable is declared with a proper length, if the column length ever changes ... your code doesn't go kaboom.
    Cheers,

  • Character string buffer too small problem

    hi, guys:
    I have a question that may be silly, I got error "ORA-06502: PL/SQL: numeric or value error: character string buffer too small" when I run a query. if I uncomment "and rox.status='Active'" condition, I do not have the error. I guess it is related to some specific rows. I checked online, it looks the length of some varchar2 variable is not enough, but I just cannot find cause. I also notice there might be an error about v_level in the function, I should use number instead of varchar2 type. but after I changed the type of v_level, the error is still there. I would be cautious as this is a legacy system. Could anyone help me on this problem?
    I have a query like this:
    select *
    from registration_offender_xref rox
    where SOR_OFFENDER_DETAILS.get_offender_level(rox.offender_ID)=3
    --and rox.status='Active'
    and rox.end_registration_date is not null;I get error message as :
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "SORS.SOR_OFFENDER_DETAILS", line 124
    06502. 00000 - "PL/SQL: numeric or value error%s"
    SOR_OFFENDER_DETAILS.get_offender_level return a number value from 1 to 3, or a null value. Here is the code
      function get_offender_level(p_offender_id IN NUMBER) return NUMBER as
          sex_offender_flag number;
          tier_level number;
          override_num number;
          v_status  varchar2(10);
          v_aggravated  varchar2(10);
          v_habitual  varchar2(10);
          v_level  varchar2(10);
          cursor tierNum is  -- as May 22, 2008 per HKT of DOC (past portal code), Level/Tier is displayed for all offenders
                   select max(c.tier)
          from sor_offense o, sor_offense_code c
                   where o.offender_id = p_offender_id
                   and o.OFFENSE_CODE = c.CODE_ID
          and upper(o.status) = 'ACTIVE';
      begin
          select count(*)
          into sex_offender_flag
          from registration_offender_xref rox
          where rox.offender_ID=p_offender_id
          and reg_type_ID=1;
          if sex_offender_flag>0 then
              OPEN tierNum;
              FETCH tierNum INTO v_level;
                if tierNum%NOTFOUND then
                tier_level := null;
                end if;
              CLOSE tierNum;
              select tier_overRide into overRide_Num
              from registration_offender_xref
              where offender_id = p_offender_id
              and reg_type_id = 1;
              if overRide_Num is not null then
                v_level:=overRide_Num;
              end if;
              --dbms_output.put_line('overRide_Num:'||overRide_Num);   
              --dbms_output.put_line('after override:'||p_level);
    /*error line*/        
                select status,  decode(aggravated,'Y','Yes','No') aggravated,
               decode(habitual,'Y','Yes','No') habitual
              into v_status,  v_aggravated, v_habitual
              from registration_offender_xref
              where offender_id = p_offender_id
              and reg_type_id = 1;
                if upper(v_status) in ('COMPLETED', 'DECEASED', 'DELETED') then
                   v_level := null;
                end if;
               --dbms_output.put_line('before final:'||p_level);
                if v_aggravated = 'Yes' or v_habitual = 'Yes' or v_level = 3 then
                   v_level := 3;
                end if;
               --dbms_output.put_line('final:'||p_level);
                if override_num is not null then
                   v_level := overRide_Num;
                end if;   
                   else
                v_level:=null;
          end if;
          return v_level;
      end get_offender_level;Thanks a lot!
    Sam
    Edited by: lxiscas on May 23, 2013 8:38 AM
    Edited by: lxiscas on May 23, 2013 8:41 AM
    Edited by: lxiscas on May 23, 2013 9:01 AM

    I'm not suggesting this is your problem, but
    select status
    into v_status,
    from registration_offender_xref But you have declared
          v_status  varchar2(10);Much better to declare things like this
          v_status  registration_offender_xref.status%type;That way you know your variable is declared with a proper length, if the column length ever changes ... your code doesn't go kaboom.
    Cheers,

  • Character string buffer too small Error !!!

    Hi friends,
    I have a procedure
    procedure sam(x varchar2,id number,val varchar2)
    as
    c number;
    begin
    if(x = 'data') then
    select count(*) int c from emp where ID = id;
    end;
    if(x = 'basic') then
    select count(*) int c from emp where ID = id;
    end if;
    if(c = 0) then
    val:='Yes';
    else
    val:='No';
    end if;
    end;
    There is no problem with the procedure
    Code that calls from C#.net
    OracleCommand cmd = new OracleCommand("TOOLS.CheckPrevData",(OracleConnection)con);
    cmd.CommandType = CommandType.StoredProcedure;
              cmd.Parameters.Add("x",OracleDbType.Varchar2,System.Data.ParameterDirection.Input);
    cmd.Parameters["Filetype"].Value = "data";
    cmd.Parameters.Add("id",OracleDbType.Int32 ,System.Data.ParameterDirection.Input);
    cmd.Parameters["Product_ID"].Value = 123456789;
    OracleParameter param = cmd.Parameters.Add("Val",OracleDbType.Varchar2,System.Data.ParameterDirection.Output);
    cmd.ExecuteNonQuery();
    When i execute the c# code it throws the below exception at cmd.ExecuteNonQuery()
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at "PROC", line 910 ORA-06512: at line 1
    Someone please help me !!!!!

    Hi,
    In the procedure I see this:
    procedure sam(x varchar2,id number,val varchar2)  <=== all "in" parameters (the default)In the C# code I see this:
    cmd.Parameters.Add("Val",OracleDbType.Varchar2,System.Data.ParameterDirection.Output);  <==== Declared as "output"Perhaps something like the following will help:
    procedure sam(x varchar2,id number,val OUT varchar2)Hope that helps a bit,
    Mark

  • BI Publisher Report Query Error: "character string buffer too small"

    Using apex.oracle.com, I am trying to make a Report Query (Shared Components > Report Queries) based on many columns (around 60).
    When I enter my SQL in the "Source Query" Text Area and then click Test Report I get the following error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small In order to try to make the simplest test case possible for this, I then tried entering SQL selecting just from DUAL.
    The following SQL fails with the error mentioned above.
    SELECT
    'wibble' as a
    ,'wibble' as b
    ,'wibble' as c
    ,'wibble' as d
    ,'wibble' as e
    ,'wibble' as f
    ,'wibble' as g
    ,'wibble' as h
    ,'wibble' as i
    ,'wibble' as j
    ,'wibble' as k
    ,'wibble' as l
    ,'wibble' as m
    ,'wibble' as n
    ,'wibble' as o
    ,'wibble' as p
    ,'wibble' as q
    ,'wibble' as r
    ,'wibble' as s
    ,'wibble' as t
    ,'wibble' as u
    ,'wibble' as v
    ,'wibble' as w
    ,'wibble' as x
    ,'wibble' as y
    ,'wibble' as z
    ,'wibble' as ab
    ,'wibble' as ac
    ,'wibble' as ad
    ,'wibble' as ae
    ,'wibble' as af
    ,'wibble' as ag
    ,'wibble' as ah
    ,'wibble' as ai
    ,'wibble' as aj
    ,'wibble' as ak
    ,'wibble' as al
    ,'wibble' as am
    ,'wibble' as an
    ,'wibble' as ao
    ,'wibble' as ap
    ,'wibble' as aq
    ,'wibble' as ar
    ,'wibble' as at
    ,'wibble' as au
    ,'wibble' as av
    FROM dualRemoving the last column from this SQL query (bringing the total number of columns down to 45) as follows and then clicking "Test Report" works successfully.
    SELECT
    'wibble' as a
    ,'wibble' as b
    ,'wibble' as c
    ,'wibble' as d
    ,'wibble' as e
    ,'wibble' as f
    ,'wibble' as g
    ,'wibble' as h
    ,'wibble' as i
    ,'wibble' as j
    ,'wibble' as k
    ,'wibble' as l
    ,'wibble' as m
    ,'wibble' as n
    ,'wibble' as o
    ,'wibble' as p
    ,'wibble' as q
    ,'wibble' as r
    ,'wibble' as s
    ,'wibble' as t
    ,'wibble' as u
    ,'wibble' as v
    ,'wibble' as w
    ,'wibble' as x
    ,'wibble' as y
    ,'wibble' as z
    ,'wibble' as ab
    ,'wibble' as ac
    ,'wibble' as ad
    ,'wibble' as ae
    ,'wibble' as af
    ,'wibble' as ag
    ,'wibble' as ah
    ,'wibble' as ai
    ,'wibble' as aj
    ,'wibble' as ak
    ,'wibble' as al
    ,'wibble' as am
    ,'wibble' as an
    ,'wibble' as ao
    ,'wibble' as ap
    ,'wibble' as aq
    ,'wibble' as ar
    ,'wibble' as at
    ,'wibble' as au
    FROM dualSo the question is: Is there a hard-coded limit of 45 columns for a Source Query? Or is there something else causing this error message?
    (For information in the above example I have "Use Generic Report Layout" selected and the output format set to "PDF")
    Thanks very much in advance for any comments or suggestions,
    Andy

    Thanks for the suggestion Simon.
    I just created a view based on the 46-column SELECT statement from dual above and then set "SELECT * FROM myview" as the Source Query.
    Unfortunately I get exactly the same error.
    Thanks,
    Andy

  • Report error:ORA-06502:character string buffer too small. urgent!!

    Hi guys,
    My APEX version is 3.0.1.00.08, my application run on my test environment, but on PROD environment, it raised the error:
    report error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    In this page, on the left is a tree, the right side is a tabular form, when I click one tree node, it will pass the current node id to the form and the form will display the children data. When I click some tree node, it will raise the ORA-06502 error, but when click some other nodes, it is correct. I don't know why. And on my test environment, it has no this error, the test environment has same version with prod environment, only has less data in database. Could you help me???
    I searched in forum, someone says it's LOV problem, if it's LOV problem, all the nodes should have error, why click some nodes are ok?
    Thanks !
    Jessica

    I don't think it is related only to the number of rows but also to the content of the rows. So, counting only the number of rows doesn't say anything about if it is going to work or not. My question: can't you filter those entries? Making a choice between 250 entries in a tabular form isn't a simple task. Using popup-key LOV instead would also be a solution. However, if you use popup-key LOV be aware of the fact that you need two index numbers for those.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Numeric or value error: character string buffer too small

    Hi,
    I have no problem with this code :
    select htmldb_item.text(3,nom,20) nom,
    htmldb_item.select_list_from_query(9,v_urba_rue.ref_fantoir,'select distinct(nom_voie),v_urba_rue.ref_fantoir from adresse,v_urba_rue where adresse.ref_fantoir(+)=v_urba_rue.ref_fantoir and ref_commune=20 and v_urba_rue.ref_fantoir between 1280 and 1370') rue
    from personne,participe,adresse,v_urba_rue
    where ...
    but when i modify :
    ...and v_urba_rue.ref_fantoir between 1280 and 1400') rue...
    i have this error :
    ORA-06502 PL/SQL: numeric or value error: character string buffer too small
    any solution?
    thank you very much

    Is this the same posting as
    ORA-06502 numeric or value error string

  • Error:numeric or value error : buffer too small

    hi
    can any one please help me?
    i am developing the application in HTMLDB. i have an error numeric or value error: char buffer too small.
    i have an attributes plan_name,type......att_header1 in the database. The data's were inserted to the database, without the att_header item but if i have the item att_header int the HTMLDB then the insertion is not working. and also i was able to insert the data into the database for the field att_header1 through sql command . i think the problem is onle in my HTMLDB application.
    please tell me the solution for this error.
    thanx in advance
    valli
    Message was edited by:
    valli

    Valli,
    I don't think you understood my post, above:
    Can you please create an application that shows the problem on apex.oracle.com? Then we'll be able to see all your code together with the database tables, etc.
    If you do not have a workspace you can request one.
    Please request a workspace on apex.oracle.com. After your workspace request is approved, create an application there that shows this problem you are having. Create the necessary tables, packages, and other database objects in the database to support the example.
    As the last step, post here the workspace name, the application ID, and detailed instructions explaining how to use your application to demonstrate the problem.
    Scott

  • Oracle Report Error (string buffer too small) in Portal

    Hi,
    I have registered an oracle report (.rdf) with portal which works fine outside in Reports Builder, but when I try to run it in Portal it keeps throwing this error:
    SQL-6502: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "PORTAL.WWV_RW_USR", line 444
    ORA-06512: at "PORTAL.WWV_RW_USR", line 923
    ORA-06512: at line 1
    Anyone know what needs to be done to fix this?
    Thanks

    Sean:
    Thank you very much for wading through my post.
    >"if (NIerror = DAQmxCfgInputBuffer(h, numSamples*4))"
    >I would leave this line out. DAQmx should create an input buffer automatically
    >based on the number of channels and number of samples per channel.
    Yeah- I put that in trying to fix the problem. The error message doesn't say *which* buffer is too small
    >If you just call the DAQmxReadDigitalLines() function with "numSampsPerChan" set to -1,
    >DAQmx will wait until all samples are acquired before performing the read.
    I'm trying to avoid the wait. That's why I'm trying to figure out how many samples are ready.
    I suppose I can try numSampsPerChan=-1, set a short timeout and check for the timeout error.
    >If this does not help, please send me a small section of code that reproduces that behavior,
    >and I will try running it on my machine.
    I will try modifying one of the examples to do what I'm trying to do.
    Again, Thank you!
    John Weeks
    WaveMetrics, Inc.
    Phone (503) 620-3001
    Fax (503) 620-6754
    www.wavemetrics.com

  • ORA-6502: PL/SQL: numeric or value error: character string buffer too small WWV-11230

    Hi,
    I'm trying to create an UI Template. I've generated the html using Frontpage and am successfully able to see in a browser.
    I've copied the html to the UI form, but when I try to preview or execute the UI template, I get the following error:
    Error: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWV-11230)
    null

    I AM FACING SIMILAR PROBLEM, THE EXACT ERROR IS:
    Error: Excepcisn de wwv_generate_component.build_procedure (WWV-01821)
    No se ha podido generar la pantalla de interfaz de usuario: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWV-16409)
    (SORRY , PART OF THE ERROR IS IN SPANISH!)
    I CREATED A FORM , WORKED WITH IT A LOT WITHOUT PROBLEMS. NOW I NEED TO DO SOME CHANGES ON CERTAIN FIELDS AND WHEN I TRY TO SAVE IT I GET THE ABOVE ERROR.
    THEN I GO BACK TO AN OLDER VERSION, COPY AND TRY TO DO CHANGES AND AGAIN THE ERROR COMES UP.
    THE CHANGES I AM TRYING TO DO ARE TO SOME OF THE EXISTING FIELDS IN THE FORM WHICH NEED TO BE PUT AS "INSERTABLE".
    THE SCREEN LAYOUT IS DISPLAYED WITHOUT PROBLEM.
    (THE FORM IS BASED ON A TABLE WITH APROX 80 FIELDS).
    I NEED SOME URGENT HELP. PLS LET ME KNOW ANY OTHER INFO YOU MAY NEED TO HELP ME SOLVE THIS PROBLEM.
    FYI I AM WORKING ON PORTAL VERSION 3.0.9 / ON Windows 2000 (DATABASE 8.1.7.0 AND iAS ARE ON DIFFERENT MACHINES).
    TKS IN ADVANCE

  • OLAP -- ORA-6502: numeric or value error: character string buffer too small

    Hi all,
    We got installed Oracle 9201. After applying the patch #2761332 (to upgrade up to 9203)
    and interim patch #2897078 (9203 Patch 1) we always get OLAP Catalog invalid.
    I've tried to mend this problem by doing all it is said in Notes 23268.1 & 226443.1 but
    my effort was worthless. OLAP catalog is still invalid though BI_Checkconfig says is okay at all.
    Nevertheless, we can create dimensions, cubes and measures well, but other problem arises when
    I try to add a dimension to a cube issuing the following command:
    cwm2_olap_cube.add_dimension_to_cube( owner, NAME, owner, DIM_NAME);
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "OLAPSYS.CWM2_OLAP_MANAGER", line 380
    ORA-06512: at "OLAPSYS.CWM2_OLAP_MANAGER", line 397
    ORA-06512: at "OLAPSYS.CWM2_OLAP_CUBE", line 281
    Paying attention to other metalink/otn threads about this subject we found similar problems with
    Oracle 9203 in Japanese (keeping in mind we use Oracle in Spanish).
    Any patch we can apply? Any ideas? Your comments are welcome ...
    Thanks in advanced !!
    [email protected]

    We have fixed the problem !!! :-DDD
    Thanks to all Oracle analysts who replied this issue.
    aLeX
    [email protected]

  • WWV_FLOW_WORKSHEET_CONDITIONS - ORA-06502 character string buffer too small

    Hi,
    I am currently working on a application that can upload CSV files inside many tables. Since I hate reinventing the wheels, I have decided to reverse engineer APEX and APEX APIs that are used by the SQL Workshop to upload CSV files to a single table. Since this feature was tested many times by many developers around the world, I know I can trust the code. If in a future release of APEX those packages are modified, I'll have to update my abstraction layer to call my own packages instead of APEX packages. (This is not an issue for our team.)
    First Step
    Use apex_040000.wwv_flow_load_data.create_csv_collection to create an apex collection with the first 20 rows of the csv file. At this step, we can validate the format of a sample of the file without loading all rows of the csv file.
    Second Step
    Use apex_040000.wwv_flow_load_data.load_csv_data to upload all rows of the csv file inside a table.
    Third Step
    Do whatever you want with the data inside the table. (i.e.: Send the data into multiple tables...)
    Here's my problem..._
    After the first or second steps, I display the data using interactive reports. I want to highlight every cells containing "invalid" data. I use apex_040000.wwv_flow_worksheet_api.add_or_update_highlight. When I have too many invalid cells, the IR doesn't show at run time, and you can see ORA-06502: PL/SQL: numeric or value error: character string buffer too small on the page.
    I would like to know the limitations of IR using the table WWV_FLOW_WORKSHEET_CONDITIONS. Is there a way to create many highlight conditions inside a single row of WWV_FLOW_WORKSHEET_CONDITIONS ? I want to find the best approach to add hundreds of conditions.
    Thanks
    Louis-Guillaume Carrier-Bédard
    My Google+: https://profiles.google.com/lgcarrier
    My Blog: http://www.lgcarrier.com
    Twitter: http://www.twitter.com/lgcarrier
    APEX Québec: http://www.apexquebec.com
    APEXFramework: http://www.apexframework.com

    At run time, when I look at the html source code, I can see all the generated CSS rules to highlight the cells of the IR.
    ie.: *.apexir_WORKSHEET_DATA tr td.rule_5352115461902443_td {background-color:#FF0000 !important;}*

  • Bug: Report Column based on LOV character string buffer too small error

    When using a column type of "Display as Text (based on LOV, does not save state)" with a result set that is rather large causes a character or string buffer too small oracle error.
    See the below page for an example.
    The example page below has a single report off a table called "HUGE_TABLE" which has two columns: display and code
    Code contains a number between 0 and 100000.
    Display contains the number in code appended to a block of text.
    When I display the report with no Display As Text (based on LOV does not save state) it displays fine.
    If I make the "Code" column display as text based on LOV and make the LOV
    "SELECT display, code FROM huge_table"
    I get the error you see on the page.
    http://apex.oracle.com/pls/otn/f?p=32149:1
    Thanks.

    Thanks for your help Scott.
    So from what I've gathered from my own tests and the discussions you linked me to the LOVs based on SQL queries are being converted into "static LOV" strings before being used.
    As such they are limited to the PL/SQL VARCHAR2 max size of 32767
    Which means given the static reduction of the string 'STATIC:' that we have 32760 characters left.
    Which is where your SUM( LENGTH( display ) + LENGTH( return ) + 2 ) comes in.
    In short, if:
    sum( length( display ) + length( return ) + 2 ) + 7 > 32767
    would evaluate to true then you have a problem. :)
    I'll use this to track down my problems and switch them over to inline queries.
    Thanks.
    Cheers,
    Joe

Maybe you are looking for

  • Installer icon present on desktop of macbook pro

    Hi, When i start up my 2010 Macbook Pro an installer disk appears on my desktop asking for my computer admin details. I know it is not genuine so have not put in my details but i was wondering how to remove it. I have tried dragging into the trash bu

  • Maximum length / duration for hinting movies

    Dear all, we have long movies (MPEG-4, 15 fps, 240 x 180). We never succeed to hint for streaming a movie longer than 6h 38m !!! Yes, this seems to be the magic length limit. I does not seem to be depending on the size, as we tried to drasically redu

  • JSP file size

    I'm having trouble running a JSP page, the problem seeemingly caused by the size of the file...If I truncate the JSP and then run it works OK. This is a problem both within my JDeveloper environment and also on the deployed OC4J server. Interestingly

  • Adobe Premiere Pro cs5 has eaten a free space on the hard drive!

    The initial video file was about 1Gb, I needed to cut it and add audio to it. I tried exporting with DV PAL encoding, there was about 15Gb of free space on the hard drive. It took a long time to export and somewhere at 90% it showed the message that

  • For performance purposes

    Hello friends at www.oracle.com , let's suppose you're updating a big set of rows. In this situation, you're updating a row, and going to the next row to update it. If the PL/SQL block meets a situation where its variables will do an useless update -