USERS OTHER THAN ORACLE DEFAULT USERS IN DATABASE

Hi,
I want to get users other than default oracle users.I used the below query still i get default users
select username from dba_users where username < >'SYS' ;
DIP
MDDATA
ORACLE_OCM
SCOTT
SYSMAN
CTXSYS
DBSNMP
EXFSYS
XDB
SI_INFORMTN_SCHEMA
ANONYMOUS
DMSYS
WMSYS
ORDSYS
OLAPSYS
ORDPLUGINS
MDSYS
MGMT_VIEW
SYSTEM
OUTLN
I want users that are created how to get that.
Pls help me with the query.
Thnx

  1* select username, created from dba_users order by 2
SQL> /
USERNAME                 CREATED
SYSTEM                      15-AUG-09
SYS                      15-AUG-09
OUTLN                      15-AUG-09
DIP                      15-AUG-09
ORACLE_OCM                 15-AUG-09
DBSNMP                      15-AUG-09
APPQOSSYS                 15-AUG-09
WMSYS                      15-AUG-09
EXFSYS                      15-AUG-09
CTXSYS                      15-AUG-09
ANONYMOUS                 15-AUG-09
USERNAME                 CREATED
XDB                      15-AUG-09
XS$NULL                  15-AUG-09
MDSYS                      15-AUG-09
ORDSYS                      15-AUG-09
SI_INFORMTN_SCHEMA            15-AUG-09
ORDDATA                  15-AUG-09
ORDPLUGINS                 15-AUG-09
OLAPSYS                  15-AUG-09
MDDATA                      15-AUG-09
SPATIAL_WFS_ADMIN_USR            15-AUG-09
SPATIAL_CSW_ADMIN_USR            15-AUG-09
USERNAME                 CREATED
SYSMAN                      15-AUG-09
MGMT_VIEW                 15-AUG-09
APEX_030200                 15-AUG-09
APEX_PUBLIC_USER            15-AUG-09
FLOWS_FILES                 15-AUG-09
OWBSYS                      15-AUG-09
OWBSYS_AUDIT                 15-AUG-09
SCOTT                      15-AUG-09
IX                      07-MAY-10
BI                      07-MAY-10
SH                      07-MAY-10
USERNAME                 CREATED
HR                      07-MAY-10
PM                      07-MAY-10
OE                      07-MAY-10
DBADMIN                  07-MAY-10
BONGO                      22-MAY-10
USER1                      30-AUG-10
SAM                      29-SEP-10
40 rows selected.
SQL> SELECT USERNAME FROM DBA_USERS WHERE CREATED > TO_DATE('2009-09-09','YYYY-MM-DD');
USERNAME
USER1
BONGO
DBADMIN
HR
SAM
OE
SH
PM
BI
IX
10 rows selected.
SQL> still confused?
Handle:      newbie
Status Level:      Newbie
Registered:      Jul 1, 2010
Total Posts:      57
Total Questions:      44 (40 unresolved)
so many questions & so few answers.
Edited by: sb92075 on Oct 14, 2010 10:15 AM

Similar Messages

  • Ora-01034 for users other than oracle

    Hello.
    I am having an issue when trying to connect through SQLPLUS with users that aren,t oracle user. Database instance is mounted, opened and working fine, listener also is up and running. I,m able to login without any issues with oracle user as follow:
    [oracle@LX-TSC2 admin]$ sqlplus metro_ctl/metro_ctl
    SQL*Plus: Release 10.2.0.4.0 - Production on Sat Oct 26 08:30:44 2013
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.4.0 - Production
    SQL>
    But if I try with another linux user, I get errors:
    [metro_ctl@LX-TSC2 ~]$ sqlplus metro_ctl/metro_ctl
    SQL*Plus: Release 10.2.0.4.0 - Production on Sat Oct 26 08:31:58 2013
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    ORACLE_SID, ORACLE_HOME, PATH are already defined as enviroment variable for user metro_ctl:
    [metro_ctl@LX-TSC2 ~]$ echo $ORACLE_SID
    TSC
    [metro_ctl@LX-TSC2 ~]$ echo $ORACLE_HOME
    /oracle/product/10.2.0/db_1
    [metro_ctl@LX-TSC2 ~]$ echo $PATH
    /home/metro_ctl/fuentes/java/classes:/home/metro_ctl/fuentes/java/lib/classes12.zip:/home/metro_ctl/fuentes/java/bcprov-jdk14-128.jar:/usr/java/j2sdk1.4.1_01:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/metro_ctl/bin:.:/oracle/product/10.2.0/db_1:/oracle/product/10.2.0/db_1/bin:/oracle/product/10.2.0/db_1/lib:/home/metro_ctl/pipe:/home/metro_ctl/bin
    I am able to login without problems with user metro_ctl if I specified that SID at the sqlplus :
    [metro_ctl@LX-TSC2 ~]$ sqlplus metro_ctl/metro_ctl@TSC
    SQL*Plus: Release 10.2.0.4.0 - Production on Sat Oct 26 08:34:42 2013
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.4.0 - Production
    SQL>
    But I don,t want to specified the SID since it is already specified in the enviroment variable ORACLE_SID, I want to login just using 'sqlplus metro_ctl/xxx'
    In case needed, I paste the following:
    [oracle@LX-TSC2 admin]$  ps -ef|grep pmo
    oracle   24463     1  0 06:32 ?        00:00:00 ora_pmon_TSC
    [oracle@LX-TSC2 admin]$ cat tnsnames.ora
    # tnsnames.ora Network Configuration File: /oracle/product/10.2.0/db_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    TSC =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = LX-TSC2)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = TSC)
    [oracle@LX-TSC2 admin]$ cat listener.ora
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = TSC)
          (ORACLE_HOME = /oracle/product/10.2.0/db_1)
          (PROGRAM = extproc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = LX-TSC2)(PORT = 1521))
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    [metro_ctl@LX-TSC2 ~]$ tnsping TSC
    TNS Ping Utility for Linux: Version 10.2.0.4.0 - Production on 26-OCT-2013 08:37:56
    Copyright (c) 1997,  2007, Oracle.  All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = LX-TSC2)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = TSC)))
    OK (0 msec)
    Any help will be appreciate.

    Hello.
    I finally did solved my problem   . I want to thank to all the people who tried to help me with my issue. I am now able to use sqlplus without using SID at the end:
    metro_ctl@LX-TSC2$ sqlplus metro_ctl/metro_ctl
    SQL*Plus: Release 10.2.0.4.0 - Production on Sat Oct 26 13:41:51 2013
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.4.0 - Production
    SQL> select * from cat where rownum < 7;
    TABLE_NAME                     TABLE_TYPE
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    I solved it doing the following steps:
    1)Log on as root and change permission.
    bash-3.00$ su Password:
    # umask 022
    # cd $ORACLE_HOME
    # chmod 755 *
    # cd $ORACLE_BASE/admin/$ORACLE_SID
    # chmod 755 *
    # cd $ORACLE_HOME/bin
    # chmod 6751 oracle
    # exit

  • Run the startup script (start and stop) with a user other than oracle

    hi
    I wrote a script that stops and start oracle. the connection to the db was done : sqlplus "as sysdba".
    The script works fine if oracle user runs it. however, I need another user to run this script also. The script does not run with this user even though I added it to the oracle group.
    any idea please?

    try the -c option with the su like this:
    su - oracle "-c scriptyouwrote.sh"
    greetings

  • How to create user other than 'sa' to connect database server in SAP SBO

    I want to ask how the step for create user other than 'sa' to connect database server in SAP SBO? Until now I use 'sa' (default) for connect to database server in SAP SBO application.
    Can I do that?

    You may create multiple SQL users to give full right to B1 database instead of using 'sa' user.
    However, the preferred way would be by Use Trusted connection when you set the connection to SQL Server. In this way, you just need one more user for SQL.  A group of window users could use this SQL access to connect database server.
    Thanks,
    Gordon

  • CUIC 8.5 Unable to "choose collection" for users other than Admin/Superv

    Hi,
    When login with any user other than the admin, I'm not able get any entry in the "choose collection" drop down menu for any type of report. While investigating it seems this is restricted by the option Security / User Permissions / System Collections (UCCE). I can see how all the teams has assigned the admin user for read, exedcute and write. In addition also the supervisor of the team is added to the list and I have checked and confirmed that the supervisor can get the collection of his/her team.
    There is a list on the right hand side to be able to add additional user permissions however when I try I get the error "System Collections (UCCE) permissions can't be modified". Obviously having just the supervisor of the team being able to list their team is not good enoguh and I would expect changing the permissions here is possible.
    Has anyone come accross this problem or do you have any tips before openign a TAC case?
    Thanks
    Isidro

    I should also note something that I did that I think may be causing the default wiki and blog theme to not appear. In Server Admin, selecting Web, then going to Settings and on the Web Services tab, I changed the Data Store path to:
    /Library/WebServer/Documents
    I did this thinking it would create the html pages in the directory that the placeholder page was indicating that I should put my web page, but I think that is wrong, now. Does anyone know the default path for the data store?

  • Huge volume of records are routing to the remote user other than his position and organization records. Synchronization and DB initialization taking more time around 36 hours.

    Huge volume of records are routing to the remote user other than his position and organization records. Synchronization and DB initialization taking more time around 36 hours.
    Actual accounts & contacts need to be route around 2000 & 3000 but we have observed lakhs of records routing into local DB.
    We have verified all the Assignment Rules, Views.
    We ran docking object visibility rules and we have observed that some other accounts are routing due to Organization rule passing. (these records are not supposed to route).
    Version Siebel 7.7.2.12,
    OS Solaris.

    let me know what would be the reason that 1st million takes only 15 minuts and the time goes on increasing gradually with the increase of dataYes that's a little strange. I only can guess:
    1. You are in archivelog mode and the Archiver is not able to archive the redo logs fast enough
    2. You don't use Direct Load and DBWR ist not able to write the direty block to disk fast enough. You could create more DBWR processes in that case.
    3. Make a snapshot of v$system_event:
    create table begin as select * from v$system_event;After the import run
    create table end as select * from v$system_event;Now compare the values:
    select * from begin order by TIME_WAITED_MICRO descwith the values given you by
    select * from end order by TIME_WAITED_MICRO descSo you can look where your DB spent so much time waiting for something.
    Alternativly, you could start a 10046 trace on the loading session and use tkprof.
    Dim

  • Configuring a Communication Channel for an AE other than the default IS

    Configuring a Communication Channel for an Adapter Engine other than the default engine.
    See:  help.sap.com for Communication Channel http://help.sap.com/saphelp_nw04/helpdata/en/1b/d5ef3b1ad56d4fe10000000a114084/frameset.htm
    It states under 'Adapter Configuration', that you can specify the Adapter Engine you want to use in the Adapter Engine dropdown box.
    I have activated the XI components on my ERP system using transaction SICF, but what do I have to do to make the other adapter engines show up in the dropdown list when configuring an adapter?
    Maybe some background would be helpful:  This is for a scenario that will send a file from an external system to one of the ERP systems in our landscape.  BUT, the system admins have decided to revoke our FTP accounts (because they have their reasons), so I need to create a File Adapter that will drop the file on the file system of that ERP system, due to visibility I want to use the integrated Adapter Engine that comes with the ERP system, but need to know how/what I'm missing in setting up this scenario.

    Hi Anesh,
    >>>>but what do I have to do to make the other adapter engines show up in the dropdown list when configuring an adapter?
    in order to use some other adapter engine you
    have to install it first by dafault only one
    (central) adapter engine is used and it is all
    most clients need
    if you'd like to use some other adapter engine
    (decentralized for example) have a look at thid guide:
    <b>Configuring a Local Adapter Engine to Work with a Central Instance</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/03fd85cc-0201-0010-8ca4-a32a119a582d
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions">XI FAQ - Frequently Asked Questions</a>

  • When I create a stickie note, I can not save any font size other than the default.  How do I save a stickie with a larger or different font?

    How do I save a stickie note with a different font size other than the default?  When I create a note and save it using a larger font, it reopens with the default.

    Unlikely, I'm afraid.
    The LMS has no control over the playbar that pauses or plays the Captivate content.
    In a Multi SCORM package, the LMS also may be showing a TOC in the SCORM player with links to launch the lesson modules.  This TOC is in addition to the TOC inside the Captivate project file which gives access to sections of the module by jumping to slides that begin those sections.  But the LMS doesn't usually give you any control over the look and feel or functionality of that TOC either. 
    If your client is adamant that they want complete control over these areas, then your best option may be NOT to build this course with Captivate but build it from the ground up with another tool.  E.g. Flash, or Dreamweaver.  Either way, that will add a lot more time and expense to the project.  But if the client has the budget and is unwilling to budge on their requirement, then that's what I would be telling them to do.

  • Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error, so you can load Firefox again.

    Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error. I have Windows XP (Media Center Edition) and all updates (Firefox, Adobe PDF, Microsoft, virus protection, etc) are installed. This has only been a problem since Firefox 4, and isn't a problem in Internet Explorer.

    Hi David,
    Thank you for your detailed question. It sounds like the real issue is pdf files. Are there any antivirus/firewalls that might be blocking this specific file type? or are there any preferences in your control panel that might be blocking this?
    Do you have any stored preferences for PDF files in Firefox?
    *[[Applications panel - Set how Firefox handles different types of files]]

  • [svn:bz-trunk] 17772: Update the url in the tests to use a relative path instead of the default localhost : 8400 so that the tests can pass on appservers other than the default Tomcat .

    Revision: 17772
    Revision: 17772
    Author:   [email protected]
    Date:     2010-09-20 15:02:50 -0700 (Mon, 20 Sep 2010)
    Log Message:
    Update the url in the tests to use a relative path instead of the default localhost:8400 so that the tests can pass on appservers other than the default Tomcat.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationFalseTest/Remoting_NetConnectionTest.mxml
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationTrueTest/Remoting_NetConnectionTest.mxml

    Revision: 17772
    Revision: 17772
    Author:   [email protected]
    Date:     2010-09-20 15:02:50 -0700 (Mon, 20 Sep 2010)
    Log Message:
    Update the url in the tests to use a relative path instead of the default localhost:8400 so that the tests can pass on appservers other than the default Tomcat.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationFalseTest/Remoting_NetConnectionTest.mxml
        blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/EnforceEndpointValidation/Enforc eEndpointValidationTrueTest/Remoting_NetConnectionTest.mxml

  • Deploying Crystal Reports 2008 on a website other than the default website

    Hi,
    We have an ASP.NET 2003 web application using CR 2008 as reporting tool.
    To deploy the application, we are using the CR 2008 mergemodules.
    If the application is installed into the default website, this works fine, but if another website is selected, the mergemodule still installs CR 2008 to the default website.
    To overcome this problem, the crystalreportviewers12 virtual directory has to be created in the selected website.
    But if the application is installed directly into the website, and not into a virtual directory of the website, problems occur, like images not showing up.
    I would like to know if there exists documentation regarding deployment into websites, other than the default website and what configurations have to be done to make it work.
    Best regards,
    Ângelo Vilela

    See the following articles;
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0437ea8-97d2-2b10-2795-c202a76a5e80
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a
    Also, the developer help files contain more info:
    https://boc.sdn.sap.com/developer/library
    Ludek
    Follow us on Twitter
    http://twitter.com/SAPCRNetSup

  • Keychain services API and dealing with Keychains other than the default

    Hello,
    So I've been doing some C work with the Keychain services API. But I can't figure out how to set the Keychain for a function to something other than the default, which is set by passing NULL.
    For example,
    status = SecKeychainAddGenericPassword (
    *NULL, // default keychain*
    10, // length of service name
    "SurfWriter", // service name
    10, // length of account name
    "MyUserAcct", // account name
    passwordLength, // length of password
    password, // pointer to password data
    NULL // the item reference
    This function is defined here:
    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//apple_ref/c/func/SecKeychainAddGenericPassword
    and the data type for the Keychain is here:
    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//appleref/doc/cref/SecKeychainRef
    But neither helps me at all for being able to edit a keychain that isn't the default Keychain.
    I appreciate any help, thanks.
    Message was edited by: Smerky

    http://developer.apple.com/documentation/Security/Reference/keychainservices/Ref erence/reference.html#//apple_ref/c/func/SecKeychainOpen

  • Patch and administer oracle with different user id other than "oracle" user

    Hi Friends,
    This is question about oracle on Windows. Can we patch and administer all parts of oracle with differnt user id than one from which we installed?
    Example, If we install an oracle from user "oracle" than can we install patches or other admin work including backup and everything with user "a" ,"b"?
    Doen't it need to be a same user for pacthing and other critical administration work?
    help me understanding this with an example.
    Thanks in advance.

    Its always good to patch Oracle with the same user from which you installed the user. Oracle sets certain permissions or modifies the DCOM settings when you install the Oracle from a certain user which would not be same for other user. So It is always recommended to use the same user for patching.

  • Oracle default users - 11i

    Can anyone tell me if these default oracle users impact the apps?
    OUTLN, MDSYS, CTXSYS, ORDSYS, ORDPLUGINS
    I want to change the passwords and disable them. I don't see any of them as registered apps.
    TIA

    You can change the passwords for these default users. That should keep your auditors pleased :)
    Sam
    http://www.appsdbablog.com

  • How to get User Profile Service information on user OTHER THAN current user?

    So much information on how to autopopulate information for the current user or the logged in user in InfoPath.  But what about other users?  What if there's a field that's 99/100 times going to be the same person, but it's not the person that's
    logged in? 
    I would like not just to autopopulate a person field to be a specific user (which is not the current user), but I'd also like to autopopulate surrounding fields for that user's Title and Department. 
    For instance, consider the following 6 fields.
    1. Current User Name:  
    2. Current User Title:  
    3. Current User Department:
    4. Current User’s Supervisor’s Name:  
    5. Current User’s Supervisor’s Title:  
    6. Current User’s Supervisor’s Department:
    I know how to get the first three; the internet is swarming with that information.
    I'm struggling the last three; searching for this information is impossible without turning up information on current user instead.
    The furthest I've gotten so far is to autopopulate Current User's Supervisor's Name by:
     1. Show Advanced View on Fields pane
     2. Expand my Field (which is really a group) called IT Manager Name
     3. Expand what shows up under that which is pc:Person
     4. Right click AccountId and choose Properties
     5. Set Default value to [our domain]\[IT Manager's ads username]
    This solves how to get that 4th field my example list above Current User's Supervisor's Name to autopopulate, but how do I then get the Title and Department from the value I set in step 5 [our domain]\[IT Manager's ads username]?  Or is there a different/better
    way altogether to go about getting a non-current user's info to autopopulate in InfoPath form fields?
    *UPDATE*
    I just want to clarify that I'm not asking if there's a way to autopopulate the current user's supervisor.  I'm aware that Manager is one of the User Profile service fields.  But the point is that  I want to have a field in which the current
    user fills in a username (different than his or her own), and to have User Profile Service called on that provided username to autopopulate Title and Department in surrounding fields.  The question is about how to call information with User Profile Service
    on any provided username, specifically what steps to take to set this up in InfoPath Designer.

    Have a look at the REST API. You can use the /_api/sp.userprofiles.peoplemanager/getpropertiesfor endpoint to query the user profile service for user profile properties of any user. 
    The API is documented here: https://msdn.microsoft.com/en-us/library/office/dn790354.aspx and here https://msdn.microsoft.com/en-us/library/office/jj163800.aspx
    Regards, Matthew
    MCPD | MCITP
    My Blog
    View
    Matthew Yarlett's profile
    See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

Maybe you are looking for

  • AIR/Windows 7 Onscreen Keyboard

    Hi Any reason why the onscreen keyboard would stop working when a TextInput is being focused? * AIR 2.03 * Flex SDK 3.4 * j3500 Motion Computing tablet (http://www.motioncomputing.com.au/products/tablet_pc_J35.asp) The onscreen keyboard is the defaul

  • Error while loading source system data

    BW unknown in source system The BW IDoc type ZSBA003 is not the same as the source system IDoc type The following errors occurred in the source system: EDI: Partner profile not available Entry in inbound table not found Entry in outbound table not fo

  • Lion Crashing to Black - Kernel Error Included

    Hey, Loving Lion so far - but... When I'm away from the computer I seem to get this message a lot. As I've never had it while sat at a machine I can't vouch for what causes it, but it might be something to do with me transferring to my NAS via WiFi.

  • SAPScript to PDF in Webdynpro for Java

    Hi All, I have to display Form16 for an employee in pdf format in portal. Form16 is available as SAPscript. ECC 6.0 Report Program:HINCF160 We can run transaction 'HRESSIN_F16' in se93 to see Form16, How can we get the same to Webdynpro, If we use an

  • Change this code to dynamic(field symbols)

    hi, i do this code and it working o.k. but i wont to change it to dynamic code like field symbols what is the best way to do that? i reward Regards LOOP AT  pro_tab into wa_pro.       CASE wa_pro-period+0(2).         WHEN '01'.           MOVE wa_pro-