How can I view the login activity of my users for the past 3 months or more

Hello,
I need to check the login activities of my users for the past 3 months (or more). I need to monitor unauthorized access for each and everyone of them. Does anybody have an idea on how this can be done?
Thanks for your help in advance.
Best regards,
Jun

Hello,
Thanks for the immediate response. Actually, here's what I want to do. I have a user, who always asks me to unlock his account almost every week. With this, Im worried that there might be someone trying to use his access. What I would like to do is to generate a list of all login activities for the past 3 months. The list should also contain the terminal name where the attempted login was made. This way, I should be able to track down the possible culprit.
Thanks in advance

Similar Messages

  • How can i view all privileges granted to an user?

    How can i view all privileges granted to an user? I have access to dba_ views.

    You should look at:
    http://download.oracle.com/docs/cd/B10501_01/nav/catalog_views.htm?remark=homepage#index-DBA
    Look at the views that have the letters "PRIVS" in their names:
    DBA_COL_PRIVS
    DBA_ROLE_PRIVS
    DBA_RSRC_CONSUMER_GROUP_PRIVS
    DBA_RSRC_MANAGER_SYSTEM_PRIVS
    DBA_SYS_PRIVS
    DBA_TAB_PRIVS
    ROLE_ROLE_PRIVS
    ROLE_SYS_PRIVS
    ROLE_TAB_PRIVS
    ROLE_WM_PRIVS
    SESSION_PRIVS
    Depending on what privileges you want that is where to look.
    Regards
    Tim
    You can get help from teachers, but you are going to have to learn a lot by yourself, sitting alone in a room.[]....Dr. Seus

  • Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Thank you Joe - I tried this but it's only showing a teensy amount of music - the stuff on the second users account as opposed to the giagntic library on the 'main' account. I actually went to a Genius Bar and they said that apple doesn't really want you to share music between accounts - parents don't want to hear their kids music etc. Which seemed strange, but it might be the case sadly   Thanks anyway!

  • How can i share purchased apps between 2 diff users on the same mac?

    How can I share purchased apps between 2 diff users on the same mac?

    A purchased app is associated with an Apple ID. A user with a different Apple ID cannot use the app unless they also use the same Apple ID.
    I cannot use my wife's apps nor she mine because each were purchased with different Apple IDs.

  • How can I share applications and softwares with different users of the same computer?

    First question: How can I share applications and softwares with different users of the same computer?
    Second : Can I use 2 different I cloud accounts to synt 2 iphones with one computer?

    Applications installed on the admin account are available to all user accounts unless Parental Controls are enabled.
    Yes.   Separate user accounts, help here >   How to use multiple iPods, iPads, or iPhones with one computer

  • When I copy/paste a paragraph from a PDF doc, it pastes with no spaces between words. How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue.

    When I copy/paste a paragraph from a PDF doc (onto Facebook status bar, for example) it pastes with no spaces between words.  I.e: "The manhadajugofcoolwaterand offeredmeadrink." How can I fix this? I've searched everywhere for the solution but didn't find anyone had this issue. I'm new to Apple so any help will be much appreciated. Thanks!

    I can't speak about this occurring with FaceBook since I don't use FaceBook, but I see the same type of thing when I copy and pasted from websites. It doesn't always happen and I cannot find any particular set of circumstances under which it occurs or does not occur.
    I am merely responding to let you know that it happens to me as well and I have seen no way to correct it. I'm not so sure that there is a way to correct in in that it may have something to do with how the original text is formatted in the PDF or on the website and how it eventually "fits" into the text field or the area in which it is pasted.

  • Premiere CS4 - How can you import QuickTime (.mov) videos and which settings for the sequence?

    Premiere CS4
    How can you import QuickTime (.mov) videos and which settings for the sequence?
    Please reply in plain English or if possible in German
    Greetings from Vienna, Peter

    I have not installed Quicktime.
    I got a few scenes (.mov) from a Canon Eos 70d.
    I want to create a short film (in Premiere CS4) with these scenes, mixed with photos and MP3 music.

  • How can I get MY LOGIN to stay logged in for twoweeks or more.....Currently I have to log in every time I go to firefox with ID & Password. The box does not affect it.

    When I click on the Firefox logo it owns screen and the mail box button appears. I click on that and it requires me to enter my e-mail address and password. There is a box with a checkmark in it to stay logged in but it doesn't work. Whether it is once a day or 4 times a day I go to Firefox to look at mail I have to put in the full e-mail address and password even though the box is checked to stay logged in. I really like firefox as a browser but we have to fix this for me to stay with FireFox.

    Apps can only be updated using the same Apple ID and password they were originally purchased with.

  • How can I export speech analysis text with imbedded timecodes for the creation of subtitle files?

    I found a script that allows you to export all your text layers with time codes as a .srt subtitle file. However, instead of multiple text layers, I have only one: essentially the meta data from Premiere speech analysis that with the aid of a different script, is being used at a "subtitle layer". Essentially, I'm trying to use this data to create a .srt file so I can create actual subtitles, not this hybrid animation/text layer.
    Here is the script I used to export the text layer to .srt:
    Subtitle Exporter v01  
    Script by Philipp Grolle
    www.display-artists.de
    Instructions:
    Select all the Text Layers you want to export, run the script, and save the file as .srt
    Attention: The Script has not been debugged or testet. Try it on your own risk!
    // get all the selected Layers
    var theComp = app.project.activeItem;
    var alleLayer = theComp.selectedLayers;
    // count how many layers are selected
    var anzahlLayer = alleLayer.length;
    // Enable the line below if you want to change the order of your text (ascending / descending)
    /* alleLayer.reverse(); */
       // prompt to save file
       var theFile = File.saveDialog("Save the text file.", "untitled.txt", "TEXT txt");
       // if user didn't cancel...
       if (theFile != null) {
          // open file for "w"riting,
          theFile.open("w","TEXT","????");
             // Do it for all the selected Layers
             for (x = 0; x < anzahlLayer; x++)
                 // get In- and Outpoint of the current Layer and convert to timecode (00:00:00:00)
                var timecodeIn = timeToCurrentFormat(alleLayer[x].inPoint, 25);
                var timecodeOut = timeToCurrentFormat(alleLayer[x].outPoint, 25);
               // split the value of the inPoint; converting last 2 characters  (frames) to milliseconds, and finally join it again with comma instead of colon
                var str_in= timecodeIn;
                var timeCodeAnfang_in=str_in.slice(0,8);
                var timeCodeEnde_in=str_in.slice(9,11);
                var millisek_in = timeCodeEnde_in*40; // 1000 milliseconds divided by 25 fps = 40
                var zusammen_in = timeCodeAnfang_in +"," + millisek_in;
                //split the value of the outPoint; converting last 2 characters  (frames) to milliseconds, and finally join it again with comma instead of colon
                var str_out= timecodeOut;
                var timeCodeAnfang_out=str_out.slice(0,8);
                var timeCodeEnde_out=str_out.slice(9,11);
                var millisek_out = timeCodeEnde_out*40;
                var zusammen_out = timeCodeAnfang_out +"," + millisek_out;
                //counter for the number above the timecode (in the results)
                var zaehler = x+1;
                //writing the results to file
                theFile.write(zaehler);
                theFile.write("\r\n");
                theFile.write(zusammen_in);
                theFile.write(" --> ");
                theFile.write(zusammen_out);
                theFile.write("\r\n");
                theFile.write(alleLayer[x].property("Source Text").value);          
                theFile.write("\r\n\n");
          // close the text file
          theFile.close();
          // open text file in default app
          theFile.execute();
    As I am only using one text layer, it shows me only one continious subtitle in the .srt file. Does anyone have any suggestions?

    I should add that I myself am not particularly familiar with scripts or scripting, I'm merely trying all possible solutions to my problem and this seems to be a good approach. Any help would be much appreciated.

  • How can I share my music library with 2 users on the same PC??

    I have a home PC with 2 usernames on it. I have had an ipod for a while and have a fairly large library. My wife has just got an ipod and installed itunes under her username, but I can't seem to find a way of sharing my library between the 2. The 2 usernames both have access to exactly the same hard drive. The only way round it I've found is for my wife to login under my username. Can anyone help?!?
      Windows XP  

    You are most of the way there. Each user having access to hard drive is the key. If users are limited in file privileges this is harder.
    Any files you add to your library and any files she adds to her library are available to the other. Just not automatically. Each user must add the files to their own library using the add file or add folder option from menu bar.
    What I have done is set library location to a location outside of My Documents\My Music. On my network storage I have a folder names s:\itunes. Both accounts iTunes are set to use this location for the library.

  • How can I correct my email address on my iphone for the app store

    How can I correct my email address on my iphone so I can access the app store and itunes via my phone. The address is correct on my laptop and ipad so have no idea what's going on. All I know is that I cannot get into the app store or itunes on my iphone. Does anyone have any ideas please

    Hi there gillian115,
    You may find the information in the article below helpful.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    -Griff W. 

  • How can I cope iPhotos from one to another user on the same mac

    How can I copy my iphotos from on user to another on the same mac?

    Depending on how many pictures you wish to share there are different options.
    1) Steps to share your whole iPhoto Library
    A) Share your photos
    Firstly setup a shared folder that the other user(s) will be able to access. This can be done in System Preferences, Sharing, then selecting the checkbox next to 'File Sharing'. You'll then want to select the folder to share and also the users who can access it.
    In your instance, I would suggest sharing the folder where your 'iPhoto Library' file resides, which is most likely going to be in the default 'Pictures' folder. The other user will then be able to access your 'iPhoto Library' in their iPhoto application under their user account and see all contents in your iPhoto library.
    B) Configure the other users iPhoto to access your shared iPhoto Library (or any library of your choice)
    Logout of your account and into the user who requires access to your iPhoto Library. Find the iPhoto application, press and hold the option/alt key and click to open the application. 'What photo library do you want iPhoto to use?' will appear in a window, click 'Choose', navigate to your preferred iPhoto Library and iPhoto will now load your pictures.
    2) Steps to share a few selected pictures
    You will follow the same steps as above in order to setup a shared pictures folder, however in your user account, drag and drop photos out of your iPhoto library into a shared folder which the other user can access.
    Notes:
    The method of sharing your whole iPhoto Library means that both users will be accessing/editing the same library. This means you will be able to see pictures imported/edited by each other. If this is undesired, you can create a copy of your iPhoto library on the 2nd user account instead of both accounts running the same library from a shared folder.

  • How can I reassign an iPad to a new user when the previous user is not available?

    I am in IT for my company and we issue iPads to team members. When they separate we wipe the iPads and keep them available for reassignment.
    I am trying to reassign one of the returned iPads to another user now. It is not allowing me to do so. I see on Apple's support site, there instructions for resolving this if the previous 'owner' is available, but I do not see steps for if they are not.
    I will try calling Apple support as well... However, comments and suggestions you might respond with are appreciated.
    Thanks

    iCloud: Activation Lock
    http://support.apple.com/kb/PH13695
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    http://support.apple.com/kb/TS4515
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    Talk to Apple Support. A Senior Advisor could unlock the device as long as you are able to provide the device serial number and proof of purchase.
    The direct number for Apple’s Support is (800) 694-7466
    Streamlined email process for removing activation lock
    AppleCare has announced a new process to assist institutions with returned devices which may be activated locked.  For customers who experience this for the first time please call AppleCare at 800-800-2775 so that the process and needed documentation can be explained.  After the initial call customers can email with the required documentation for all Activation Lock Removal requests.
     Cheers, Tom

  • Purchased Adobe Acrobat 9 Pro a few years back.  Disc is missing.  How can I purchase a new disc from your company for the same software.  I don't want to upgrade at this time.  Thanks

    I have lost the original disc of adobe acrobat 9 Pro.  Is there any way to purchase another disc so that I can download it on the computer I use.
    Thanks
    Lou

    You are not likely to find a disc available.  You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • How can I sync/import/export bookmarks between different users on the same computer

    To save time, I want to sync/import bookmarks between/from another user on the same computer.

    Many thanks twalker for your prompt and simplified explanation for resolving my problem which is much appreciated by this tarnished silver surfer. I will now arrange to download FX4 and follow your instructions.

Maybe you are looking for

  • IMac harddrive problem

    I've got a big problem with my iMac. About 4 weeks ago my Mac began to slow down and having all kind of weird hiccups. I did a disk check with the included disk utility and it gave a lot of errors and it couldn't be repaired, so I booted the disk uti

  • Turkish Character - Display Problem

    Hi, Recently we upgraded our systems, ECC 6.0 from 4.7, and now using Integrated ITS with NetWeaver 2004. Eventhough turkish characters like "ş ğ ı" was correctly displayed in early version, standalone ITS 6.20, when we included charset=UTF-8 or char

  • Never ending restart after restore from 1.1.4 to 2.0.2

    restored it because i didn't want any of the music on it. so after restore completed it said restarting iphone, and it never restarted, so i soft restarted the phone, the lock and home button restart. and it ended up in a loop about every minute it r

  • My early version of Lightroom does not run in Windows 8. [was:lightroom]

    I have a new laptop which runs windows 8 and my early version of lightroom does n't run

  • Convert MATNR to EAN11

    Need to create a Enhancement spot in Master_Idoc_Create_BOMMAT where I need to write a code to convert MATNR to EAN11 and assign the value to the idoc field of MATNR.The idoc is BOMMAT04. Please advice for suggestions if any. Regards, Vish