Inline problem...

Hi,
I have (simplified!) two tables; -
create table gl_balances (cost_centre varchar2(6), balance number);
create table gl_cost_centre_parents (cost_centre varchar2(6), parent_code varchar2(6), parent_type varchar2(255));
I have written a query which ideally would be; -
select bal.cost_centre, parents.parent_code
vfrom gl_balances bal
, gl_cost_centre_parents parents
where bal.cost_centre = parents.cost_centre
and parents.parent_type = 'Corporate'
But, because of 'data limitations' I cannot trust parents has having a 1:1 relationship, so I wind up having to have; -
select bal.cost_centre, parents.parent_code
from gl_balances bal
, (select min(parent_code) parent_code
, cost_centre from
gl_cost_centre_parents
where parent_type = 'Corporate'
group by
cost_centre) parents
where bal.cost_centre = parents.cost_centre(+)
The problem being that where the first query runs in a few minutes, the second runs into rollback segment issues it takes so long.
Given that I am on 9.2 DB - and that I would prefer not to use a materialized view for this, can anyone suggest a better way to achieve the same query as the above?
thanks for your input,
Robert.

Robert Angel wrote:
Sorry, I am a little old fashioned on joins, will
JOIN gl_cost_centre_parents gccp ON gccp.cost_centre = glba.cost_centre
be the same in effect as
glba.cost_centre = gccp.cost_centre(+) in my original query?
No. The first is the ANSI equijoin/theta join. It will only return rows that have entries in both tables.
What my query does is performs the equijoin and then numbers each of the rows starting at 1 for each cost_centre. Then in the outer query I filter it so there is only one entry for each cost_centre. Did I misinterpret your requirements?
EDIT::
Maybe I have a case of the Monday's but I don't believe the two queries in the your original post are equivalent. The first one is an inner join between the gl_balances and gl_cost_centre_parents tables returning a row where there is a matching cost_centre in each. However, in your second query you have an outer join, which will return cost_centre in gl_balances that don't exist in gl_cost_centre_parents.
Edited by: Centinul on Nov 29, 2010 9:28 AM

Similar Messages

  • Inline type of Content-Disposition problem in IE

    Hi,
    In a project, we need post some information from applet to servlet. The servlet will send some files back. We like the files shown on browsers. So we set the header in servlet as
    response.setHeader("Content-Disposition",
    "inline;filename=\"" + fileName + "\"");
    We use JSobject in applet to call form from a html file to post the information to servlet, target of the form is set as "_blank", which suppose will open a new browser and show the file. For example if the file is a word file, the IE will show the file inside browser.
    However, if two files need to be shown, only the first file is shown, the other browser is blank, and when you kill the blank window, the other will turn to blank window too. We test other types of file, xls files have similar problem, the PDF files work OK. Two things can fix the problem, one is set the form method to ��get��, the other is changing the header from ��inline�� to ��attachment��. But we can't use any of them under the project requirement. Has anyone experienced such wield behavior and know the reason? Is this the bug of IE?
    Thanks in advance!

    Here are a little more about the file types.
    The files we test have problems are msword or excel files, I think all MS office type files have the problem. Same problem even you mix them, for example one word file and one excel give you the same problem as two word files.
    However there is no problem if I view several PDF files. If we mix the word file with pdf file. If the first file to view is PDF, then it works OK. Otherwise same problem.
    The browser we are testing IE 6.0 with SP1.

  • Problem with gcc-like inline assembly in cc

    Hi,
    I am trying to compile the following code for a sparc machine using sun studio 12.
    #define MAGIC(n)  asm("sethi %0, %%g0" : :"g"(n));
    int main(int argc, char **argv)
            int x=1;
            MAGIC(x);
            return 0;
    }I am using the following command:
    cc -xO3 -xtarget=ultra2 -m32 -xarch=sparcvis -xregs=no%appl -w test.c -o test
    and I get the following error:
    cg error (as) : "__gnu_asm_inline_fake_test.c (template for __gnu_asm_inline_temp_func_001)", line 1 : statement syntax
    cc: cg failed for test.c
    Isn't Sun cc supposed to support gcc-like inline assembly? If so, what is the problem with the code above?
    Thanks in advance,
    Nick

    Hi,
    we have the same Problem with the inline assembler. We are using Sunstudio 12 on x86 and tried to get this code compiled (Sunstudio 12 should be gas compatible).
    any ideas ?
    thanks
    Dieter
    #define HEC_HTONF(x) \
    (__extension__ \
    register HVB::float32_t __v, __x = (x); \
    __asm__ ( \
    "bswap %0" \
    : "=r" (__v) \
    : "0" (__x) \
    __v; \
    #define HEC_HTONLF_INPLACE(x) \
    __asm__ ( \
    "leal %0, %%ecx \n\t" \
    "movl (%%ecx), %%eax \n\t" \
    "movl 4(%%ecx), %%edx \n\t" \
    "bswap %%eax \n\t" \
    "bswap %%edx \n\t" \
    "movl %%eax, 4(%%ecx) \n\t" \
    "movl %%edx, (%%ecx) \n\t" \
    : "=m" (x) \
    : "m" (x) \
    : "%eax", "%ecx", "%edx" \
    );

  • Problem on opening pdf file in IE inline (through streaming method)

    Hello
              I had a problem opening pdf file at IE through streaming. I create a page
              that have a hyperlink to open the new window and talk to a serlvet. When
              clicked, this serlvet will stream a pdf file from the file server to serlvet
              output stream. And the pdf file will be displayed within the browser.
              The problem comes that I can see the Acrobat Reader trailer screen display
              but the brower show nothing. I click refresh button to that serlvet to
              reload then it come up the content.
              Is anyone have the same trouble on this and any solution will be
              appreciated.
              Rondy Lee
              State Street Australia Ltd.
              

    Hello Rondy,
              You vae set mime type to application/pdf, which is good. But IE doesn't care
              of it !
              And I think your URL is too long because and I'm sure it leads to a buffer
              overflow (as they say at MS in their bug report).
              So as a workaround, you can rename your servlet mapping from Ecd/Download to
              Ecd/Download.pdf if you can, or make the URL length much more smaller.
              Try to go to MS site to find what is the precise bug#. I can't remember what
              it its number.
              I hope you'll find a solution.
              Dom
              "Rondy Lee" <[email protected]> a écrit dans le message news:
              [email protected]...
              > Thanks Dom, I will try to find it out
              >
              > This is the sample URL I used on local host:
              >
              http://ausyd1-wdev-01:7001/Datalightning/Ecd/Download?EcdId=20&Type=I&OpenMo
              > de=O&OutputType=PDF
              >
              > Also, I set content-deposition to "inline" to enforce IE to open the pdf
              > file. Content Type is application/pdf
              >
              > I hope this can tell more information.
              >
              > Rondy.
              >
              > State Street Australia Ltd.
              >
              > "Dominique Jean-Prost" <[email protected]> wrote in message
              > news:[email protected]...
              > > Hello Rondy.
              > >
              > > I already had problems using servlet streaming a pdf file to IE.
              > > What is the exact URL of your servlet ? IE has a bug : it does not care
              of
              > > the mime content you set up (I guess you made it). It only cares of the
              > > extension of the file it ties to read. In your case, I guess there is no
              > > extension because you're using a servlet. To look for the extension, it
              > > search the last dot in the URL, and it may have a problem it the URL is
              > too
              > > long (buffer overflow...).
              > > So you can map your servlet to an url which has a dot in its name, and
              > make
              > > the URL length smaller.
              > > I can't remember the IE bug #id but, it is official at MS.
              > > I hope this will help you.
              > >
              > > dom
              > >
              > > "Rondy Lee" <[email protected]> a écrit dans le message news:
              > > [email protected]...
              > > > Hello
              > > >
              > > > I had a problem opening pdf file at IE through streaming. I create a
              > page
              > > > that have a hyperlink to open the new window and talk to a serlvet.
              When
              > > > clicked, this serlvet will stream a pdf file from the file server to
              > > serlvet
              > > > output stream. And the pdf file will be displayed within the browser.
              > > >
              > > > The problem comes that I can see the Acrobat Reader trailer screen
              > display
              > > > but the brower show nothing. I click refresh button to that serlvet to
              > > > reload then it come up the content.
              > > >
              > > > Is anyone have the same trouble on this and any solution will be
              > > > appreciated.
              > > >
              > > > Rondy Lee
              > > >
              > > > State Street Australia Ltd.
              > > >
              > > >
              > > >
              > > >
              > > >
              > >
              > >
              >
              >
              

  • Code generation problem when inlining

    I've run into an instance of incorrectly generated code. The problem appears to occur when a function is marked in the source with the "inline" or "__inline__" qualifiers but the compiler decides not to inline it. The problem only appears when there is very specific control flow. A reduced program exhibiting this behavior is given below:
    int actual_intr, format, cpl;
    static __inline__ void report(int fno) {
      if (actual_intr) actual_intr = fno;
    void evaluate_M_int_ld(void) {
      int spec = cpl==1 || cpl==3;
      int adv = cpl==2 || cpl == 4;
      int cclear = cpl==8 || cpl==10;
      if (format != 101 && format!=202) report(0);
      if (!spec) actual_intr = 2;
      if (cclear) actual_intr = 3;
    }I compile this program with gcc -O2 -fno-inline -S. Note that the -fno-inline flag is there to prevent inlining from occurring; I can reproduce the behavior without the flag on code examples large enough that the internal compiler rules limit inlining. (But they're way too large to post here.)
    The generated assembly is:
            .global evaluate_M_int_ld
    evaluate_M_int_ld:
            sethi   %hi(format),%o5
            sethi   %hi(cpl),%o4
            ld      [%o5+%lo(format)],%g4
            ld      [%o4+%lo(cpl)],%o5
            cmp     %o5,1
            be,pn   %icc,.L77000052
            cmp     %o5,3
    .L77000051:
            be,pn   %icc,.L77000052
            or      %g0,0,%g3
    .L77000053:
            xor     %o5,8,%o0
    <snipped a bunch of irrelevant stuff here>
    .L77000052:
            retl    ! Result =
            nopSomehow the "spec" calculation is branching to the end of the function. To make the problem even weirder, removing the unused adv variable results in correct compilation. If the __inline__ keyword is left out, the generated code is fine.
    The obvious workaround for now is to use -D__inline__= -Dinline= on all of my compiles.
    The compiler version and tool information is:
    telyn-haul1% gcc -v
    Using built-in specs.
    Target: sparc-sun-solaris2.10
    Configured with: /net/clpt-v490-1/export/data/bldmstr/20070711_mars_gcc/src/configure prefix=/usr/sfw enable-shared with-system-zlib enable-checking=release disable-libmudflap enable-languages=c,c++ enable-version-specific-runtime-libs with-cpu=v9 with-ld=/usr/ccs/bin/ld without-gnu-ld
    Thread model: posix
    gcc version 4.0.4 (gccfss)
    --David                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Adding -W2,-Rcond_elim to the existing flags does make both the small example and the original code compile correctly.
    --David                                                                                                                                                                                                                                                               

  • Problem while using inline view.

    hello everyone, i have a certain problem. i have a query where i have used 3 inline views.which is as follow.
    SELECT X.MC_ID,
    X.PROD,X.EFF,Y.PROD,Y.EFF,Z.PROD,Z.EFF
    FROM
    (SELECT A.MC_ID MC_ID,A.COARSE_FINE,DECODE(A.COARSE_FINE,'F',NVL(A.PRODUCTION,0),0) PROD,
    DECODE(A.COARSE_FINE,'F',(NVL(A.PRODUCTION,0)/NVL(A.FINE_TARGET_PROD,0))* 100,0) EFF
    FROM PR_DAILY_DOFFING_ENTRY A
    WHERE A.SHIFT = 'A'
    AND MC_ID = 24
    AND TO_CHAR(A.DOFFING_DATE,'DD/MM/RRRR') = '28/10/2004') X,
    (SELECT A.MC_ID,A.COARSE_FINE,DECODE(A.COARSE_FINE,'F',NVL(A.PRODUCTION,0),0) PROD,
    DECODE(A.COARSE_FINE,'F',(NVL(A.PRODUCTION,0)/NVL(A.FINE_TARGET_PROD,0))* 100,0) EFF
    FROM PR_DAILY_DOFFING_ENTRY A
    WHERE A.SHIFT = 'B'
    AND MC_ID = 24
    AND TO_CHAR(A.DOFFING_DATE,'DD/MM/RRRR') = '28/10/2004') Y,
    (SELECT A.MC_ID,A.COARSE_FINE,DECODE(A.COARSE_FINE,'F',NVL(A.PRODUCTION,' '),' ') PROD,
    DECODE(A.COARSE_FINE,'F',(NVL(A.PRODUCTION,' ')/NVL(A.FINE_TARGET_PROD,' '))* 100,' ') EFF
    FROM PR_DAILY_DOFFING_ENTRY A
    WHERE A.SHIFT = 'C'
    AND MC_ID = 24
    AND TO_CHAR(A.DOFFING_DATE,'DD/MM/RRRR') = '28/10/2004') Z
    Now my problem is that the view z is returning null as results in the prod and eff coloums.( well that is fine since i actually have no datas in my table against shift 'C') but inline views x and y are returning datas. but when i am selecting this -- SELECT X.MC_ID,
    X.PROD,X.EFF,Y.PROD,Y.EFF,Z.PROD,Z.EFF nothing is being returned as all the coloums are showing null values. when it should show values in (X.PROD,X.EFF,Y.PROD,Y.EFF) coloumns and null in (Z.PROD,Z.EFF) coloumns. please suggest me what to do now.
    Edited by: pari kankaria on Aug 23, 2009 11:02 PM

    is this your complete query? I guess you are missing the joining conditions if this is your complete query.
    it should be like this
    SELECT x.mc_id, x.prod, x.eff, y.prod, y.eff, z.prod, z.eff
      FROM (SELECT a.mc_id mc_id, a.coarse_fine,
                   DECODE (a.coarse_fine, 'F', NVL (a.production, 0), 0) prod,
                   DECODE (a.coarse_fine,
                           'F', (  NVL (a.production, 0)
                                 / NVL (a.fine_target_prod, 0)
                            * 100,
                           0
                          ) eff
              FROM pr_daily_doffing_entry a
             WHERE a.shift = 'A'
               AND mc_id = 24
               AND TO_CHAR (a.doffing_date, 'DD/MM/RRRR') = '28/10/2004') x,
           (SELECT a.mc_id, a.coarse_fine,
                   DECODE (a.coarse_fine, 'F', NVL (a.production, 0), 0) prod,
                   DECODE (a.coarse_fine,
                           'F', (  NVL (a.production, 0)
                                 / NVL (a.fine_target_prod, 0)
                            * 100,
                           0
                          ) eff
              FROM pr_daily_doffing_entry a
             WHERE a.shift = 'B'
               AND mc_id = 24
               AND TO_CHAR (a.doffing_date, 'DD/MM/RRRR') = '28/10/2004') y,
           (SELECT a.mc_id, a.coarse_fine,
                   DECODE (a.coarse_fine,
                           'F', NVL (a.production, ' '),
                          ) prod,
                   DECODE (a.coarse_fine,
                           'F', (  NVL (a.production, ' ')
                                 / NVL (a.fine_target_prod, ' ')
                            * 100,
                          ) eff
              FROM pr_daily_doffing_entry a
             WHERE a.shift = 'C'
               AND mc_id = 24
               AND TO_CHAR (a.doffing_date, 'DD/MM/RRRR') = '28/10/2004') z
    WHERE x.mc_id = y.mc_id AND y.mc_id = z.mc_id     ----something like this should be there change it according to your conditionNOTE : NOT TESTED
    Edited by: Qwerty on Aug 24, 2009 11:46 AM

  • We have problem with showing warnings "Inline with Field"s.

    We have problem with showing error messages "Inline with Field"s.
    1. We have a package ERROR, that collects all errors/warnings. It has a procedure PUT, that saves errors in the variables of the package.
    Package ERROR
    procedure put(ptable in varchar2, pcolumn in varchar2, pcode in varchar2, pmsg in varchar2);
    end;
    2. We have a database table. Its values are validated by a trigger (saving business rules).
    If an error occurs, then the trigger calls the procedure PUT ( to save an error message).
    For example ...
    CREATE TRIGGER ...
    --- Rule 21
    if substr(:new.ka_kood,1,1) != :new.s_kat then
    error.put('TABLE1','COLUMN1', -20167, ' MESSAGE 1 !');
    end if;
    END;
    3. I have a form of HTML DB that updates the table TABLE1
    I want to show this error message with the field COLUMN1 (Inline with Field) .
    I need same validations before and after updating values.
    Before update - to validate same input; after update - to show errors saved in the package ERROR.
    I also tried to use the global variables. For example ...
    WWV_FLOW.g_validation_ids_in_error(1):= 192645056564169139;
    WWV_FLOW.g_item_ids_in_error(1):= 192644674113169137 ;
    WWV_FLOW.g_validation_message(1):='MESSAGE1';
    And this did not help.
    To rise errors in programs - is there same API ?
    Or there is some other solutions ?
    How can I do this in HTML DB?

    Andres,
    I'm not sure exactly what you are trying to do. But perhaps this will help some. If your after-submit process runs DML that causes triggers to fire, which result in error messages to be accumulated in package variables, you could create a branch on the page that would be conditional on the existence of error messages in the package variables. The branch could be back to the same page or to a more customized error page. The page you branch to would use the error messages in the package variables to determine how to format the page with the error text. The key to doing this is to run it all in the same database session. The way to do that is to use a "direct" branch, i.e., one that does not do a URL redirect. You create this type of branch with the Create Branch wizard (Branch to Page) and do not check the "Branch to page using redirect" checkbox when you see it.
    Be sure to roll back any changes you do not want committed before the branch.
    Using HTML DB global package variables for anything like what you described is not supported.
    Scott

  • Inline XML with CDATA problem

    Hi everyone,
    I'm trying to include some JavaScript (JSON 2, to be precise)
    in with some ActionScript 3 classes. I'm using the inline XML
    method (E4X) of declaring the data. It looks like this:
    public static var JSON_2:XML = <data><![CDATA[
    if (!this.JSON) {
    JSON = function () {
    function f(n) {
    return n < 10 ? '0' + n : n;
    Date.prototype.toJSON = function (key) {
    return this.getUTCFullYear() + '-' +
    f(this.getUTCMonth() + 1) + '-' +
    f(this.getUTCDate()) + 'T' +
    f(this.getUTCHours()) + ':' +
    f(this.getUTCMinutes()) + ':' +
    f(this.getUTCSeconds()) + 'Z';
    String.prototype.toJSON =
    Number.prototype.toJSON =
    Boolean.prototype.toJSON = function (key) {
    return this.valueOf();
    var cx = /[\u0000
    ]]></data>
    Actually, this is only about a quarter of what I need to
    include but this is where it breaks down. Right after the second
    slash in the last line, Flash reports:
    TypeError: Error #1091: XML parser failure: Unterminated CDATA
    section.
    In fact, as you can see this is a perfectly valid CDATA
    section and isn't being terminated anywhere (there is no instance
    of "]]>" anywhere in the data). Unfortunately, Flash doesn't
    think so and seems to think that the backslash is an XML node
    directive.
    Does anyone have an idea of how to effectively deal with
    this? The JSON source code has *many* backslashes so not having to
    convert them would be *very* useful.
    Many thanks for all your suggestions,
    Patrick

    I've *kind* of solved the problem...replacing each backslash
    ("\") with a double backslash ("\\"). At least this has removed the
    compiler error. However, this would suggest that the CDATA section
    is actually being interpreted by Flash, which is something it isn't
    supposed to do...or did I misunderstand how this works?

  • Inline tables - refresh problem

    Hi,
    I've migrated an application created with ADF 10g to ADF BC 11g + Apache Trinidad.
    Some forms constist of master-detail tables (details as inline table).
    It worked ok with ADF 10g. It was created as 2 views connected with ViewLink in a standard way.
    With ADF BC 11g/Trinidad, at first glance, it looks and works ok.
    The problem occurs after page reload: when some of master table rows are disclosed: all detail tables are shown as empty (which is incorrect).
    After any partial reload (like disclosing any row in table), everything come back to normal (detail tables are filled with data).
    I searched the forum, but didn't find any solution.
    Any ideas ?
    Thanks in advance.
    Best regarts
    Marcin

    Since you don't provide essential information which would help us give advice, I had to guess some facts, such as your version and replication setup. In the 10.2 Advanced Replication manual, I found the following quote:
    "Oracle also supports the replication of tables and materialized views with columns that use the following large object types:
    Binary LOB (BLOB)
    (the chapter is at http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14226/repplan.htm#i21350).
    It doesn't say anything about the BLOB columns having to be defined as "is not null". Therefore, from the little you said, I don't know why it wouldn't work. Do you have any details to provide for us? Otherwise, I could try myself in the next couple of days, and let you know how that worked.
    Daniel

  • Inline frame problem

    Hello,
    I have a page at www.gwebiogas.co.uk/sitepics which contains two inline frames. The first contains thumbnails and the second displays the large version of the thumbnail when clicked.
    I have two problems:
    1) Internet Explorer adds a white background to the iframe, which I do not want.
    2) Both IE and Firefox position the picture with a margin/border to the top and left. It's not really noticeable in Firefox but in IE the above-mentioned white background gives it away. I have set the margin to 0 in the Page Properties of the page which loads into the frame but it makes no difference.
    Any thoughts please? I've tried various margin, border and padding settings but have run out of ideas.
    Thanks
    Stephen

    Thanks for taking a look at it.
    It's the frame below the thumbnails one that is my main problem ie the one that loads 'site_pic.html' and displays the large picture.
    I have set every value for border, margin etc to 0, and have set background background colour to transparent in the css settings both for the iframe and site_pic.html and have also added [allowtransparency="true"] to the code for the iframe so it looks like this:
    <iframe id="pic_frame" name="pic_frame" src="site_pic.html" allowtransparency="true" frameborder="0" scrolling="no"></iframe>
    - all to no avail!

  • Inline Validation Problem.

    Hello,
    I am having problems with a not null inline validation. The page is wizard created, that uses automatic dml. If the user clicks next and does not put anything in the required field, it will give the error. The problem comes after they put something in the field, it wants to update it to the database instead of inserting it. The pk on the page uses a default from the previous page. Can I use the inline validation and force the page to reload like it's new?
    Thanks,
    Mary

    Hi Mary,
    I can't test anything as I don't have an app login
    Given what you have said and what I can see on your page, I think that you can do a couple of things:
    1 - Make all the computations and the DML process conditional on "Request Contained Within Expression 1" and enter a comma delimited list (without any spaces) of the request names into Expression 1:
    SAVE,CREATE,DELETE,etc2 - Create a process that runs "Before computations and validations" that is conditional on your text box being null. This should just change the request value:
    BEGIN
    APEX_APPLICATION.G_REQUEST := 'xxxx';
    END;The validation would then kick in and produce the error message for the user. None of the computations will run and neither will the DML process as the new request value isn't in Expression 1
    Andy

  • Duplex problem with inline card "WAN0" again

    Hi,
    We got duplex problem again "new site" for the inline port WAN0, LAN0 is ok.
    We have tried crossover and straight through cable, without any look still 100/ half duplex.
    The PTT router int fa0/0 have been to 100/full and auto/auto still 100 half in the WAE.
    The WAE have been in 100/full, no link or auto/auto link but 100/half.
    What can be the problem, as we have this issue with most of our 574 and 274, the 674 have have no problem at all?
    Below are some output from the WAE and router.
    PTT router:
    #sh ver
    Cisco IOS Software, 1841 Software (C1841-SPSERVICESK9-M), Version 12.4(6)T7, RELEASE SOFTWARE (fc5)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2007 by Cisco Systems, Inc.
    Compiled Thu 29-Mar-07 03:29 by khuie
    ROM: System Bootstrap, Version 12.4(13r)T, RELEASE SOFTWARE (fc1)
    Router uptime is 5 weeks, 1 day, 5 minutes
    System returned to ROM by power-on
    System restarted at 08:09:29 GMT Sun Aug 15 2010
    System image file is "flash:c1841-spservicesk9-mz.124-6.T7.bin"
    Cisco 1841 (revision 7.0) with 116736K/14336K bytes of memory.
    Processor board ID FCZ112411HV
    2 FastEthernet interfaces
    1 Serial interface
    1 Serial(sync/async) interface
    1 Channelized E1/PRI port
    DRAM configuration is 64 bits wide with parity disabled.
    191K bytes of NVRAM.
    63488K bytes of ATA CompactFlash (Read/Write)
    Configuration register is 0x2102
    #sh int fa0/0
    FastEthernet0/0 is up, line protocol is up
      Hardware is Gt96k FE, address is 001b.d5ab.3fc8 (bia 001b.d5ab.3fc8)
      Internet address is 10.252.105.12/22
      MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      Keepalive set (10 sec)
      Half-duplex, 100Mb/s, 100BaseTX/FX
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input 00:00:00, output 00:00:00, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 103000 bits/sec, 89 packets/sec
      5 minute output rate 625000 bits/sec, 93 packets/sec
         110094543 packets input, 2604076581 bytes
         Received 10013739 broadcasts, 0 runts, 0 giants, 0 throttles
         21 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 watchdog
         0 input packets with dribble condition detected
         110416771 packets output, 4153304953 bytes, 0 underruns
         149371 output errors, 113762 collisions, 149376 interface resets
         0 babbles, 149940 late collision, 0 deferred
         0 lost carrier, 0 no carrier
         0 output buffer failures, 0 output buffers swapped out
    From the WAE:
    #sh interface inlineport  InlineGroup 1/0/wan
                                         ^
    % Invalid input detected at '^' marker.
    ZAJOPWAAS01#sh interface inlineport  1/0/wan
    Device name        : eth4. Bypass master interface.
    Packets Received   : 59466951
    Packets Intercepted: 50007028
    Packets Bridged    : 10002103
    Packets Forwarded  : 44722188
    Packets Dropped    : 69
    Packets Received on native      : 0
    Active flows for this interface : 0
    Ethernet Driver Status
    Type:Ethernet
    Ethernet address:00:E0:ED:11:E5:A8
    Maximum Transfer Unit Size:1500
    Metric:1
    Packets Received: 59466909
    Input Errors: 0
    Input Packets Dropped: 0
    Input Packets Overruns: 0
    Input Packets Frames: 0
    Packet Sent: 64238956
    Output Errors: 116996
    Output Packets Dropped: 0
    Output Packets Overruns: 0
    Output Packets Carrier: 116996
    Output Queue Length:100
    Collisions: 182840
    Base address:0x5000
    Flags:UP BROADCAST RUNNING MULTICAST
    Link State: Interface is up,line protocol up
    Mode: autoselect, half-duplex, 100baseTX
    1#sh ver
    Cisco Wide Area Application Services Software (WAAS)
    Copyright (c) 1999-2010 by Cisco Systems, Inc.
    Cisco Wide Area Application Services (WAAS-UNIVERSAL-K9) Software Release 4.2.1
    (build b38 Jun 16 2010)
    Version: oe574-4.2.1.38
    Compiled 20:44:26 Jun 16 2010 by damaster
    Device Id: 00:26:55:ad:cd:04
    System was restarted on Mon Aug 30 16:48:52 2010.
    The system has been up for 2 weeks, 6 days, 17 hours, 52 minutes, 10 seconds.
    Jan Rockstedt

    Hi Jan,
    If you are connecting Router to WAN0_0 port, you should use cross-over cable under most of the circumstances and unless you are using all gig interfaces on both sides. This will avoid any hardware limitations due to non-Auto-MDIX supported hardware.
    Cisco strongly recommend that you do not use half-duplex connections on the WAE or on routers, switches, or other devices.
    You will find more information here: Cabling
    http://www.cisco.com/en/US/docs/app_ntwk_services/waas/wae/module/inline/installation/guide/17880fru.html#wp39911
    Further, there is a possibility that the interface on Router / WAE inline adapater / cable might be bad. I would suggest following in that case.
    1. Using a new cross-over / stright cable. if the issue continues, proble lies on the interface sides.
    2. Using a different port on router. if the issue continues, problem is with WAN0_0 port of WAE.
    3. Try connecting wan0_0 port to another switch / router to see if it negotiates at full duplex. If it still continues at half duplex, there is an issue with WAN0_0 port most probably.
    4. Try connecting secondary gig port or WAN0_1 port to same router interface. If the issue continues, problem may be with router FA0/0 interface.
    If you find that issue is with either router / WAE inline interface, please open a TAC case for RMA.
    Hope this helps.
    Regards.
    PS: If this resolves your issue, please mark this as Answered.

  • Problem with TLF - floating an inline image

    I am running the latest version of Flash Builder 4 (4.0.1).  The problem that I having:
    When I use an InlineGraphicsElement if aTextFlow (in a RichEditableText component), if I set a value for the "float" attribute of an <img> element; the image is not visible.  Without the float attribute, I see the image.
    Is this a version problem with TLF?  How do I know which version of TLF that I'm using?  How do I install the correct version of TLF?
    Thanks for the help.
         Oz
    Some code fragments:
    The TextFlow string with "float":
    <div color="#444444" fontFamily="Times New Roman" fontSize="20" paragraphSpaceAfter="15" textIndent="10">
    <p><span color="0xff0000" >Alice, </span><span>really, was </span><span color="0xff0000" >beginning </span><span>to </span><span color="0xff00" >get very </span><span>tired of </span><span color="0xff00" >sitting </span><span>by her </span><span color="0xff00" >sister </span><span>on the </span><span color="0xff00" >bank, </span><span>and of </span><span color="0xff00" >having nothing </span><span>to do:  once or twice she had peeped into the book her </span><span color="0xff00" >sister </span><span>was reading, but it had no </span><span color="0x888800" >pictures </span><span>or </span><span color="0xffff" >conversations </span><span>in it, `and what is the use of a book,' thought </span><span color="0xff0000" >Alice `</span><span>without </span><span color="0x888800" >pictures </span><span>or </span><span color="0xff00" >conversation?'</span></p>
    <p>
    <img float="left" width="100" source="assets/library/alice/images/White Rabbit.png" height="100"/>
    <span>So she was </span><span color="0xffff" >considering </span><span>in her own mind</span><span>(</span><span>as well as she could, for the hot day made her feel </span><span color="0xff00" >very </span><span>sleepy and stupid), whether the pleasure of making a daisy-chain would be </span><span color="0x880000" >worth </span><span>the trouble of getting up and picking the daisies, when suddenly a White </span><span color="0xff00" >Rabbit </span><span>with pink eyes ran close by her.</span></p>
    </div>
    Without "float":
    <div color="#444444" fontFamily="Times New Roman" fontSize="20" paragraphSpaceAfter="15" textIndent="10">
    <p><span color="0xff0000" >Alice, </span><span>really, was </span><span color="0xff0000" >beginning </span><span>to </span><span color="0xff00" >get very </span><span>tired of </span><span color="0xff00" >sitting </span><span>by her </span><span color="0xff00" >sister </span><span>on the </span><span color="0xff00" >bank, </span><span>and of </span><span color="0xff00" >having nothing </span><span>to do:  once or twice she had peeped into the book her </span><span color="0xff00" >sister </span><span>was reading, but it had no </span><span color="0x888800" >pictures </span><span>or </span><span color="0xffff" >conversations </span><span>in it, `and what is the use of a book,' thought </span><span color="0xff0000" >Alice `</span><span>without </span><span color="0x888800" >pictures </span><span>or </span><span color="0xff00" >conversation?'</span></p>
    <p>
    <img width="100" source="assets/library/alice/images/White Rabbit.png" height="100"/>
    <span>So she was </span><span color="0xffff" >considering </span><span>in her own mind</span><span>(</span><span>as well as she could, for the hot day made her feel </span><span color="0xff00" >very </span><span>sleepy and stupid), whether the pleasure of making a daisy-chain would be </span><span color="0x880000" >worth </span><span>the trouble of getting up and picking the daisies, when suddenly a White </span><span color="0xff00" >Rabbit </span><span>with pink eyes ran close by her.</span></p>
    </div>
    A bit of MXML code:
        <s:Group id="myGroup" width="100%" height="100%">
            <s:RichEditableText id="myRichText" lineBreak="toFit">
            </s:RichEditableText>
            <!--- Do not set the height of the RichEditableText - since it seems to prevent the appearance of the vertical scroll bars -->
        </s:Group>
    And some Actionscript that adds components:
                scroller = new SxScroller();
                scroller.dx = dxScroller;
                scroller.dy = dyScroller;
                scroller.addEventListener(FlexEvent.CREATION_COMPLETE,scrollerEvent);
                scroller.addEventListener(FlexEvent.UPDATE_COMPLETE,scrollerEvent);
                richText = scroller.richText;
                richText.editable = false;  // textCharacter.enableEdit; // probably false.  TODO:  support true???
                richText.selectable = true; // required
                richText.width = dxRichText;
    And finally the import of a TextFlow string:
    richText.textFlow = TextFlowUtil.importFromString(textFlowString, WhiteSpaceCollapse.PRESERVE);

    On the TextFlow forum I found the answer:
    Use Flash Builder Hero, since it support TLF 2.0 out-of-the-box.  The InlineGraphics support several valuable attributes, including float="left" etc.
    Beautiful.

  • Problems w/ rendering of buttons inline w/ items

    It would see that buttons that are positioned withing region items are rendered according to different template rules. These kinds of buttons appear both in the "Buttons" section of the page designer and in the "Items" section.
    Page Designer => Create New Button => Chose "Create a button displayed among this region's items" => Template Style set to "Template Based Button" & select a template
    1: Button templates that use the #BUTTON_ID# replacement are not substituted. If id="#BUTTON_ID#" is used in the template and you have more than one button inline with elements, there are now multiple elements w/ the id of "#BUTTON_ID#".
    2: The text label of the button is wrapped with a label and span tag, causing CSS that attempts to use pseudo elements ( i.e. .BUTTON a:hover ) to fail. This is because the label and span keep the CSS from being a valid target of the CSS declaration. Pseudo element assignment to non-anchor tags in IE is buggy/non-existent. (i.e. .BUTTON label:hover / .BUTTON span:hover are not viable). There is no reason to have a label tag and span tags inserted here automatically.
    Message was edited by:
    andrew.martinez

    Hi, I'm sorry you are having such a difficult time. Let's assume for a moment that Flash Player is Installed correctly.
    I don’t know if anyone has suggested this or not but what I did to make Flash 10.3 work on my IE9 (32 bit on a 64bit Windows 7) was to click on the gear icon, then click on “internet options”, then “advanced”, then finally check “use software rendering instead of GPU rendering” finally you must close IE9 for the settings to work.
    If that doesn't help, then we'll need to check to make sure FP is Installed correctly.
    Let me know,
    eidnolb

  • Problems with document flowing after placing a movie inline

    I'm trying to place a movie inline and have the contents surrounding it reflow, instead when the movie is placed it overlaps all of the contents above it.
    I'm placing a movie using the following code:
    paragraph.insertionPoints[-1].place(File("c:\\users\\kurt\\desktop\\movie\\test.flv"));
    And this is the resulting behaviour:
    The odd part is that when I tested this against blank templates I had these results, which are the result I was hoping for. The surrounding paragraphs simply reflow to accomodate the movie.
    Any ideas on why the other document isn't reflowing to the placed movie?

    Just to make it a bit easier to refer to anchored object you could probably use
    paragraph.insertionPoints[-1].words[0].allPageItems[0].anchoredObjectSettings.anchorYoffset = 10;
    Not the best but unlikely to fail and easy.
    If you were inserting an oval or the like you would just use.
    myOval = paragraph.insertionPoints[-1].ovals.add();
    myOval.anchoredObjectSettings.anchorYoffset = 10;
    but you can't do that with placed images

Maybe you are looking for

  • HT2731 Can we have more than one Apple ID for iTunes on the same computer

    We have a family computer.  On this computer we have an iTunes account.  My son would like to set up his own iTunes account on the same computer.  Can this be done if he creates his own Apple ID and can we use the same credit card # to set up the acc

  • Missing movies after Apple TV update

    I have two Apple TVs - a 2nd gen one and a 3rd gen one. I also have about 30 movies in my iTunes movies library which, when I connect with that computer on either Apple TVs brings all the content across. However, since the update, most of that conten

  • Filtering Multiple Auth Users in SawMill

    I am unable to generate a report with more than a single person. The only attributes I am applying is: Statistics for 01/Jun/2010 - 30/Jun/2010, 30 days  Report is filtered and shows data for   Action is NOT: TCP_DENIED   Auth User is: local\lcl4034@

  • Dump in calling PYXX_READ_PAYROLL_RESULT

    Hi, I am trying to get the last active payroll record of transaction pc_payresult. I am calling the function PYXX_READ_PAYROLL_RESULT but getting a dump. The code is as below DATA: wa_result type pay99_result,           it_rgdir type standard table o

  • How do I get a table in Pages to extend across pages?

    Every time I create a table in Pages, it's fine until it needs to continue to the next page.  The table does not go to the next page it just disappears.  Help!