How can i set a column which would show me the name of the user

how can i write a trigger which would show me the name of the user now make changes in the table.

872959 wrote:
how can i write a trigger which would show me the name of the user now make changes in the table.I think what sb is trying to say is: if you mean the database user, you can use the USER session variable to identify the database user:
http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/functions227.htm#SQLRF06156
you would write a before each row trigger to update an "updated_by" column on your table to be USER.
e.g.:
:new.updated_by := USER;

Similar Messages

  • Pages:  How can I sort one column of words and not have it affect the other columns?

    How can I sort one column of words and not have it affect the other columns?  I have opened the inspector to the edit columns and rows under Table.  It will sort the column, but then it changes the other colums as well.  I know that if I use Numbers, it will work, but I want to know how to do the same thing in Pages.

    Hi Peter,
    Numbers sorts full rows on values in selected column(s). The technique for sorting a single column is essentially the same as Jerry is describing for Pages tables—separate the (data in the) column to be sorted, sort it, return it to the table.
    In Numbers the actual column may be separated from the original table, sorted, then returned. In Pages, the data must be extracted, sorted, then pasted back in, overwriting the unsorted data (if it was left in the original table).
    iWork tables follow a database model in which each row is a Record, and each column holds a Field within the records.
    As evidenced by the current question (and several similar questions arising in the Numbers community) that model doesn't apply to the way some users, especially some who come in from the MS Excel world, use tables.
    With Excels model—islands of data on a single large table, the ability to sort one or a selected few columns of data makes sense. One 'island' may comprise only cells AA21:AH50. Sorting that small 'table' should be possible without disturbing the rest of rows 21-30, which are probably part of one or more other 'data islands' in the sea that is a MS Excel spreadsheet.
    In Numbers, each of those 'islands' would be a separate Table, and that Table would be sortable without disturbing other Tables in the document.
    Regards,
    Barry

  • How can I set up email on iphone 5 to leave emails on the server if I delete them from iphone?

    How can I set up email on iphone 5 to leave emails on the server if I delete them from iphone?

    Hi RK GARG,
    Welcome to the Support Communities!
    The article below will explain how to access the Advanced settings in your email account.
    Click on the link to see screen shots.
    To answer your question ... change the Deleted Messages -  Remove field to Never
    Using a POP account with multiple devices
    http://support.apple.com/kb/HT3228
    In Settings, select Mail, Contacts, Calendars.
    Select the account for which you wish to change the settings.
    Select Advanced, located at the bottom of the list.
    Cheers,
    - Judy

  • How can I set Array field which reside in a Structure field?

    I use Adobe java XMP toolkit.
    There are a few methods for setting structure and array items.
    setStructField() and appendArrayItem().
    However ducu stated that member of Structure may be array or structure, moreover array items also may be arrays or structures.
    So how can I set Array field in Structure or Structure field in Array???
    Thanks
    Andrey

    OK, it worked first time (without exception) as I tried to set value of EXISTING field.
    The trick is to add array or struct BEFORE setting their values.
    This short example shows how it works:
    XMPSchemaRegistry registry = XMPMetaFactory.getSchemaRegistry();
        registry.registerNamespace(extNS, "pdfaExtension");
        registry.registerNamespace(shemaNS, "pdfaSchema");
        registry.registerNamespace(propertyNS, "pdfaProperty");
        XMPMeta m = XMPMetaFactory.create();
        m.appendArrayItem(extNS, "pdfaExtension:schemas", new PropertyOptions().setArray(true), "", new PropertyOptions().setStruct(true));
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:prefix", "dc");
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:namespaceURI", "http://purl.org/dc/elements/1.1/");
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:schema", "Dublin Core Schema");
        m.appendArrayItem(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property", new PropertyOptions().setArrayOrdered(true), null, new PropertyOptions()
            .setStruct(true));
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:name", "contributor", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:category", "external", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:description",
            "Contributors to the resource (other than the authors).", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[1]/pdfaProperty:valueType", "bag ProperName", null);
        m.appendArrayItem(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property", new PropertyOptions().setArrayOrdered(true), null, new PropertyOptions()
            .setStruct(true));
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:name", "coverage", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:category", "external", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:description", "The extent or scope of the resource.", null);
        m.setProperty(extNS, "pdfaExtension:schemas[1]/pdfaSchema:property[2]/pdfaProperty:valueType", "Text", null);
    Above code creates following XMP:
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.1.1">
      <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:Description rdf:about=""
            xmlns:pdfaExtension="http://www.aiim.org/pdfa/ns/extension/"
            xmlns:pdfaSchema="http://www.aiim.org/pdfa/ns/schema#"
            xmlns:pdfaProperty="http://www.aiim.org/pdfa/ns/property#">
          <pdfaExtension:schemas>
            <rdf:Bag>
              <rdf:li rdf:parseType="Resource">
                <pdfaSchema:prefix>dc</pdfaSchema:prefix>
                <pdfaSchema:namespaceURI>http://purl.org/dc/elements/1.1/</pdfaSchema:namespaceURI>
                <pdfaSchema:schema>Dublin Core Schema</pdfaSchema:schema>
                <pdfaSchema:property>
                  <rdf:Seq>
                    <rdf:li rdf:parseType="Resource">
                      <pdfaProperty:name>contributor</pdfaProperty:name>
                      <pdfaProperty:category>external</pdfaProperty:category>
                      <pdfaProperty:description>Contributors to the resource (other than the authors).</pdfaProperty:description>
                      <pdfaProperty:valueType>bag ProperName</pdfaProperty:valueType>
                    </rdf:li>
                    <rdf:li rdf:parseType="Resource">
                      <pdfaProperty:name>coverage</pdfaProperty:name>
                      <pdfaProperty:category>external</pdfaProperty:category>
                      <pdfaProperty:description>The extent or scope of the resource.</pdfaProperty:description>
                      <pdfaProperty:valueType>Text</pdfaProperty:valueType>
                    </rdf:li>
                  </rdf:Seq>
                </pdfaSchema:property>
              </rdf:li>
            </rdf:Bag>
          </pdfaExtension:schemas>
        </rdf:Description>
      </rdf:RDF>
    </x:xmpmeta>

  • How can I set new tabs to automatically show my homepage? (My homepage is Google)

    Whenever I open a new tab, it has a "New Browser tab" page with a search bar powered by ask.
    I would like to be able to set any new tabs I open using the "add tab" tab, to Google.com
    I can set my homepage to google, but cannot set any new tab to google. How can I do this?
    Thanks
    Heather

    I got this - the culprit was the Foxit .pdf creator toolbar.
    Regards,
    Springnuts.
    -

  • How can I set up a new account without auto deleting messages on the server?

    Ive got accounts on COMCAST.NET (are those imap accounts?) and when I created a user account on Thunderbird for one of them the autocreate process immedaitely started downloading messages from my server before I was able to set the "keep messages on server" flag. (Its been a few months, forgive me if I am not using the exact right option text but you get the idea.)
    How can I create a Thunderbird account that will download all the message on my server (comcast.net) and leave them all there?
    That's the only thing keeping me from switching to Thunderbird. Please help - comcast's online web client is not the most bug free thing in the world.
    (Note, I am setting up a new win7 system, had been using OE 6 on winXP. I assume I am better off trying this than running OE in XP in a virtual window - and even if I moved my old message bases from XP I still need to create an account that won't immediately start downloading/deleting messages from my server before I can configure it not to.)
    Any help appreciated.

    Comcast only offers POP accounts, and one way to set up the account and enter all the settings before it connects to the mail server, might be to do it Offline:
    https://support.mozilla.org/en-US/questions/991539#answer-547878
    The server settings are given [http://customer.comcast.com/help-and-support/internet/setting-up-thunderbird/ here], but the method is for Online account setup.

  • How can I copy mp3 files which are already located by itunes to the actual itunes folder?

    Dear all,
    I would like to transfer my whole itunes library to a new computer. I know that this can be done by copying the whole itunes folder on the old computer (if you want to keep all the data of the itunes files). However, I have a little problem. Since I had a long period in which I did not download music from itunes or I got music from others, most files are not in the itunes library folder. I kept them in many different folders all over my hard disk, because it is a quite big collection from the past decade orso. In that time, I just dragged the files to itunes, so itunes can now locate them. They are not in the actual itunes library folder though. Is there a possible way to let itunes locate the files (it already has the locations) and put/copy them in the itunes library folder?
    Thanks in advance!!

    With these options selected in Edit > Preferences > Advanced:
    select File > Library > Organize Library...  When you get this prompt:
    check the Consolidate files box and - if not greyed out - the Reorganize files ... box, and click OK.  iTunes will then copy any media files that are not stored in the iTunes Media folder structure into it, so that you can then copy the complete iTunes folder to your new computer.

  • How can I set up Mavericks Server on a Test Mac without affecting the production server

    I have Mountain Lion server running as on an xserve as our main server, it has developed a few issues particularly related to Profile Manager and Certificates.
    So I was going to use the move to Mavericks as an opportunity to have a fresh start.
    So I want to set up Mavericks Server on a mac mini temporarily to test it and configure all the services before moving it to the Xserve as the main server.
    My question is what is the best way to do this, obviously I can't use the same IP or hostname as the main server if it is connected to the network, and some services can't be set up without a network connection.
    So do I give it a new IP and hostnmame for now and then change it later on, my concern is that changing the hostname might cause issues down the line.
    So what is the best way to set up a fresh server in preperation as a drop in replacement of the current server?

    Ok I got the test server set up fine and cloned it over to a spare partition on the Xserve.
    But when I booted into the new partition several things broke.
    1st the IP address changed itself despite the fact it is set to Manual, The Alert section of Server.app let me repair this.
    Profile Manager no longer worked, the web page just said Profile manager could not be found, was working fine on the test mac
    Tried deleting the OD master and resetting Profile Manager but it still didn't work.
    DNS needed repairing and restarting
    I decided at that point to abandon it and go back to the test mac where everything is still working.
    Any tips for overcoming these issues.
    I have thought maybe it would be best to turn off all server services before making the clone and then turn them on one at a time once it has been restored to the new partition on the xserve
    Also if the certificates that are created when making an OD master were made on the mac mini does that cause a problem when it has been restored to a different machine, should I leave OD off and just set it up when it is in its final place?

  • How can I set up multiple tabs to come on at Start-Up, the way that Internet Explorer and Chrome allows one to do?

    It appears that Firefox might not have that feature. It's an important feature to me, and I hope I do not have to go back to IE or Chrome to get that Start-Up option. Can anyone tell me if I can set up a variety of tabs with my most-used URLs to open at Start Up?

    Firefox can start multiple home pages; they are separated by the "|" keyboard character. The easiest way to set up multiple home pages is to start with no tabs open, then open only the tabs that you want as home pages, then click:
    *click Firefox button > Options > Options > General > Use Current Pages
    *using the Menu Bar: click Tools > Options > General > Use Current Pages
    Be sure on the Options > General tab that
    *"When Firefox starts:" is set to "Show my home page"
    See: [http://support.mozilla.com/en-US/kb/How+to+set+the+home+page How to set the home page]
    You have an old version of Java Console in your Add-ons > Extensions that you that was not removed by Java when updating. You can easily remove it. The item is:
    *Java Console 6.0.13 {CAFEEFAC-0016-0000-0013-ABCDEFFEDCBA}
    *Follow these instructions to remove it: http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    <br />
    <br />
    '''You need to update the following.''' The Plugin version(s) shown below was/were submitted with your question and is/are out of date. You should update to avoid known security issues with the version(s) you have installed. Click on "More system info..." to the right of your question to see what was included with your question.
    *Shockwave Flash 10.0 r22
    *Next Generation Java Plug-in 1.6.0_24 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • How can I set multiple videos to "TV Show"?

    I'm importing an entire season and they all default to "Movie". So, I know that I can set the video type to "TV Show", but if I select more than one video, there is no "Video" tab. Does anyone know how to set the types of multiple videos at once?

    This is a good question and I haven't found a method yet either. This seems to be an oversight on Apple's part.
    Message was edited by: Conal Ho

  • How can i set each still image to show for 1 frame?

    im trying to create a 60fps timelapse but i just can't get each image to show for less than 2 frames, i've gone to edit>preferences>import and set the still footage length to 0:00:00:01. and i've set the sequence footage to 60fps(although i'm not positive what this does)
    i then bring my photos down to create new composition set it to 0:00:00:01 still duration and then each photo shows for 2 frames, any ideas?
    thanks a lot!

    If you import a single frame as an image sequence it will be 2 frames long.
    If you import an image sequence as an image sequence you won't be able to see the individual frames in the timeline as being 2 frames long. However, if your composition is set to 60 fps and the image sequence is interpreted as 30 fps, when you step through the footage there will be pairs of identical frames. Change the interpretation to 60 fps and the image sequence will be half as long but each frame will be unique.

  • How can i set Adobe to open pdf from a secure website in the browser, it just pops up and asks to open save or download. we want it to just open the PDF directly in the browser with no popups, using IE 11

    Hi,
    We are running Internet explorer 11 with the latest version of Adobe Reader.
    have found when users login to a secure website and it has pdf links on there, it doesnt open these pdf directly in the browser, it wants to save them and then open them.
    is there anything we can change to allow them to be opened directly in the browser? 
    Thanks,
    Cam

    Hi campbellk19046717,
    Please refer the KB doc link mentioned below if that might help:
    Acrobat Help | Display PDF in browser | Acrobat, Reader XI
    Let me know.
    Regards,
    Anubha

  • How can you set a calendar date to repeat every 4 weeks on the ipad

    Apart from using a mac...

    In iOs, the options are limited and do not include every 4 weeks. You can't, other thatn creating multiple entries (say two that each repeat every two weeks).

  • In Pages, How can I get headers and footers to show up on more than the first page of each section?

    In Mountain Lion, I considered myself a fairly expert user of Pages. Since "upgrading" to Mavericks, I can't get even basic things to work anymore. My current problem is that the headers and footers are only showing up on the first page of each section. A related annoyance is that if I copy the information in a header or footer, all the associated formatting disappears when I paste it. But the first problem is the one that matters — headers and footers that only show up on one page sort of negate the whole point of headers and footers.

    If you click the link I posted previously, it takes you right to the Pages community.
    Here >  Pages: iWork: Apple Support Communities
    Then click New.

  • HT5620 How can I set up two separate accounts on one iPad?

    How can I set up two separate accounts on one shared iPad?

    The iPad is meant to be a single user device.
    It is possible to use multiple ID's on an iOS device, but when you switch ID's and download content with another ID, you associate the device with that ID for 90 days and lock yourself out of the other ID for that 90 day period.
    So while it is possible, it's not advisable.

Maybe you are looking for

  • Compiling with dependencies -- can't get it to work!

    I have a small application that depends on a couple of JAR files provided by the Apache Commons folks. In my IDE, I just add those JAR files to the classpath (or I've also verified that I can do so at the command line). However, I need to run this ap

  • Manager is not able to Approve the leave

    Dear Freinds, Please help me in solving this below issues. EE has applied for leave thro ESS. Manager have recd a confirmation from Work flow system . But the same is not reflecting in Manager MSS . Therefore he is not able to approve the same .  How

  • HT201250 Parallels PVM files missing in TimeMachine backup

    I did my first backup with Time Machine and noticed my Parallels PVM files where not in the folder that was backed up? I had two PVMs. A 60GB Windows8 and a 8GB Ubuntu. Is there a limit for TimeMachine for file sizes to be backed up?

  • To buy a mac abroad

    i am going to buy a mac book pro in a country different then mine but always in Europe. what kind of differences am i going to face respect to a mac i buy in my country? i think the keyboard and the language... is it possible to change completely the

  • When in my email, my links open into internet explorer instead of firefox

    When I am in my email and a message has a link and I open the link, instead of going to firefox, it opens in internet explorer, I use firefox not internet explorer.