How to see inserted or updated record when they are inserted or updated?

Hello friends ,
I have a huge table with, it do NOT contain any field with date or date and time.
I want date and time when record are inserted or updated.....
There are many row inserted in table ,So how to know when rows are inserted in particular table.
& How to retrieve it using  SQL query?
My database is 10gR2 and win-xp is the OS.

Try some thing like this
select  Field, Filed2, ORA_ROWSCN, SCN_TO_TIMESTAMP(ORA_ROWSCN)  from Table Name
You will get the recent  date of  insert/update of record

Similar Messages

  • How can i delete songs from iPhone when they are grayed out

    how can i delete songs from iPhone when they are grayed out. It doesnt let me delete from itunes either and its just taking up space on my iphone and i cant even listen to the song that are grayed out

    I did this with about 100 songs, and the problem is everytime I connect my iphone with itunes, It will automatically sync back every single song I did delete on the phone by swiping.
    I did search on google and found out that serveral people has this problem. The songs wont delete from itunes library.
    So why do they even make this function if it only deletes the songs for a short time?
    Best regards PelleRPG.

  • Can't see my buddies' status messages when they are available.

    So, I don't know if anyone knows how to fix this, but I've already checked the prefs, and there's nothing in there about this.
    If you have any idea how I can fix this, please please let me know.
    I can only see people's messages when they are away. I can also see the little arrow when they have the message set to Itunes, but the song doesn't show up, only the little arrow which connects you to the Itunes music store.
    That's pretty much all I can tell you. So please help me if you can.

    This is ridiculous.
    No it isn't. It's just mildly inconvenient because a fun feature of iChat is temporarily offline.
    I wish Apple would buy AOL.
    Why? Because AIM status messages are that vital to you, or because you'd like to see Apple waste cash on a redundant, failing dinosaur like AOL?
    Dual 2-gig G5   Mac OS X (10.3.9)  

  • How can I watch my tv shows when they are in the cloud and I am not near wifi?

    I can't watch my tv shows on my phone when they are in the cloud and I am not near wifi.  How can I get them out of the cloud?

    You have to download them or sync them to your phone ahead of time.

  • How to distribute photos on a page when they are all smart objects

    Hi there,
    I have 5 images on a page in 3 columns, 2 each of 2 and 1 of 1
    They are all Smart Objects that have been resized and cropped to fit the openings they now occupy.
    I've been sizing, aligning and distributing these things by eye but watched the tutorial on how to use the alignment and distribution buttons so thought I'd try that.
    Things seem to go ok when aligning edges ...for example if I select the two images in the center column and align their left or right edges that works OK. Similarly I can select the top or bottom edges of the large on in the column of its own on the right and align its top edge with those in the other two columns and ditto for the bottom edge.
    When 'distributing' them however, things don't work, The distribution tool seems to be working off the underlying images rather than the visible images which have been resized ...and sometimes changed ...via the 'replace contents' command.
    Is there a way to get PSCC 2014, latest build ...to distribute based on what is visible instead of what the underlying image is?
    Thanks,
    jj

    Photo Collage Toolkit (Image File are placed in as smart object layers.)
    Photoshop scripting is powerful and I believe this package demonstrates this A video showing a 5 image collage PSD template  being populates with images:
    The package includes four simple rules to follow when making Photo Collage Template PSD files so they will be compatible with my Photoshop scripts.
    Size the photo collage templates for the print size you want - width, height and print DPI resolution.
    Photo collage templates must have a Photoshop background layer. The contents of this layer can be anything.
    Photo collage templates must have alpha channels named "Image 1", "Image 2", ... "Image n".
    Photo collage templates layers above the background layers must provide transparent areas to let the images that will be placed below them show through.
    There are twelve scripts in this package they provide the following functions:
    TestCollageTemplate.jsx - Used to test a Photo Collage Template while you are making it with Photoshop.
    CollageTemplateBuilder.jsx - Can build Templates compatible with this toolkit's scripts.
    LayerToAlphaChan.jsx - Used to convert a Prototype Image Layer stack into a template document.
    InteractivePopulateCollage.jsx - Used to interactively populate Any Photo Collage template. Offers most user control inserting pictures and text.
    ReplaceCollageImage.jsx - use to replace a populated collage image Smart Object layer with an other image correctly resized and positioned.
    ChangeTextSize.jsx - This script can be used to change Image stamps text size when the size used by the populating did not work well.
    PopulateCollageTemplate.jsx - Used to Automatically populate a Photo Collage template and leave the populated copy open in Photoshop.
    BatchOneImageCollage.jsx - Used to Automatically Batch Populate Collage templates that only have one image inserted. The Collage or Image may be stamped with text.
    BatchMultiImageCollage.jsx - Used to Automatically Batch Populate Any Photo Collage template with images in a source image folder. Easier to use than the interactive script. Saved collages can be tweaked.
    BatchPicturePackage.jsx - Used to Automatically Batch Populate Any Photo Collage template with an image in a source image folder
    PasteImageRoll.jsx - Paste Images into a document to be print on roll paper.
    PCTpreferences.jsx - Edit This File to Customize Collage Populating scripts default setting and add your own Layer styles.
    Documentation and Examples
    Any size image can be fitted to any image location however it works better when images and image locations have the same orientation. Landscape to Landscape Portrait to portrait.
    Note the difference in the populated images here when Image and image location orientations don't match up.

  • Oracle insert problem(records not in the order they are inserted)

    hi, all:
    I tried to insert a word list into a oracle table, everything is fine except that the words are not in the order they are inserted. For example, the words are inserted in the following sequence:
    accreted     
    accreting     
    accretion     
    accretionary     
    accretive     
    bladebone
    bladed     
    bladeless
    bladelike
    When I retrived the resultset from the table and iterate through each of the record, the words are not in the order inserted, i.e., it may look like this,
    accreted     
    accreting     
    bladebone
    bladed     
    accretion     
    accretionary     
    accretive     
    bladeless
    bladelike
    This strange phenomenon won't happen when the word list is small, like 500 words or so, but when the number of words reaches around 10,000, it takes place. My coworker also experienced this problem when trying to insert large volume of data into oracle table.
    The code I used to insert into the DB table:
    BufferedReader reader=new BufferedReader(new FileReader("C:\\Dictionary.txt"));
    while( (line=reader.readLine())!=null )
         sql="INSERT INTO DICT " +
         "VALUES ('" + line +"')";                         
         statement.executeUpdate(sql);
    Any advice will be highly appreciated,
    thanks

    Well, the best thing to do is follows scsi-boy's advice and add the additional column and either put a sequence number in it from the Java side as you insert, or use an Oracle sequence object to put a sequence number in it from the Oracle side (which is sort of like an auto-generated value, but different).
    Note that an Oracle sequence generates numbers in sequence, but possibly with gaps (usually if the database is rebooted), unless you do some things that slow sequences down substantially. Sequences can also be something of a bottleneck on RAC clusters. See:
    http://www.dizwell.com/oracle/articles/autonumbering.html
    However, if your coworker is commiting after each and every insert (which is bad form and slows the database down, -10 points), and if your coworker is also never ever ever updating the columns after they've been inserted, and if your coworker is using Oracle 10g and not some older version such as 9i, then your coworker could use the ORA_ROWSCN pseudo-column to order by. Those are very very severe constraints and you shouldn't begin to consider doing it that way without a very good reason, and right now you and your coworker wouldn't know a good reason if it snuck up and bit you on the butt, you've got a lot of learning the basics first.

  • How do I show the details of a customer when they are logged in a secure zone?

    How do I show the details of a customer when they are logged in a secure zone?
    I want to show the customer details as well as some customer CRM fields that are applied to the customer. None of these are entered via a form, they would be entered by the client. The customer would need to be able to log in to view the information and get an email alert when it is updated. Help!?

    Hi,
    You might want to look into customer service zones which allows customers once logged in to see their case, order and own details. 
    - http://kb.worldsecuresystems.com/133/bc_133.html
    - http://kb.worldsecuresystems.com/kb/customer-service-area-orders.html
    - http://kb.worldsecuresystems.com/kb/allowing-customers-view-update-crm.html
    Kind regards,
    -Sidney

  • Iphoto can't be opened now after downloading updates.  Message says, "Check with developer to make sure Iphoto works with this version of Mac OS x. Wouldn't update Iphoto when my husband was doing updates..

    Can someone help me figure out how to get my iphoto open again.  It says...Error message: "Iphoto can't be open because of a problem. " Message says, "Check with developer to make sure Iphoto works with this version of Mac OS x. Wouldn't update Iphoto when my husband was doing updates..

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store or have a Recent Mac you can find it in your Purchases List.

  • How do i get my contacts back? they are backed up by i cloud but when I "MERGE" only the new ones are there and not the old ones

    how do i get my contacts back? they are backed up by i cloud but when I "MERGE" only the new ones are there and not the old ones

    Hi sfuentes,
    You need to check iCloud to see if they are actually there. Go to iCloud.com and sign in and then look at your Contacts there to see if the old ones are still showing on iCloud.
    If they are not, then you can either re-enter them while you are on iCloud.com, or you can restore your device from the backup where you saved them:
    https://support.apple.com/kb/ph12521
    Cheers,
    GB

  • What do i do when iPhoto Deletes my recent pic's all the way to 2010????? i opened the program and it said i needed to update my library otherwise i wouldn't be able to view the images that were not updated-- and now they are gone!!!!!! WHat do i do!!!!!!

    what do i do when iPhoto Deletes my recent pic's all the way to 2010????? i opened the program and it said i needed to update my library otherwise i wouldn't be able to view the images that were not updated…… and now they are gone!!!!!! WHat do i do!!!!!!  Is this some type a virus???? my mac is protected!!!!! tried to chat with an IT person but they keep asking if its like a tech problem and it is just iphoto

    You should get your keyboard checked as it's repeating  on a lot of keys and makes you look silly.
    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • How to transfer music from one computer to another when they are at 2 diffe

    yes hi I was wondering how do i get music off of my one computer to another when they are in two different homes. they are both authorized to my account but i have music on one that i want on my other. can anyone please help.

    Hello!
    To have same library on both of your authorized machines, you need first locate, on both of them, the iTunes Media Folder location (Preferences > Advanced) then you need make them syncronized. How to do this, will exists some tools, I will not go further about that stuff, you can google them... back to topic:
    After you do any change to the files content of one library, you can just drag and drop the media folder on iTunes, it will rescan the library itself and update all changes you made.
    Be aware if your machines are authorized on multiple accounts, you need be logged on store with the account used to purchase any drm-enabled song you want to listen.
    Message was edited by: Andrea Rimicci. Typos

  • How do I get my contacts back on my phone I update it now they are missing

    How do I get my contacts back on my phone I update it now they are missing

    I just lost all contacts. I tried the backups but as soon as restore was completed, it would lose notes again. I disconnected after recover but still no notes.
    Out of desperation, as I have all my passwords etc on it (yes, I know) but I trusted the iTunes backup system. I looked on the net and found a recovery company called Wondershare, Dr Phone. I tested it and there it all was, but it has now cost me $69 to purchase key number to download my info.
    All contacts info and everything else is available. It saves it in a file which you open.
    Now I have to type it all in again. I will keep manual backups now as well as using Dropbox from now on. Nightmare. I hope this helps you all.
    <Link Edited By Host>

  • My ipod 5th gen won't change volume when headphones are plugged in, but when they are not I can change the volume on the speaker.  How do I fix this?

    My ipod 5th gen won't let me adjust volume when headphones are plugged in, but when they are not I can adjust the volume on the speaker.  How do I fix this?

    Try a hard reset of the Nano. To do this, press and hold both the Select (Center) and Menu buttons together long enough for the Apple logo to appear.
    I assume you have double checked to make sure you are plugging the headset all the way in meaning the white part of the headset is flush with the body of the Nano?
    B-rock

  • I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    I have dragged 2 files to the trash bin but I cannot delete them from the trash bin. It keeps telling me these files are in use when they are not. How do I delete these files? One is a txt file and the other is an xls file

    From the Finder menu select 'Secure Empty Trash'. If this or the suggestion above doesn't resolve the problem take a look at the various suggestions in this link:
    http://www.thexlab.com/faqs/trash.html

  • The some words in perfectly formatted messages I email are merging or joining together likethis or evenlikethis when they are recieved. How do I fix this?

    When I send emails that are perfectly formatted they are being somewhat truncated when they are received by whomever I'm sending them to. Words will be joined together throughout the email in combinations of two or three.
    I know this is happening because when someone responds to my email, I see the email that I have sent them (in their response email) and it is messed up as described above. I recently asked one of my recipients if this was something that was common with my emails and I was told yes.
    Here is an example, cut and pasted from an email sent via Thunderbird: "A number of years ago we were speaking with Stephanie MacDonaldat CIT about our film/video production services. Our Account Exec assigned to your account left a number of months later and we subsequently lost contact.
    I just visited your web site and noticed thatyou are using video to help define your services and corporate culture. We'd love to be considered if you are planning any more productions.
    One genre of web video thatyou may be interested in is 'Recruiting'.
    Companies that wish to attract young, bright talent, arereaching out with fun and engaging videos distributed online and through social marketing. I noticed that you have a Careers page, but no video. Is this something that you could be interestedinat some point?
    We recently produced one of these videos for an IT company located in Torontoand I'd be delighted to send you alink if you like..."
    The version of Thunderbird I am using is 17.0 and I am running the program on a MacBook Pro with OS X 10.7.5 installed.
    Fixing this issue is critical as my emails look very unprofessional and leave a negative impression with my contacts. Please tell me what I can do to fix this.
    Best regards,
    Derek Shipman

    are you pasting text from another source into Thunderbird?
    Does it appear correctly in your send folder?

Maybe you are looking for