Any logs for 'Create/Drop Users'

Hello all,
-Are there any logs that can be referred to verify when a user was created and dropped etc?
-Alter log seems only logging startup/shutdown, redo switches, creating/dropping tablespaces.
-Is there a way to restore a schema completely?
I havent got a lot of experience, and little more than no in terms of backups and restores.
Thank you!

Thanks,
Hi,
You can check the CREATED column of DBA_USERS to know
the date on which the user was created. If you want
to make a note of the date at which the user was
created and the date at which the user was dropped,
create a seperate procedure that will allow you to
carry out this.
Thats a very good point, and sounds very useful. But need more advice on this please. How about a trigger or something that can log these details into some table.
Is there a way to restore a schema completely?
Yes by EXP u can export a particular schema only and
u can import the same using IMP.
How can I set this up to automate this on a regular basis?
Thanks again both of you!
N

Similar Messages

  • Is there any way to create multiple users in a single shot in oracle db

    Can Any one tell me, is there any way to create multiple users in a single shot in oracle database.

    Hello Nunhum,
    I guess this was not my question.. This is not what I m asking.. I know there is not a single sql statement in oracle ,which could create multiusers alike UNIX/LINUX(OS LEVEL), Whatever you have written..is simple creating them one by one.
    What I am expecting is to have PL/SQL statement which could help us in this regard.

  • Are there any shortcuts for creating Value Object Classes?

    Hi,
    I'm using a Remote Object to connect to my server
    (pyAMF/Django). I'm getting stuck with the creation of Value Object
    Classes. It doesn't seem very DRY to have a class on my server
    representing the data model and then have to recreate that class
    and all its properties in my Flex app.
    Are there any shortcuts for creating client side VOs from
    server side data?
    I was thinking about declaring an empty VO class in Flex, and
    then dynamically assigning/casting my Proxy object to that class.
    It seems like that approach may cause problems for the Flex
    compiler though.
    Any hints?
    Thanks!

    quote:
    Originally posted by:
    tptackab
    Oh man, do I feel your pain. I'm not sure what middle-tier
    technology you're using, but I'm using Java (w/Spring) and I
    absolutely hate having to create and maintain two sets of VO (aka
    data transfer - DTO) object for Java and Flex.
    One thing that has helped me in that area is a free tool from
    Farata Systems called
    DTO2Fx. If you're using Java and Eclipse, it's a great time saver.
    You simply install a (very lightweight) Eclipse plugin, add a
    single annotation to your Java VO classes, and it automatically
    generates your Flex VOs. It even creates a base and extended
    version of each VO on the AS3 side so you can add code to the
    extended VO without fear of having your changes overwritten when it
    regenerates your Flex VOs.
    Here's a like to thier
    PDF that
    gives instructions and a download link. I had it up and running in
    my application in less than 30 minutes!
    I'm using Python/Django serverside (PYAMF is my AMF
    serializer).

  • Are there any bapi for create Business Partner

    Dear Sir,
    Do you know  are there any bapi for create Business Partner in CRM
    Please advise.
    Thank you and best ergards,
    Vimol

    Dear Vimol,
    BAPI_BUPA_CREATE_FROM_DATA     ......SAP BP, BAPI: Create Business Partner
    BAPI_BUPA_FS_CREATE_FROM_DATA  .......SAP BP, BAPI: Create Business Partner
    BAPI_BUPA_FS_CREATE_FROM_DATA2 .......SAP BP, BAPI: Create Business Partner
    Hope this will help.
    Regards,
    Naveen.

  • Any FM for create an external number range for equipment number ????

    Hi all,
    Any FM for create an external number range for equipment number??????
    thanks & regards
    indu.

    Hi
    you can use below FM to get number range
       CALL FUNCTION 'NUMBER_GET_NEXT'
        EXPORTING
          nr_range_nr                   = 'Z1'
         object                        = 'ZTEST'
         object                        = 'ZFIREC'
         quantity                      = '1'
         subobject                     = p_compcd
         toyear                        = p_fisc
       IMPORTING
         number                        = v_seqno.
    thanks & regards,
    bhupal.

  • Any suggestions for creating  u201CCustom Measuresu201D ......

    Hi SAP BPC guys,
    could  give me   Any suggestions for creating  u201CCustom Measuresu201D for
    §   Average to Daily
    §   Average to Monthly
    Thanks  & Regards,

    Celletti wrote:
    In the text file the ~ ... | creates a radio button group and a #....| creates a checkbox group which all works fine. The problem I am having is with the more complicated options/addons such as having a choice between 0-n number of object 1 and/or object 2, having 0-4 powers out of a 7 checkbox power group, or having 0-n special units added to the squad that all are the same but all can have different powers/addons. I suspect you need to write a data model for the information you want to capture. Seems like you've made a pretty good start with your various types and capabilities, now you just need to extend that to your more esoteric stuff.
    I'd also try to think about it a bit more generally, rather than applying it to a specific Swing component. For example:
    A Radio button is a "one of many" choice (ie, a "Selector"), whereas a Checkbox is a "0 or many of many" (possibly with limits). If you think about it this way, you leave the decision of how to represent them until later on, which is usually good practise.
    If you create a good model, you'll also be better prepared if you later decide to store these things in a database.
    Winston

  • Procedure for creating a user and assigning him a role

    Hi folks,
    has anyone of you a procedure for creating a user and then assigning him a spezial role?
    The procedure has 2 arguments username and password. I think that its an easy one but I
    have not found the right packages.
    Thanks

    create or replace procedure new_user(username_in IN VARCHAR2, password_in IN VARCHAR2) is
      C_TEMP_TSP     CONSTANT VARCHAR2(30) := 'TEMP';
      C_DEFAULT_TSP  CONSTANT VARCHAR2(30) := 'USERS';
      C_DEFAULT_ROLE CONSTANT VARCHAR2(30) := 'SPECIALROLE';
    begin
      execute immediate 'create user ' || username_in ||
                        ' identified by ' || password_in ||
                        ' default tablespace ' || C_DEFAULT_TSP ||
                        ' temporary tablespace ' || C_TEMP_TSP;
      execute immediate  'grant '|| C_DEFAULT_ROLE ||' to '||username_in;
    end new_user;

  • Is there any BAPI for creating Debit memo request

    Hi all,
    I used BAPI_ACC_BILLING_POST ,but it does not seems to help me.Is there any other BAPI for creating Debit memo request which takes.
    Thanks and regards,
    Meena.

    hi,
    I could find the following
    Exit Name           Description
    J_3RSINV
    SDVFX001            User exit header line in delivery to accounting
    SDVFX002            User exit for A/R line in transfer to accounting
    SDVFX003            User exit cash clearing in transfer to accounting
    SDVFX004            User exit G/L line in transfer to accounting
    SDVFX005            User exit reserves in transfer to accounting
    SDVFX006            User exit tax line in transfer to accounting
    SDVFX007            User exit: Billing plan during transfer to Accounting
    SDVFX008            User exit: Processing of transfer structures SD-FI
    SDVFX009            Billing doc. processing KIDONO (payment reference number)
    SDVFX010            User exit item table for the customer lines
    SDVFX011            Userexit for the komkcv- and kompcv-structures
    V05I0001            User exits for billing index
    V05N0001            User Exits for Printing Billing Docs. using POR Procedure
    V60A0001            Customer functions in the billing document
    V60P0001            Data provision for additional fields for display in lists
    V61A0001            Customer enhancement: Pricing
    Regards,
    Manish

  • Outlook 2013 people pane is not showing any items for internal domain users. External contacts works fine

    I have recently purchase a new PC which has Windows 8.1, and Outlook 2013, connected to an exchange 2010 SP3 RU4 server.
    In the People pane, the for External clients, then this box populates correctly, but for internal domain users, it shows "There are no items to show in this view"
    On my OLD PC using XP, and Outlook 2010, connected to the SAME account, then people pane shows correctly for all users.
    Any help appreciated
    regards
    Chris

    Hi Chris,
    I have checked in my Windows 8 and Outlook 2013 with Exchange 2010 SP3 RU4 environment. There are three folders listed under My Contact in my People pane:
    Contacts: The contacts which we added and saved
    manually before.
    Lync Contacts: The contacts we added in Lync.
    Suggested contacts folder: Automatically
    keeps track of everyone you send a message to, but isn’t in your Outlook contacts. Please note that it is different from Auto-Complete List.
    Therefore, I suppose that the meaning of “but for internal domain users, it shows ‘There are no items to show in this view’ ” is that there is no contacts in the
    Contacts folder. Is it right? If I misunderstand, please point it out. And we need to add and save users manually in this folder.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Unix:  Any support for creating com objects?

    I'm looking into migrating a CF 8 server from Windows to
    Unix. I see in the documentation for CreateObject that com objects
    are not supported on Unix, "Note: On UNIX, this function does not
    support COM objects."
    Obviously, this won't work on Unix: Note:
    <cfset image = CreateObject( 'com', 'ImageStoreCom.Image'
    )>
    But what about this, can I create a remote com object?:
    <!-- assume '172.0.0.1' is a windows machine with a
    registered com object on it -->
    <cfset image = CreateObject( 'com',
    'ImageStoreCom.Image', 'remote', '172.0.0.1' )
    Finally, if the example above is out of the question, are
    then any techniques for exposing a com object to CF on a Unix box?
    I'm wondering if maybe I could write a Java wrapper for the com
    object and expose it that way?
    Thanks for your help,
    DJ

    <ShotInTheDark>You might try wrapping your COM object
    in a .NET class then accessing your .NET class
    remotely.</ShotInTheDark>
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=dotNet_02.html#1160020

  • Sample workflow for Create new user in IDM

    Hi,
    I'm new to Identity Manager. I had obtain task to create new workflow with this requirements:
    - create new user
    - make some approvals
    - deploy this user to some resource (AD, LDAP, SQL)
    I have problem with first step. I tried to create user by the help of http://www.javapassion.com/idm/ create user samples, but I'm affraid that mentioned samples aren't enough for real deployment. They are good for understanding of IDM.
    So I decided to explore workflows/rules that are used as default in IDM. I think Create User dialog that is in menu Accounts -> List Accounts -> New Actions -> New User . But I'm not sure which workflow is used for this dialog. Is it Create User in ProvisioningTask, or some template in TaskDefinition, or Create User Template in TaskTemplate, or something another?
    (I'm listing this templates through List Object in Debug interface).
    I appreciate every help
    Petr

    Chapo,
    thanks a lot for informations. I have try to find corresponding process mapping for 'Create User' under Configure tab. I found process 'createUser'. So I looked for 'createUser' workflow under 'Task definition' or 'Configuration' in debug. But there was no such workflow. Only workflow with similar name was 'Create Resource User', but it doesn't look like right workflow. I expected workflow with name 'Create User'. Does anybody have this workflow under 'Task Definition' in debug?

  • Logging for remote dialup users

    We currently have a 3725 router that controls our remtoe dialup service. It is only used by a few remote users that do not have internet access. They currently authenticate via radius against our AD.
    Is there a way on the router to look at all incoming calls that were made ?
    Also is there a way to generate a syslog event for each dialup user that connects in ?
    Any help would be appreciated.
    Cheers
    Dave

    Yes, the user can successfully be authenticated to the ACE server...
    see below debug aaa authentication
    017497: Dec 21 14:08:54.188: RADIUS/ENCODE: Best Local IP-Address 10.160.144.11 for Radius-Server 10.160.75.160
    017498: Dec 21 14:08:54.188: RADIUS(000000C0): Send Access-Request to 10.160.75.160:1645 id 1645/82, len 100
    017499: Dec 21 14:08:54.188: RADIUS: authenticator 33 61 55 2A 29 59 46 3D - 02 DF 28 D3 37 B0 B0 AA
    017500: Dec 21 14:08:54.188: RADIUS: User-Name [1] 9 "bhattii"
    017501: Dec 21 14:08:54.188: RADIUS: User-Password [2] 18 *
    017502: Dec 21 14:08:54.188: RADIUS: NAS-Port [5] 6 66
    017503: Dec 21 14:08:54.188: RADIUS: NAS-Port-Id [87] 8 "tty1/0"
    017504: Dec 21 14:08:54.188: RADIUS: NAS-Port-Type [61] 6 Async [0]
    017505: Dec 21 14:08:54.188: RADIUS: Calling-Station-Id [31] 7 "async"
    017506: Dec 21 14:08:54.188: RADIUS: Connect-Info [77] 20 "33600 V34/V44/LAPM"
    017507: Dec 21 14:08:54.188: RADIUS: NAS-IP-Address [4] 6 10.160.144.11
    017508: Dec 21 14:09:04.208: RADIUS: Received from id 1645/82 10.160.75.160:1645, Access-Accept, len 50
    017509: Dec 21 14:09:04.208: RADIUS: authenticator AC C7 DC A2 AB F1 69 AD - 69 BE 4B 7F 9F 3C A4 8C
    017510: Dec 21 14:09:04.208: RADIUS: Reply-Message [18] 21
    017511: Dec 21 14:09:04.208: RADIUS: 50 41 53 53 43 4F 44 45 20 41 63 63 65 70 74 65 [PASSCODE Accepte]
    017512: Dec 21 14:09:04.208: RADIUS: 64 0D 0A [d??]
    017513: Dec 21 14:09:04.208: RADIUS: User-Name [1] 9 "bhattii"
    017514: Dec 21 14:09:04.208: RADIUS(000000C0): Received from id 1645/82

  • Any log for Info Package

    Dear Experts,
    I have a info package which has been included in the process chain. It scheduled everyday.
    Now somebody changed some settings in InfoPackage  like data selection and processing tabs.How do i know that who has changed the settings.
    If i look at the info package it says ALEREMORE becoz everytime its been triggered by process chain.That means you have last change name only.
    If i want to find out last one weeks changes, HOW DO I ?
    Please help me.
    Rgds,
    Sin

    Dear Aadil,
    I have checked in the given table, Unfortunately there was only one record there which was done by ALEREMOTE(i.e Today's log). Since i told you that i need a log for entire last week.
    That means rsldpio table maintaining last changed time only.but i need complete log list for the last one week.
    Please help me
    Edited by: sinner icici on Jan 21, 2008 2:17 PM

  • PXE booting - any tool for creating image?

    Hi All,
     can anybody help me with PXE bootin'? I need a tool for creating boot image...
     Thanx
       duhaCZek

    You can use the install Shild to create the installation package

  • Any log for process chain changes

    Dear All,
    I have around 95 process chains, during the monthends & beginings i have done some changes to some of the process chains.
    If i want to have a quick look at only changes to those pc's where can i get the info.
    To be frank, practically its not possible to go each and every pc and goolge them.
    Can you please guide me on how to .
    Rgds

    Go to SE11 and search with
    RSPC*
    You will find all the tables concerned with process chains.
    RSPC_ALERT_CAT                 Alert Categories for Process Types
    RSPC_BUFFER                    Shared Buffer for Processes (Esp. C
    RSPC_MONITOR                   Monitor individual process chains
    RSPCABAPASYNC                  Logging for ABAP Processes(Synchron
    RSPCCATEGORY                   Process Type Categories
    RSPCCATEGORYT                  Texts for Category
    RSPCCHAIN                      Process chain
    RSPCCHAINATTR                  Attributes for a Process Chain
    RSPCCHAINEVENTS                Multiple Events with Process Chains
    RSPCCHAINT                     Texts for Chain
    RSPCCOMMANDLOG                 System Command Execution Logs (Proc
    RSPCCONTENTSTART               Process Chains To Be Scheduled Auto
    RSPCENQUEUE                    Dummy Table for Runtime Locks of a
    RSPCEXOR                       Excluding Or: Log Table
    RSPCINFO                       Special Values for Communication be
    RSPCINFOT                      Special Values for Communication be
    RSPCINSTANCE                   Generic Instance Storage
    RSPCINSTANCET                  Texts for Generic Instance-Storage
    RSPCINTERRUPT                  Variants for the Trigger Processes
    RSPCINTERRUPTLOG               Table for Interrupt Processes
    RSPCINTERRUPTT                 Texts for Interrupt Variants
    RSPCLOGCHAIN                   Cross-Table Log ID / Chain ID
    RSPCLOGCROSS                   Cross-Table Log ID Old / Log ID New
    RSPCLOGS                       Application Logs for the Process Ch
    RSPCPROCESSLOG                 Logs for the Chain Runs
    RSPCRUNVARIABLES               Variables for Process Chains for Ru
    The information you are looking for is available in RSPCCHAIN i belive.
    Regards,
    rocks

Maybe you are looking for

  • HT204266 How can I create an Apple ID without a credit card? (There is no *none* button!)

    I followed the instructions taht everybody says, (click the *none* button) but there ISN'T ONE! I have attached a screenshot so you can see, there is clearly no *none* button. I need help ASAP I am going away soon and need to buy some stuff! Thanks!

  • Blank at the end of file

    Hi, i must generate a text file with the following rule : each field of a record have a delimited size ; my problem is that by the end of the file the last field is truncated, there is no blank. Just a example : DATA: begin of struc_t,     name     

  • Email error in Acrobat Pro 9

    Every time I try to email from Adobe Acrobat Pro 9, I get the following eror: "Either there is no default email client of the current mail client cannot fulfill the messaging request. Please run Microsoft Outlook and set it as the default mail client

  • I am unable to open my pdf..it keeps on asking me password .want to reset my password

    Plz reset my passw

  • Cannot open chm file

    Hi, I've found several threads on this site conserning error messages containing: mk:@MSITStore , but none of them seems to fit my situation. I worked in RH on a project, generated a new chm file a couple of times a day. No problem. Then suddently af