Thursday, January 12, 2017

How to solve ORA-02391 exceeded simultaneous SESSIONS_PER_USER limit

The error definition:

//  *Cause: An attempt was made to exceed the maximum number of
//          concurrent sessions allowed by the SESSION_PER_USER clause
//          of the user profile.
//  *Action: End one or more concurrent sessions or ask the database
//           administrator to increase the SESSION_PER_USER limit of
//           the user profile.

You need to adjust the SESSIONS_PER_USER of the profile the user is assigned to.
alter profile general_users LIMIT SESSIONS_PER_USER <num> | default | unlimited;

num = a fixed number of sessions that is the upper bound for the number of concurrent session the user can create
Default = the user is subject to the limits on those resources defined by the DEFAULT profile
unlimited = the user assigned this profile can use an unlimited amount of this resource

Wednesday, January 11, 2017

How to find users in the database with default passwords

select d.username,account_status
from dba_users_with_defpwd d inner join dba_users u
on d.username = u.username
where u.account_status = 'OPEN';
exit
Output in my case:
USERNAME                                 ACCOUNT_STATUS
---------------------------------------- --------------------
CTXSYS                                   OPEN
MGDSYS                                   OPEN

These accounts should have their password changed for security reasons.

Monday, January 9, 2017

List temporary tablepaces and their tempfiles


select t.file#,ts#,status,t.name "temp file name",n.name "tablespace name", n.bigfile,t.bytes/1024/1024 "Size MB"
from v$tempfile t join v$tablespace n
using(ts#);
FILE# TS# STATUS temp file name tablespace name BIGFILE Size MB
1
3
ONLINE /u02/oradata/proddb01/temp01.dbf TEMP YES
256
2
66
ONLINE /u02/oradata/proddb01/user_temp.dbf USER_TEMP YES
256
3
70
ONLINE /u02/oradata/proddb01/temp_d1u_01.dbf BATCH_TEMP YES
256

Thursday, January 5, 2017

How to manually set the date and time on an AIX server

Old, incorrect date:
[root@myserver:/] date
Wed Jul 12 10:11:36 CEST 2017

Change it to the current date:
[root@myserver:/] date 010510152017
Thu Jan  5 10:15:31 CET 2017

Where

01=month
05=day
1015=time and minute
2017=year


Let's check it, immediately after we have set it:
[root@myserver:/] date
Thu Jan  5 10:16:27 CET 2017

The ntpd deamon has already adjusted the time slightly.
Note that ntpd will only adjust the server time if the local time of the server is within 1000 sec (16 minutes) of the current time. From the xntpd man pages:


Note: When operating in a client mode, the xntpd daemon will exit with an error if no configured servers are within 1000 seconds of local system time. Use the date or ntpdate command to set the time of a bad skewed system before starting xntpd.

How to check status and start/stop daemons on the AIX platform

For example, let's check the status of the ntpd service:

[root@myserver:/] lssrc -a|grep ntpd
 xntpd            tcpip                         inoperative

It is inoperative, meaning not running.

Start it:
[root@myserver:/] startsrc -s xntpd
0513-059 The xntpd Subsystem has been started. Subsystem PID is 11141174.

If you want to stop it, use


[root@myserver:/] stopsrc -s xntpd

Wednesday, January 4, 2017

How to expand the /tmp file system on a Linux server

Problem: /tmp needs more space.
It is placed in the root directory of the server:
[root@myserver ~]# df -h /
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/vg_system-Root
               5.8G  4.0G  1.5G  73% /
Use vgdisplay to check how much free space exist in the volume group by looking at Free PE / Size:

[root@myserver]# vgdisplay
  --- Volume group ---
  VG Name               vg_system
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  11
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                5
  Open LV               5
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               24.00 GiB <-- total size of VG
  PE Size               4.00 MiB
  Total PE              6143
  Alloc PE / Size       5631 / 22.00 GiB
  Free  PE / Size       512 / 4.00 GiB <-- 4 GB free
  VG UUID               d0OgTw-stMx-GfyT-N1zA-cEv8-1OGY-2qZ8D4

Increase size of logical volume by 2GB:
lvextend -L +2G /dev/vg_system/Root 

 Size of logical volume vg_system/Root changed from 8.00 GiB (2047 extents) to 10.00 GiB (2559 extents).
  Logical volume Root successfully resized.

Finally increase size of file system:
resize2fs /dev/mapper/vg_system-Root 

resize2fs 1.41.12 (17-May-2010)
Filesystem at /dev/mapper/vg_system-Root is mounted on /; on-line resizing required
old desc_blocks = 1, new_desc_blocks = 1
Performing an on-line resize of /dev/mapper/vg_system-Root to 2620416 (4k) blocks.
The filesystem on /dev/mapper/vg_system-Root is now 2620416 blocks long.

In this example:

  • vg_system = volume group name
  • /dev/vg_system/Root = Logical volume Path
  • /dev/mapper/vg_system-Root = file system name

    The file system name you will find in /etc/fstab:
    /dev/mapper/vg_system-Root      /       ext4    defaults        1       1
    
  • Tuesday, December 27, 2016

    How to analyze a specific partition only using dbms_stats

    To analyze only specific partitions, including subpartitions, use the dbms_stats.gather_table_stats while specifying the directives PART_NAME and GRANULARITY.

    The following query reveals that several of the recently added subpartitions in the COMPLETED_ORDERS partition have not yet been analyzed:
    SELECT P.PARTITION_NAME "partition name",P.NUM_ROWS "partition rows",P.LAST_ANALYZED "last analyzed", SP.SUBPARTITION_NAME "subpart name", SP.NUM_ROWS "subpartition rows",SP.LAST_ANALYZED "subpart last analyzed"
    FROM DBA_TAB_PARTITIONS P INNER JOIN DBA_TAB_SUBPARTITIONS SP
    ON (P.TABLE_NAME = SP.TABLE_NAME)
    WHERE P.TABLE_NAME='ORDERS'
    AND P.PARTITION_NAME = SP.PARTITION_NAME
    AND P.PARTITION_NAME = 'COMPLETED_ORDERS'
    AND SP.NUM_ROWS IS NULL
    ORDER BY P.PARTITION_NAME DESC,SP.SUBPARTITION_NAME;
    

    Output:

    partition name partition rows last analyzed subpart name subpartition rows subpart last analyzed
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2017    
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2018    
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2019    
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2020    

    To analyze them, use dbms_stats with the PART_NAME directive, and the GRANULARITY directive set to "SUBPARTITION"
    BEGIN
      SYS.DBMS_STATS.GATHER_TABLE_STATS (
         OwnName        => 'SCOTT'
        ,TabName        => 'ORDERS'
        ,partname       => 'COMPLETED_ORDERS'
        ,Estimate_Percent  => DBMS_STATS.AUTO_SAMPLE_SIZE
        ,method_opt        => 'FOR ALL COLUMNS SIZE AUTO'
        ,Degree            => DBMS_STATS.AUTO_DEGREE
        ,Cascade           => DBMS_STATS.AUTO_CASCADE
        ,granularity       => 'SUBPARTITION'
        ,No_Invalidate     => DBMS_STATS.AUTO_INVALIDATE);
    END;
    /
    
    
    After statistics gathering, execute the query again, but without the "AND SP.NUM_ROWS IS NULL" predicative:

    partition name partition rows last analyzed subpart name subpartition rows subpart last analyzed
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2017
    0
    27/12/2016 09:10:04
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2018
    0
    27/12/2016 09:10:05
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2019
    0
    27/12/2016 09:10:07
    COMPLETED_ORDERS
    2527257
    19/10/2015 07:17:44 CO_SP_2020
    0
    27/12/2016 09:10:08


    The 12.2 version of dbms_stats.gather_table_stats is documented here