Count of users of database in the case of MOHAMED Licensing

Hello

I wanted to know how Oracle goes on the number of users of a database.

What, out of what follows, says to explain the use?

1. all entries in table DBA_USER

2. all the OPEN and ASSETS entered in the DBA_USER table

or

3 stats SESSION_HIGHWATER

Thanks in advance,

T

user13405592 wrote:

In my view, that there is a vijayan Hemant K collection & Ajay of confusion.

I ask with respect to an audit of Oracle's LMS. How did they check my user base?

They will ask you: how many people (and devices) use the product?

Tags: Database

Similar Questions

  • User defined function in the cases in article

    Hello

    I have a function that returns in priview:

    (1,2,3,4)
    

    Now I am using this function in SQL where clause

    Selection of the debug version where id in debug.debug_process)

    Executing select I am getting ORA-01722 invalid number, I understand the functions return not only numbers but character symbols too "(en).

    It is posible to use the function defined by the user that do not return a NUMBER CASE statement IN clause?  If this is not the case, what advice can I sugest for a list of values for use in the Clause IN?

    ID.

    Thank you!

    The SQL IN clause requires a set as the parameter type.

    This means that the function used must provide a suitable type.

    Examples:

    SQL> create or replace type TNumberSet as table of number;
      2  /
    
    Type created.
    
    SQL>
    SQL> create or replace function FunkyFoo return TNumberSet as
      2  begin
      3          return(
      4                  new TNumberSet(7369,7499,7902)
      5          );
      6  end;
      7  /
    
    Function created.
    
    SQL>
    SQL> select
      2          *
      3  from       emp
      4  where      empno in(select * from table(FunkyFoo));
    
         EMPNO ENAME      JOB              MGR HIREDATE                   SAL       COMM     DEPTNO
    ---------- ---------- --------- ---------- ------------------- ---------- ---------- ----------
          7369 SMITH      CLERK           7902 1980/12/17 00:00:00        800                    20
          7499 ALLEN      SALESMAN        7698 1981/02/20 00:00:00       1600        300         30
          7902 FORD       ANALYST         7566 1981/12/03 00:00:00       3000                    20
    
    SQL>
    SQL> select
      2          *
      3  from       emp
      4  where      TNumberSet(empno) submultiset of (FunkyFoo);
    
         EMPNO ENAME      JOB              MGR HIREDATE                   SAL       COMM     DEPTNO
    ---------- ---------- --------- ---------- ------------------- ---------- ---------- ----------
          7369 SMITH      CLERK           7902 1980/12/17 00:00:00        800                    20
          7499 ALLEN      SALESMAN        7698 1981/02/20 00:00:00       1600        300         30
          7902 FORD       ANALYST         7566 1981/12/03 00:00:00       3000                    20
    
    SQL>
    
  • Get duplicates in the case and Count clause in the generation of reports

    Hi all

    Let me explain first Base (just the Section that is in the scope of the present code) then evil go to code and my problem.i have a Set of pre-defined tasks in * 'TASK' * Table.i have a system that puts the user's request by assigning the task to their request to Request.Each will be mapped to the Instance of the task (predefined) , it will remain in a separate table * "TASK_INSTANCE" * against the user of the application id. Each task has a predefined duration.and, that their maturity date is stored in the Time Stamp data type column.

    My scenario is I need to generate report based the date.report requirement is complete, I need get the number of tasks that have the date of completion as today, tomorrow and the next day they grouped based on task names.

    My problem is, im getting duplicates if I used separate. It is not possible to duplicate using the join because im using Group by task nameevery record in the Task_instance table has direct relationship with the task ID. For example: im getting a line with the County satisfying the Condition and the next row with empty set.i he cannot understand why happening.need your help to understand this.

    Let me add the query below,

    SELECT task.task_name,
    * (CASE *)
    WHEN ((TRUNC (SYSDATE) - TRUNC (task_instance.ptd_pdd_date)) =
    (- 1).
    THEN
    * (COUNT (task_instance.ptd_pdd_date)) *.
    END)
    AS "1_day_behind."
    * (CASE *)
    WHEN ((TRUNC (SYSDATE) - TRUNC (task_instance.ptd_pdd_date)) =
    (- 2).
    THEN
    COUNT (task_instance.ptd_pdd_date)
    END)
    AS "2_day_behind."
    * (CASE *)
    WHEN ((TRUNC (SYSDATE) - TRUNC (task_instance.ptd_pdd_date)) =
    (- 3).
    THEN
    COUNT (task_instance.ptd_pdd_date)
    END)
    AS "3_day_behind".
    The TASK task_instance
    WHERE task.task_id = task_instance.task_id
    AND task_instance.status_id = 1
    AND task_instance.ptd_pdd_date IS NOT NULL
    GROUP BY (TRUNC (SYSDATE) - TRUNC (task_instance.ptd_pdd_date)),
    Task.Task_Name;


    task_instance.status_id = 1 refers to the task located in "in progress".


    It's overall results (example) I get. In this area, the UI_Contact_Customer task is repeated three times. features of different in separate lines and null in the line separate .i need to avoid these duplicates.please Advisor.

    __________________________________________________________________________________
    TASKNAME | "1_DAY_BEHIND" | "2_DAY_BEHIND" | "3_DAY_BEHIND" |
    ______________________________|________________|_________________|_________________|
    UI_Conduct_Fiber_Plant_Survey___ | ___ | ___ | ___ |
    UI_Conduct_Site_Survey___ | ___ | ___ | ___ |
    UI_ConductFiberSurvey_C___ | ___ | ___ | ___ |
    UI_ConductSiteSurvey_C _ | ___ | ___ | ___ |
    UI_Contact_Customer_____________|________________|_________________|_________________|
    _ UI_Contact_Customer | ___10___ | ___ | ___ |
    UI_Contact_Customer___ | ___ | ___ 12___ | ___ |
    UI_Create_Account_Equip_C___ | ___ | ___ | ___ |
    UI_Create_Account_Equipment___ | ___ | ___ | ___ |
    UI_Create_CM_Ticket |     | | |
    ______________________________|________________|_________________|_________________|

    In the above result set, in particular UI_Contact_Customer task, ten of their instance with completion date tomorrow and 12 instance having the next day as the date of completion. I need to get all those as single line without duplicate.




    Thank you
    Jeevanand.K

    Jeevanand K wrote:

    I need to generate the report for the following scenarios

    So what's the problem:

    SELECT  task.task_name,
            COUNT(
                  CASE
                    WHEN TRUNC(SYSDATE) - TRUNC(task_instance.ptd_pdd_date) = -1 THEN 1
                  END
                 ) AS "1_day_ago",
            COUNT(
                  CASE
                    WHEN TRUNC(SYSDATE) - TRUNC(task_instance.ptd_pdd_date) = -2 THEN 1
                  END
                 ) AS "2_day_ago",
            COUNT(
                  CASE
                    WHEN TRUNC(SYSDATE) - TRUNC(task_instance.ptd_pdd_date) = -3 THEN 1
                  END
                 ) AS "3_day_ago",
            COUNT(
                  CASE
                    WHEN TRUNC(SYSDATE) - TRUNC(task_instance.ptd_pdd_date) = -14 THEN 1
                  END
                 ) AS "2_weeks_ago",
            COUNT(
                  CASE
                    WHEN TRUNC(SYSDATE) - TRUNC(task_instance.ptd_pdd_date) < -3 THEN 1
                  END
                 ) AS "more_than_4_days_ago"
      FROM  task,
            task_instance
      WHERE task.task_id = task_instance.task_id
        AND task_instance.status_id = 1
      GROUP BY task.task_name;
    

    Keep in mind "more_than_4_days_ago" includes tasks as filled with "2_weeks_ago".

    SY.

  • Try to migrate Ultiboard user database of the 11 to 12 worm

    I updated my software to Ver 12 and noticed that my user database have not migrated. Then I copied my worm 11 critical db space worm 12 and restarted Ultiboard. On call for Ultiboard, I received a diagnosis indicating that my user database was the wrong version and that it would not be usable. So, how can I migrate my database to the user, and why was it not this part of the update process in the first place?

    Hello smh55,

    Tools > database > convert the database should do the trick...

  • Structure of the case duplicates all the indicators on the user interface.

    I create a true/false case structure that contains several indicators for each of the cases respectively.  These indicators are displayed simultaneously on the user interface.  Is there a way to have indicators or indicators to replace the other as the other case is active or control must be in the user interface at the same time?

    Thank you!

    Is there a reason you want to duplicate the indicators?  The normal practice is to move the indicators outside the structure of the case and the wire coming from each case out through a tunnel.

  • How to get down the database since the failure of the upgrade in case of physical standby

    Hi people,

    Can you please tell me how to get down the has no upgrade in case of physical standby database?

    Kind regards

    Taoqir

    The generic steps to upgrade db at the dg environment

    1. stop the database pending the application of recovery logs

    2. stop the recovery of his expedition logs

    3. upgrade the primary database server executable files

    4 level database server executable files shall ensure that

    5. switch to the main database using DBUA or upgrade scripts

    6 mount the backup database

    7 reactivate shipping again Eve elementary school

    8 restart the recovery process run on the standby database again progress apply

  • In our Production, we can share the password of user of database 'Apps' with our consultants functional, although they would like to examine through fields by (help &gt; Diagnostics &gt; review) and here he asked the password of the user "APPS".

    In our Production, we can share the password of user of database 'Apps' with our consultants functional, although they would like to examine through fields by (help > Diagnostics > review) and here he asked the password of the user "APPS". We need to know the path where they can examine the field without knowing the password for user "apps".

    Check

    How to enforce password Protection to access the Menu help > Diagnostics > review? (Doc ID 1487534.1)

  • What opening of database Service of Cloud Computing console receiveing "the user role cannot access the Cloud database Service" message and see no service. Why?

    What opening of database Service of Cloud Computing console receiveing "the user role cannot access the Cloud database Service" message and see no service. Why?

    Thank you in advance.

    Try now

  • Oracle Database Vault ORA-12578 connection error: open TNS:wallet failed (user OS to access the wallet)

    Hi all

    I create a portfolio of oracle and everything works fine until a script is launched by the OS oracle user. (same user that whoever created the store)

    I use authentication external store and inside my script, I do something like a sqlplus / @MYSECURE_TNS.

    However, when I run a script OS another user as a 'data_loading_user' I get the error: Oracle Database Vault ORA-12578 connection error: TNS:wallet open failed

    I would like to know, how I can activate any user on the local host access the portfolio safe to connect to the database.

    Here my current ENV:

    ==================

    Oracle Linux 6.5

    Oracle a Standard 11.2.0.4

    Webtier Oracle 11g

    Database and thin client SQLNET. ORA

    =============================

    SQLNET. WALLET_OVERRIDE = TRUE

    SSL_CLIENT_AUTHENTICATION = FALSE

    SSL_VERSION = 0

    WALLET_LOCATION =

    (SOURCE =

    (METHOD = FILE)

    (METHOD_DATA =

    (DIRECTORY = / u01/app/oracle/owm/wallets)

    )

    )

    Thanks in advance for any help.

    JS

    Hi all

    Tried something out of the blue, that has worked.

    I added the data_loading_user of the user to the group administrator (Group of BONES that created the wallet).

    The I added the read permission to the group, so the permission on the files below were 640:

    # > chmod 640 cwallet.sso

    # > 640ewallet.p12 chmod

    Thank you

    JS

  • that means "user singolo"? I 'am' a company, a single user, but I would like to use the software in my Office OR home. is it ok with 'user unico "? the case, which means 'aziende '?

    that means "user singolo"? I 'am' a company, a single user, but I would like to use the software in my Office OR home. is it ok with 'user unico "? the case, which means 'aziende '?

    Cloud license allows 2 activations http://www.adobe.com/legal/licenses-terms.html

    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0

    -Windows or Mac has no importance... 2 on the same operating system or 1 on each

    -Two activations on one account CAN NOT be used at the same time (to be noted in the link above of the license)

  • Am about to buy DW.  2 quick questions before proceeding.  (1) can I associate a DW created an EXTERNAL SQL Express database for the read/write site?  Can be made safe?  (2) am plans to use Contribute to allow non-technical users to end dry change

    Am about to buy DW.  2 quick questions before proceeding.  (1) can I associate a DW created an EXTERNAL SQL Express database for the read/write site?  Can be made safe?  (2) am plans to use Contribute to allow non-technical end users EASILY change the sections of the web site.  Can this work?  Thank you.

    I would like some ideas.

    A CMS is the standard solution in the industry today. The most common environment is LAMP (LINUX, Apache, MySQL, PHP).

    Some of us to write custom CMS systems for a living. I concentrate on CMS for retirement centers. There are all kinds of solutions CMS available ranging from generalist, off-the-shelf CMS like WordPress, completely custom, with a lot of opportunities in the meantime.

  • Installation of Adobe met an unexpected failure when you attempt to install the first instance of AdobeAcrobatPro DC.  It is the exact error message and seems to be the case for a number of users.  I am running Windows 7 and has already managed to success

    Installation of Adobe met an unexpected failure when you attempt to install the first instance of AdobeAcrobatPro DC.  It is the exact error message and seems to be the case for a number of users.  I am running Windows 7 and was already able to install Adobe Acrobat Reader DC and have Adobe Flash Player 10 ActiveX installed successfully.  It's the exact error message, there is NO error code!   It seems as there is no support number to contact Adobe to, and the only way to receive the 'support' is through the forum.   PLEASE ANSWER!

    Untitled.jpg

    Hi tracyes31040766,

    If it you please run this tool cleaner Download Adobe Reader and Acrobat cleaning - Adobe Labs tool to remove the old Acrobat, retsrat your system plates & then try to install it again using this link Download Adobe Acrobat free trial | Acrobat Pro DC.

    Let me know how it goes.

    Kind regards

    Nicos

  • user and password for the connection with the database command

    Hello

    I need to connect to the control of the database but I do not know the password for sys and system users, please, could someone tell me the password?

    Concerning

    need to order prompt (windows)

    cmd > set ORACLE_SID = 'database_name '.
    cmd > sqlplus "/ as sysdba".
    sqlplus > alter user username identified by password;

    You can change any user password by above the command using sys as sysdba or / as sysdba.

  • Impossible connection postgresql, error psql: FATAL: no entry for the host pg_hba.conf ": 1", user 'eware', database 'eware.

    Original title: I am facing below errorpostgresql

    I have windows 12, I am unable to connect postgresql. I am faced with error below

    psql: FATAL: no entry of pg_hba.conf to host ": 1", user 'eware', database 'eware.
    ", SSL off.

    I have windows 12, I am unable to connect postgresql . I am faced with error below

    psql: FATAL: no entry of pg_hba.conf to host ": 1", user 'eware', database 'eware.
    ", SSL off.

    Hello

    There is no Windows 12.

    And "postgresql" is database software open source.

    I suggest that you ask for their support link:

    http://www.PostgreSQL.org/support/

    See you soon.

  • Add the custom user field / Module URL + 1 case report

    Hello

    I'm trying to get this BC online form to work.

    I have a content module support and this is a request for information form which can be seen here

    http://www.eco-cabins.com.au/information-request?cabin=1%20Room%20with%20No%20Bath % 20Quee % 20Bed % 20and % 20Queen % 20Bunker % 20Bed n

    As you can see, the {module_url, cabin} works well 1 room without bathroom, Queen bed and one bed Queen Size Bunker

    on the page but is not his way to the record of the case.

    This is the HTML code: http://pastebin.com/HVmRNpNm

    When someone enters a case the cabin field ends up being empty as you can see in the following image. I would like to display what they are on the page. For example: 1 room with no bath, Queen bed and a Queen-size Bunker bed

    SafariScreenSnapz002.png

    Essentially, I would like to identify what page they are on to identify what cabin they are curious.

    Any help would be appreciated. I had a look to the tutorials and videos but still questions. Thank you

    Thank you, the information is displayed in the case... However,.

    It appears on the page of people with a request for information:

    That's what I used:

    Too bad. I fixed it with

    {module_url, cabin}

Maybe you are looking for