Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Open Source Pay

    In Denmark it was that long ago that employers actually could decide that you couldn't disclose what you earned to your colleagues.

    It was only with the passing of a gender...

  • RE: Create Parent Child Structrure from dataset

    The code is made by alphanumeric characters, and describes a hierarchy.

    The root is 'A', and it has itself as parent (just a convention, we could make the parent null)

    A child...

  • RE: Create Parent Child Structrure from dataset

    Hi

    The code defines the family relationship. If member m is an ancestor of member n, then code m like code n + '%'.

    The most immediate ancestor is the parent.

    I have...

  • RE: Update many tables without hardcoding the table name

    If you are doing in pl/sql (its the Oracle forum) then you can use execute immediate

    Do something like

    for v_tab in namecursor

    loop

    execute immediate('update table '||v_tab.name||' set colum=''newvalue''');

    end loop;

    where namecursor is a...

Viewing 4 posts - 1 through 4 (of 4 total)