Small typo bug on 4.2 WWV_FLOW_LANGUAGES table

Seems that for the lang_id = "fr-ch", both the LANG_NAME and the TRANSLATED_LANG_NAME columns
have mistyped values - "Fench (Switzerland)" - so it's missing an "r".
Regards,
Peter

Hi Peter,
thanks for letting us know. I have filed bug# 15965051 to get it fixed in the next version of APEX.
Regards
Patrick
My Blog: http://www.inside-oracle-apex.com
APEX Plug-Ins: http://apex.oracle.com/plugins
Twitter: http://www.twitter.com/patrickwolf

Similar Messages

  • Possible Bug concerning JClient Forms with tables

    If I instantiate a JClient Frame first time a lot of empty rows appear in the table, if there is NO DATA in the database table.
    If there IS data in the database table, at the fist time everything is OK, but if I instantiate the JClient frame a second time, in the JClient table a lot of empty rows appear in addition to the expected ones.
    To reproduce this behaviour you can create a single JClient Table Form and then add a component to instantiate a new Form of the actual one e.g. I have reproduced it changing the standard About Menu so that <About> instantiates and sets visible the Form again.
    menuHelp.setMnemonic('H');
    itemHelpAbout.setText("About");
    itemHelpAbout.setMnemonic('A');
    itemHelpAbout.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    FrameView1 frame = new FrameView1(app);
    frame.setVisible(true);
    Is this a bug ?
    Is there a workaround for this behaviour ?

    If I instantiate a JClient Frame first time a lot of empty rows appear in the table, if there is NO DATA in the database table.
    If there IS data in the database table, at the fist time everything is OK, but if I instantiate the JClient frame a second time, in the JClient table a lot of empty rows appear in addition to the expected ones.This has been discussed on OTN at 10G JDBC Driver SQl Exception earlier.
    Please see if suggested workaround works for your case.

  • Query small set of record in a big table.

    Hi,
    in 11.2.0.2 i've a table with about 2milions of record.
    I use a query that like:
    select *
    FROM DOC
    WHERE INDENTIF = 1001 AND TRASF = 0;
    to identify new record in the table (TRASF=0).
    INDENTIF column contains 5 distinct key and TRASF can be 0,1,2
    SELECT COUNT (*), INDENTIF , TRASF
    FROM DOC
    BY INDENTIF, TRASF
    COUNT     IDENTIF     TRASF
    9           1004          2
    1359        1005          1
    1           1001          2
    306859      1004          1
    767090      1002         1
    2           1002         2
    782981      1001         1
    There is an index on INDENTIF , TRASF but oracle uses full scan.
    Stats are available.
    Every time i check for new record it perform a full scan also
    if there aren't new record.
    Is there a method to use an index without use hint?
    Thank you

    MartinPreiss ha scritto:
    seeing the results from dba_tab_cols_statistics I think it could be a problem with TRASF and the sample_size: there are two known values (I assume 1 and 2) but only one bucket. For a value not included into the histogram the calculation of selectivity may bring very high results since 10.2.0.4: http://jonathanlewis.wordpress.com/2009/04/23/histogram-change/: "If the value you supply does not appear in the histogram, but is inside the low/high range of the histogram then the cardinality will be half the cardinality of the least frequently occurring value that is in the histogram." For a value outside the known range the result will be smaller, but may still be much too high. Perhaps you can give as the plans for:
    select *
    FROM DOC
    WHERE TRASF = 0;
    select *
    FROM DOC
    WHERE TRASF = 1;
    select *
    FROM DOC
    WHERE TRASF = 2;
    SQL> set autotrace traceonly explain
    SQL> select *
    FROM DOC
    WHERE TRANSF = 0;  2    3
    Execution Plan
    Plan hash value: 3984526059
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |   929K|    18M|  2137   (2)| 00:00:26 |
    |*  1 |  TABLE ACCESS FULL|  DOC |   929K|    18M|  2137   (2)| 00:00:26 |
    Predicate Information (identified by operation id):
       1 - filter("TRANSF"=0)
    SQL> select *
    FROM DOC
    WHERE TRANSF = 1;  2    3
    Execution Plan
    Plan hash value: 3984526059
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |  1858K|    37M|  2142   (2)| 00:00:26 |
    |*  1 |  TABLE ACCESS FULL|  DOC |  1858K|    37M|  2142   (2)| 00:00:26 |
    Predicate Information (identified by operation id):
       1 - filter("TRANSF"=1)
    SQL> select *
    FROM DOC
    WHERE TRANSF = 2;  2    3
    Execution Plan
    Plan hash value: 3984526059
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |   929K|    18M|  2137   (2)| 00:00:26 |
    |*  1 |  TABLE ACCESS FULL|  DOC |   929K|    18M|  2137   (2)| 00:00:26 |
    Predicate Information (identified by operation id):
       1 - filter("TRANSF"=2)

  • Another bug introduced in production release - table filter

    Hello guys,
    check this scenario:
    1) Open some table
    2) Use the column filter to filter the table
    3) Try to use the column filter on same column again without clearing all filters.
    The table filter will display only "Remove ('xyz')" message, where xyz is current value used to filter the column. It is not possible to delete the value and enter new value. You have to clear the filter first and then enter new value...
    Sadly, I have to say, with every new release you are making SQL Developer more and more unusable :(

    My bad.
    Logged Bug 13788551 - regression: have to remove quickfilter before entering new one.
    -Raghu

  • 10g bug? Can't see tables in Access-Dababase

    I successfully create a database connection to an Access-Database,but i can't find these tables that i have defined in Access.
    thanks.

    This appears to be a bug in 10g. We are not correctly handling tables in Access. Thanks for alerting us to the problem.
    - John McGinnis
    Oracle JDeveloper Team

  • EA1 : Bug for F4 to Describe Table

    Hi,
    SQL Developer EA1 1.5, Win XP, Java 1.5.0_01, againts 9i and 10gR2 Database.
    I use the Describe functionality using F4, the following happened :
    - Cannot describe tables owned by other user, both for DBA's liked user and standard user
    However run :
    desc otheruser.table1 from SQL Worksheet is working and showing tables structure
    and code completion seems to working correctly (I did use the code completion and then F4 to try this)
    Just example :
    -- query is working,
    -- but F4 showed a popup message : No Object Found: system.help
    select *
    from   system.help;   No Describe Window open at all.
    - Describe tables owned by myself
    Two conditions :
    1. User with granted select and connect (on Oracle 10.2.0.2)
    Describe Window doesn't appear.
    Just example :
         -- query is working,
         -- but F4 showed a popup message : No Object Found: myuser.mytable
         select *
         from   myuser.mytable;  
                             But.... now Describe Window appears
        -- query is working,
        -- F4 showed a popup message
        -- Pop up : No Valid Query
        -- No query found for version of the selected database
           select *
           from   sys.dual;             
           select *
           from   mytable; -- without specifying myuser (schema/owner)
        2. User with privilage near to DBA (on Oracle 9.2.0.6 64 bit)
    Describe Window appears.
    Pop up : No Valid Query
    No query found for version of the selected database
    And
    The following error occured :
    java.lang.NoSuchFieldException: TABLE_NODE_ICON at java.lang.Class.getDeclaredField(Class.java:1854) at oracle.dbtools.raptor.images.RaptorImage.getIcon(RaptorImage.java:31) at oracle.dbtools.raptor.controls.display.DisplayModel.getIcon(DisplayModel.java:295) at oracle.dbtools.raptor.oviewer.base.PopupDescribe.showPopup(PopupDescribe.java:142) at oracle.dbtools.raptor.oviewer.base.PopupDescribe.showPopup(PopupDescribe.java:99) at oracle.dbtools.raptor.oviewer.base.PopupDescribe.showPopup(PopupDescribe.java:76) at oracle.dbtools.sqlworksheet.sqlview.SqlEditorController.handleEvent(SqlEditorController.java:587) at oracle.ideimpl.controller.IdeActionHook$MetaClassController.handleEvent(IdeActionHook.java:407) at oracle.ide.controller.IdeAction.performAction(IdeAction.java:513) at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:843)
    at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:486)
    at oracle.ide.ceditor.keymap.IdeKeymapHelper.invokeAction(IdeKeymapHelper.java:160)
    at oracle.javatools.editor.keys.MultiKeyHandler.keyPressed(MultiKeyHandler.java:334)
    at java.awt.AWTEventMulticaster.keyPressed(AWTEventMulticaster.java:191)
    at java.awt.Component.processKeyEvent(Component.java:5446)
    at javax.swing.JComponent.processKeyEvent(JComponent.java:2713)
    at java.awt.Component.processEvent(Component.java:5265)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.KeyboardFocusManager.redispatchEvent(KeyboardFocusManager.java:1810)
    at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(DefaultKeyboardFocusManager.java:672)
    at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(DefaultKeyboardFocusManager.java:920)
    at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(DefaultKeyboardFocusManager.java:798)
    at java.awt.DefaultKeyboardFocusManager.dispatchEvent(DefaultKeyboardFocusManager.java:636)
    at java.awt.Component.dispatchEventImpl(Component.java:3841)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Has anyone got this issue?
    Regards,
    Buntoro

    Sue,
    Which bug are you talking about as being 9i specific?
    I am on 10.2.0.3 and using EA2 with JDK 1.6.0_04 and still getting the following:
    My user has a private synonym THEIR_TABLE for OTHER_USER.THEIR_TABLE and select access.
    My user has select access but no synonyms for OTHER_USER.OTHER_TABLE.
    Describe works with THEIR_TABLE, OTHER_USER.THEIR_TABLE and OTHER_USER.OTHER_TABLE, but fails in OTHER_TABLE - so this all works as expected.
    F4 works as follows:
    THEIR_TABLE: shows "No Valid Query: No query found for version of the selected database" dialog, but the table (not the synonym!) is described successfully after accepting the dialog
    OTHER_USER.THEIR_TABLE: describes private local synonym!
    OTHER_USER: shows "No Object Found: other_table" dialog
    OTHER_USER.OTHER_TABLE: shows "No Object Found: other_user.other_table" dialog
    F4 does not seem to cope (in my experience) with schema references in the object name being described.
    The only difference between EA1 and EA2 is that I am no longer getting the java.lang.NoSuchFieldException: TABLE_NODE_ICON exception on the console.
    Just a note - I like the fact that F4 on THEIR_TABLE describes the table rather than the synonym.
    theFurryOne

  • Bug driver 10g on Spatial tables with MapX

    I have migrated from 9i to 10g with spatial tables.
    I have the message "Error creating buffer" when I call the function SearchWithinDistance of MapX5, in VB6.
    The function works properly with database 9i or database 10g and driver 9 but gives the error with database 9i or database 10g and driver version 10. All other functions work well...
    Anyone can help ? Thanks

    Hi David,
    I had never heard of this bug before. Hopefully this info regarding a workaround will be what you need:
    This problem affects any REF or ADT ("user-defined" types) with NOT NULL.
    The workaround is to drop the NOT NULL constraint before exporting and adding it after importing.

  • Small Cap Bug

    Apologies if this has been answered, but I tried to do a search on the forum.
    I know in CS2 there was a bug with small caps. Has this been fixed in CS3?
    Thanks
    doc

    >The typesetting houses can't tell the a Random House, Simon & Schuster, or a HarperCollins (or whoever) what to do.
    Where did I ever say they could? All along, I've noted that these sort of decisions are often made by people at a level higher than those doing the typesetting and that they're not negotiable. However, you wrote that in this case "Their designers did their design", and I just posed the question why those designers would choose a typeface without small caps when they knew that the text required them. And it was actually meant as a rhetorical question - rightly or wrongly, I assumed that the reason they did was because they simply didn't care or know about the difference between true and faked small caps.
    >if they want to use fake small caps I'm not going to tell some guy behind the oak desk that he's full of crap.
    Where did anyone ever suggest telling the client that he or she was "full of crap"? If a client comes in and says "use typeface X for this book", I don't see what the problem is with the designer saying "you realise that this means that we're going to have to fake the small caps/artifically bolden the text/oblique the text?". There's a world of difference between that and abusing them. And I never said that the typesetting house was to do this - I said that the designer should. You do say that "We can advise", which is all I ever suggested. I don't know where you're getting this impression from that I'm saying you should abuse them and tell them what to do.
    >I haven't lowered my standards.
    Never said you had. You seem to be getting very worked up about what was, as I say, a simple rhetorical question.
    >And personally I'd rather see fake small caps used than gaudy CAPS.
    Gosh, never heard of caps being gaudy before!
    >Are you in book publishing?
    Yes, though it's a lot smaller market in New Zealand than the States.

  • Small Basic bugs: Graphics Window errors

    I apologise that this is in the wrong category, I could not find one that fit the subject.
    I have found several bugs in the Small Basic Graphics Window handling, such as unintended application termination and resizing errors while hidden. Here is some code including most of them:
    GraphicsWindow.Hide()
    GraphicsWindow.ShowMessage("Showing GW","Debugger")
    GraphicsWindow.Show()
    GraphicsWindow.ShowMessage("Size: "+GraphicsWindow.Width+"*"+GraphicsWindow.Height,"Debugger")
    GraphicsWindow.ShowMessage("Hiding GW","Debugger")
    GraphicsWindow.Hide()
    GraphicsWindow.ShowMessage("Size: "+GraphicsWindow.Width+"*"+GraphicsWindow.Height,"Debugger")
    GraphicsWindow.ShowMessage("Resizing GW to 800*600","Debugger")
    GraphicsWindow.Width=800
    GraphicsWindow.Height=600
    GraphicsWindow.ShowMessage("Size: "+GraphicsWindow.Width+"*"+GraphicsWindow.Height,"Debugger")
    GraphicsWindow.ShowMessage("Showing GW","Debugger")
    GraphicsWindow.Show()
    GraphicsWindow.ShowMessage("Size: "+GraphicsWindow.Width+"*"+GraphicsWindow.Height,"Debugger")
    GraphicsWindow.ShowMessage("Resizing GW to current size","Debugger")
    GraphicsWindow.Width=GraphicsWindow.Width
    GraphicsWindow.Height=GraphicsWindow.Height
    GraphicsWindow.ShowMessage("Size: "+GraphicsWindow.Width+"*"+GraphicsWindow.Height,"Debugger")
    GraphicsWindow.ShowMessage("Resizing GW to 800*600","Debugger")
    GraphicsWindow.Width=800
    GraphicsWindow.Height=600
    GraphicsWindow.ShowMessage("Size: "+GraphicsWindow.Width+"*"+GraphicsWindow.Height,"Debugger")
    On a Windows 7 machine there are the following bugs, which either seem not to apply in Windows 8.1 or do not appear with this code:
    When the Enter key is pressed on a GW message without the GW showing, the program ends, whereas when the button is clicked, the program continues as expected.
    When the GW is hidden, it does not resize properly in certain scenarios and the Height and Width properties stop returning meaningful values if set to a value.
    These errors can cause unwanted behaviour and could well break a program. Could somebody verify these please.

    Congrats to Nonki and ME!!!! =^)
     Small Basic Technical Guru - February 2015  
    Nonki Takahashi
    Small Basic: Key Input
    Michiel Van Hoorn: "Great improvement."
    RZ: "Very nice explanation and examples of key input handling"
    Ed Price - MSFT
    Small Basic: The History of the Logo Turtle
    RZ: "Turtle (Logo) was the first programming language for many, including perhaps some of the Small Basic prorammers. Nice article explaining the history."
    Michiel Van Hoorn: "A nice background article and hopefull inspiration for those who want to start in robotics"
    Nonki Takahashi
    Small Basic: TechNet Wiki Article List
    Michiel Van Hoorn: "This is great! Perfect as a local cache of the articles. "
    RZ: "A good example"
    Also worth a mention were the other entries this month:
    Small Basic Known Issue: 29976 - Assignment to Array in Event Handler Needs Time by
    Nonki Takahashi
    RZ: "This is a very good catch. The workaround mentioned is very helpful."
    Michiel Van Hoorn: "Ah, very helpfull if you ever bumped into this"
    Welcome to Small Basic by
    Nonki Takahashi
    Michiel Van Hoorn: "Nice greating"
    RZ: "A good introduction page"
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Flattened pixmap mask description wrong for small images -- Bug?

    I've been working with images loaded from disk lately, and it seems to me the description for the mask element of the flattened pixmap cluster is incorrect when the image size is small. The online help reads:
    mask is an array of bytes in which each bit describes mask
    information for a pixel. The first byte describes the first eight pixels, the
    second byte describes the next eight pixels, and so on. If a bit is zero,
    LabVIEW draws the corresponding pixel as transparent. If the array is empty,
    LabVIEW draws all pixels without transparency. If the array does not contain a
    bit for each pixel in the image, LabVIEW draws any pixels missing from the array
    without transparency.
    So there should be one bit in the mask for each pixel. Here is what I'm getting:
    image size   # pixels    mask length, bytes (bits)
    1x1               1            2   (16)
    1x2               2            2   (16)
    2x2               4            4   (32)
    4x4              16            8   (64)
    8x8              64           16  (128)
    9x9              81           18  (144)
    32x32          1024          128 (1024)
    33x33          1089          198 (1584)
    It looks like there are two issues here. One, the mask array works on rows of pixels. If the row does not end on a byte, the byte is padded on the right with zeros until the end, then the next row starts. E.g., for the 9x9 image, pixel #9 is byte 2, bit 8; byte 2 is padded with zeros; pixels 10-18 start with byte 3.
    Two, for some reason small images (i think 8 pixels per row or less, but I'm not sure) have every other byte a zero. For example, here is the mask for my 4x4 test image, with every pixel opaque:
       11110000 00000000 11110000 00000000 11110000 00000000 11110000 00000000
    According to thel help text, the mask array should be 2 bytes long, with every bit a 1.
    It seems to me that the first issue is likely intentional, and the help text just isn't entirely clear. The second issue, I'm not sure about. Maybe it was just assumed that pictures would be large and small pictures wouldn't be used?

    Wiebe is correct that every line of the image gets an even number of bytes in it mask.
    The help was misleading, I agree. I have reported this confusion as a bug in the documentation (I do not remeber to CAR#) so it can be explained better.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How do I count specific, smaller groups of information in one large table?

    Hello all,
    I have a feeling the answer to this is right under my nose, but somehow, it is evading me.
    I would like to be able to count how many photos are in any specific gallery. Why? Well, on my TOC page, I thought it would be cool to show  the user how many photos were in any given gallery displayed on the screen as part of all the gallery data I'm presenting. It's not necessary, but I believe it adds a nice touch. My  thought was to have one massive table containing all the photo information and another massive table containing the gallery  information, and currently I do. I can pull various gallery information  based on user selections, but accurately counting the correct number of  images per gallery is evading me.
    In my DB, I have the table, 'galleries', which has several columns, but the two most relevant are g_id and g_spe. g_id is the primary key and is an AI column that represents also the gallery 'serial' number. g_spec is a value that will have one of 11 different values in it (not relevant for this topic.)
    Additionally, there is the table, 'photos', and in this table are three columns:  p_id, g_id and p_fname. p_id is the primary key, g_id is the foreign key (primary key of the 'galleries' table) and p_fname contains the filename of each photo in my ever-expanding gallery.
    Here's the abbreviated contents of the galleries table showing only the first 2 columns:
    (`g_id`, `g_spec`, etc...)
    (1, 11, etc...),
    (2, 11, etc...),
    (3, 11, etc...),
    (4, 11, etc...),
    (5, 12, etc...),
    (6, 13, etc...)
    Here's the contents of my photos table so far, populated with test images:
    (`p_id`, `g_id`, `p_fname`)
    (1, 1, '1_DSC1155.jpg'),
    (2, 1, '1_DSC1199.jpg'),
    (3, 1, '1_DSC1243.jpg'),
    (4, 1, '1_DSC1332.jpg'),
    (5, 1, '1_DSC1381.jpg'),
    (6, 1, '1_DSC1421.jpg'),
    (7, 1, '1_DSC2097.jpg'),
    (8, 1, '1_DSC2158a.jpg'),
    (9, 1, '1_DSC2204a.jpg'),
    (10, 1, '1_DSC2416.jpg'),
    (11, 1, '1_DSC2639.jpg'),
    (12, 1, '1_DSC3768.jpg'),
    (13, 1, '1_DSC3809.jpg'),
    (14, 1, '1_DSC4226.jpg'),
    (15, 1, '1_DSC4257.jpg'),
    (16, 1, '1_DSC4525.jpg'),
    (17, 1, '1_DSC4549.jpg'),
    (18, 2, '2_DSC1155.jpg'),
    (19, 2, '2_DSC1199.jpg'),
    (20, 2, '2_DSC1243.jpg'),
    (21, 2, '2_DSC1332.jpg'),
    (22, 2, '2_DSC1381.jpg'),
    (23, 2, '2_DSC1421.jpg'),
    (24, 2, '2_DSC2097.jpg'),
    (25, 2, '2_DSC2158a.jpg'),
    (26, 2, '2_DSC2204a.jpg'),
    (27, 2, '2_DSC2416.jpg'),
    (28, 2, '2_DSC2639.jpg'),
    (29, 2, '2_DSC3768.jpg'),
    (30, 2, '2_DSC3809.jpg'),
    (31, 2, '2_DSC4226.jpg'),
    (32, 2, '2_DSC4257.jpg'),
    (33, 2, '2_DSC4525.jpg'),
    (34, 2, '2_DSC4549.jpg'),
    (35, 3, '3_DSC1155.jpg'),
    (36, 3, '3_DSC1199.jpg'),
    (37, 3, '3_DSC1243.jpg'),
    (38, 3, '3_DSC1332.jpg'),
    (39, 3, '3_DSC1381.jpg'),
    (40, 3, '3_DSC1421.jpg'),
    (41, 3, '3_DSC2097.jpg'),
    (42, 3, '3_DSC2158a.jpg'),
    (43, 3, '3_DSC2204a.jpg'),
    (44, 3, '3_DSC2416.jpg'),
    (45, 3, '3_DSC2639.jpg'),
    (46, 3, '3_DSC3768.jpg'),
    (47, 3, '3_DSC3809.jpg'),
    (48, 3, '3_DSC4226.jpg'),
    (49, 3, '3_DSC4257.jpg'),
    (50, 3, '3_DSC4525.jpg'),
    (51, 3, '3_DSC4549.jpg');
    For now, each gallery has 17 images which was just some random number I chose.
    I need to be able to write a query that says, tell me how many photos are in a specific photoset (in the photos table) based on the number in galleries.g_id  and photos.g_id being equal.
    As you see in the photos table, the p_id column is an AI column (call it photo serial numbers), and the g_id column assigns each specific photo to a specific gallery number that is equal to some gallery ID in the galleries.g_id table. SPECIFICALLY, for example I would want to have the query count the number of rows in the photos table whose g_id = 2 when referenced to g_id = 2 in the galleries table.
    I have been messing with different DISTINCT and COUNT methods, but all seem to be limited to working with just one table, and here, I need to reference two tables to acheive my result.
    Would this be better if each gallery had its own table?
    It should be so bloody simple, but it's just not clear.
    Please let me know if I have left out any key information, and thank you all in advance for your kind and generous help.
    Sincerely,
    wordman

    bregent,
    I got it!
    Here's the deal: the query that picks the subset of records:
    $conn = dbConnect('query');
    $sql = "SELECT *
            FROM galleries
            WHERE g_spec = '$spec%'
            ORDER BY g_id DESC
            LIMIT $startRow,".SHOWMAX;
    $result = $conn->query($sql) or die(mysqli_error());
    $galSpec = $result->fetch_assoc();
    picks 3 at a time, and with each record is an individual gallery number (g_id). So, I went down into my code where a do...while loop runs through the data, displaying the info for each subset of records and I added another query:
    $conn = dbConnect('query');
    $getTotal = "SELECT COUNT(*)
                FROM photos
                WHERE g_id = {$galSpec['g_id']}
                GROUP BY g_id";
    $total = $conn->query($getTotal);
    $row = $total->fetch_row();
    $totalPix = $row[0];
    which uses the value in $galSpec['g_id']. I didn't know the proper syntax for including it, but when I tried the curly braces, it worked. I altered the number of photos in each gallery in the photos table so that each total is different, and the results display perfectly.
    And as you can see, I used some of the code you suggested in the second query and all is well.
    Again, thank you so much for being patient and lending me your advice and assistance!
    Sincerely,
    wordman

  • Dreamweaver 8 bug - strobing/blinking when rollover tables

    Does anyone else have this issue with Dreamweaver 8 in table
    view - when you rollover any graphic or table border the whole
    screen strobes and blinks enough to give you a seizure?
    I have mx and 8 installed on my computer, but I dont want to
    give up mx until I can be sure 8 will stop giving me eyecrossing
    headaches with all of its blinking.
    I cant find any documentation on this issue, but maybe
    because there is a more technical term to describe "blinky" and
    "strobey" that I cant think of while searching. Anyone have any
    suggestions? I'm about to dive into my first Ektron project and
    must use version 8.
    thanks

    Following the avalanche of hints and tips I am pleased to
    report that there is a problem with Dreamweaver MX and MX2004 when
    connecting to Access databases running on Windows Server 2003 SP1.
    Whilst it is covered in the knowledge base I note that others in
    the forum are having similar difficulties with Sequel connections
    and unable to retrieve failures.
    There is a "fix" - SP2DBFix1.0.2.mxp - for my problem and I
    cannot be alone in experiencing this.
    And just in case anyone from Adobe is reading this, you
    should have written to all your registered and paid up members
    informing us of this problem when WS2003 SP1 was released!

  • Funny bug in SQLDev 2.1EA - tables with same name...

    Hi,
    i opened two session in SQLDev 2.1EA, on two distinct instances.
    These sessions are open against the same user and i am clicking on a table with the same name.
    This happens only when the "pin" icon is not set.
    Apparently SQLDev doesn't not distinguish between the two connections when it comes to display the object attributes like columns, data, indexes and so on.
    So, practically, if i click on object 1 (instance 1), click on data tab, then i click on object 1 (instance 2), i still see the data for instance 1, no matter if i ask to refresh.
    This doesn't happen if i open each object in a separate tab.
    This happens on SQLDev on Mac OS X.
    Flavio
    http://oraclequirks.blogspot.com

    Sorry to drop in, but I suppose many have this setup: the same users/connections on both development and production databases.
    However I'm not able to reproduce now on my 10g DBs, I did see the same problem a couple of versions ago (when I was on 9i), but AFAIK that got fixed. Maybe regression anyway?
    Regards,
    K.

  • Possible bug: validation errors raise at table row and current row is lost

    Hi everybody,
    I've just implemented a simple test case against the HR schema:
    1. Create Business Components from Tables: choose only Employees. That will generate Employees EO, EmployeesView VO, associations, viewlinks and AppModule with the following hierarchy: EmployeesView1 > EmployeesView2
    2. Create a simple page with an ADF Table based on EmployeesView1.
    3. Surround af:table with af:panelCollection
    4. Add toolbar buttons to the af:panelCollection "toolbar" facet:
    <f:facet name="toolbar">
      <af:toolbar id="t2">
        <af:commandToolbarButton actionListener="#{bindings.CreateInsert.execute}" text="CreateInsert" disabled="#{!bindings.CreateInsert.enabled}" id="ctb1" partialTriggers="t1"/>
        <af:commandToolbarButton actionListener="#{bindings.Delete.execute}" text="Delete" disabled="#{!bindings.Delete.enabled}" id="ctb2" partialTriggers="t1"/>
      </af:toolbar>
    </f:facet>5. Create a af:panelGroupLayout that encloses everything under af:form
    <af:document id="d1" title="Employees">
      <af:messages id="m1"/>
      <af:form id="f1">
        <af:panelGroupLayout id="pgl1" partialTriggers="pc1:ctb1 pc1:ctb2">
    ...6. Delete the LastName field for any row in the table and click anywhere on the next row in the table. This will raise a mandatory field validation error. At this point, the selected row is the one you've just clicked on, but the focus (mouse cursor) is in the LastName field that raised the error.
    7. Fill in the LastName field. Don't click on it; just write something, as the field is already focused.
    8. Click the CreateInsert button
    Result: The current row is still the one you clicked on before, not the newly created row. If you click on this new row to fill in its fields, validation errors raise for every mandatory field.
    I'd appreciate any help on this. I can send you the test case if necessary.
    Thanks in advance,
    Barbara
    Version
    ADF Business Components 11.1.1.56.60
    Java(TM) Platform 1.6.0_18
    Oracle IDE 11.1.1.3.37.56.60

    Hi,
    if you
    1. Select (click) a row to edit last name (don't edit last name though)
    2 Press "CreateInsert"
    Does this then make the new row becoming the current if nor errors are shown ?
    Frank
    Ps.: If so, please send me the test case. My mail address is in my OTN profile. Just zip the workspace and change the ".zip" extension to something like ".unzpme" because the Oracle firewall bounces all mails with zip attachements

  • Small hyperlink bug in 10.1.3 (preview)?

    When creating a JSP, and selecting some text to convert to a hyperlink, pressing the hyperlink button will show a dialog to enter the hyperlink's details, but the generated code will be inserted AFTER the selected text. The generated hyperlink is 0 (zero) characters wide, so, not only is it in the wrong place, it's also unclickable.
    Easy to solve, but for me this is a bug.
    If this has been posted before, please apologize. New to JDeveloper, and could not find it on this forum.
    Read about this bug on my blog (and watch the Viewlet how to reproduce it): click here to view bug

    I'm stupid, by following the tutorial without thinking. It says "click on the Link element on the palette". If I'd clicked on the link button on the formatting toolbar (between background color and bold) everything would have worked fine.
    Sorry to have bothered you.

Maybe you are looking for