Top Tags

Vi editor in Linux

  • By
  • November 8, 2022
  • 0 Comments
  • 52 views

Install PostgreSQL

  • By
  • February 7, 2018
  • 0 Comments
  • 49 views

Monitoring in Postgresql

  • By
  • February 5, 2018
  • 0 Comments
  • 47 views

Restore Oracle DB in Linux

  • By
  • January 31, 2018
  • 0 Comments
  • 51 views

Backup Oracle DB using RMAN in linux

  • By
  • January 31, 2018
  • 0 Comments
  • 50 views

Oracle DBA Roles

  • By
  • January 31, 2018
  • 0 Comments
  • 45 views
  • HannieHannie
  • November 8, 2022
  • 0 Comments
Vi editor in Linux

Its a visual editor by default installed in every linux system. The next version of vi is vim. The vi editor tool is an interactive tool as it displays changes…

  • HannieHannie
  • February 7, 2018
  • 0 Comments
Install PostgreSQL

1. yum install postgresql-server postgresql-contrib 2. su postgresql 3. postgresql-setup initdb 4. vi /var/lib/pgsql/data/pg_hba.conf 5. Find the lines that look like this near the end of the file and change…

  • HannieHannie
  • February 5, 2018
  • 0 Comments
Monitoring in Postgresql

In normal PostgreSQL operation, tuples that are deleted or obsoleted by an update are not physically removed from their table. They remain present until a VACUUM is done. Therefore it’s necessary to do VACUUM periodically, especially…

  • HannieHannie
  • January 31, 2018
  • 0 Comments
Restore Oracle DB in Linux

To restore a database from the default directory /backup/rman use the cmd cmd: RESTORE DATABASE; Restore Specific Tablespace: Instead of restoring the full database, you can also restore only specific tablespace…

  • HannieHannie
  • January 31, 2018
  • 0 Comments
Oracle DBA Roles

A database administrator’s responsibilities can include the following tasks: Installing and upgrading the Oracle Database server and application tools Allocating system storage and planning future storage requirements for the database…

  • HannieHannie
  • December 12, 2017
  • 0 Comments
MongoDB

Features: ->MongoDB is a No SQL database. It is an open-source, cross-platform, document-oriented database written in C++.C-> It stores data as documents, so it is known as document oriented database. -> documents…

  • HannieHannie
  • December 10, 2017
  • 0 Comments
SQLite

-> SQLite is an open source, zero-configuration, self-contained, stand alone, transaction relational database engine designed to be embedded into an application. -> SQLite does not have a separate server process. It…

  • HannieHannie
  • December 10, 2017
  • 0 Comments
Basic Commands in Mysql

-> This is the world’s second most popular and widely used open source database. -> All the database names, table names and table fields name are case sensitive. -> To switch…