search

Custom Search
Affichage des articles dont le libellé est database. Afficher tous les articles
Affichage des articles dont le libellé est database. Afficher tous les articles

jeudi 21 janvier 2016

MariaDB how to connect database

Here a quick video about how to connect to a MariaDB database :


How to connect Postgresl database

How to connect Postgresl database
Here a quick how to video about Postgresl PSQL connection :


dimanche 21 octobre 2012

How to start and stop the Listener


A quick video and a little tutorial about the Listener in Oracle 11g

 

Status of the listener

# lsnrctl status

Starting the listener

# lsnrctl start

Stopping the listener

  # lsnrctl stop


Oracle 11g user connection



A quick video about user connection via Sqlplus. Login to oracle system user first.

 

As you can see, you can connect by different way.

Connect as sysdba :

  # sqlplus "/as sysdba"

Connect as normal user : sqlplus user/password

  # sqlplus scott/tiger

View current user

#sql> SHOW USER