Skip to content
View akapitula's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report akapitula

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. expdp create dump of database in ORA... expdp create dump of database in ORACLE (impdp utility)
    1
    // to export and import Oracle database user as an alternative to old imp/exp utility can be used next commands:
    2
    // In sql editor run:
    3
    // export dump file in Oracle storage
    4
    DECLARE
    5
    hdnl NUMBER;
  2. Clear unused docker images and conta... Clear unused docker images and containers
    1
    #NOTE: before running commands check output list to remove
    2
    # remove untagged docker images:
    3
    docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
    4
    #remove stopped docker containers:
    5
    docker rm $(docker ps -q -f status=exited)