Useful shortcuts for vi editor

Friday 10 October 2014

Linux - command line keyboard shortcuts

Here are some basic shortcuts while you are in command window;

CTRL + a -> go to begin of the line
CTRL + e -> go to end of the line
CTRL + d -> log-out
CTRL + w -> remove one word
CTRL + u -> remove all line
CTRL + r -> search for a word in history
CTRL + ins -> paste the clipboard

"cd -" -> go to last directory

How to kill a session with custom procedure?

-If you are authorized to sys user.

Firstly run this procedure to compile and save.
---
CREATE OR REPLACE PROCEDURE P_KILL_SESSION(DATABASE_USER_NAME IN VARCHAR2, STR_RESULT OUT VARCHAR2)
   IS
str_exec VARCHAR2(1000);
   BEGIN
     FOR cur_session IN (SELECT sid, serial#
                         FROM v$session
                        WHERE username = upper(DATABASE_USER_NAME)
                          AND status != 'KILLED') LOOP                          
      str_exec := 'alter system kill session ''' || cur_session.sid || '' || ',' || cur_session.serial# ||'''';      
      BEGIN
          execute immediate str_exec;
          STR_RESULT := 'Sessions are terminated successfully';
      EXCEPTION
      WHEN OTHERS THEN
        RAISE_APPLICATION_ERROR ( -20001,'An error was encountered - '||SQLCODE||' -ERROR- '||SQLERRM ) ;
      END;     
   END LOOP;
END;
---

To use it;
In command window-editor,

var STR_RESULT VARCHAR2
EXEC P_KILL_SESSION('test_user',:STR_RESULT)
--test_user session could be killed

How to overcome special character problem in Windows?

You can type special character with using ASCII Table.
eg. If you want to type backslash (\), press ALT + 92

You can reach all ASCII table via this link. (Refer to DEC)

Note: Please be sure that NUM_LOCK is on.

[SOLUTION] ORA-06550 and PLS-009005 problems

Please login to database server with ssh as oracle user and run that commands.
  • sqlplus / as sysdba
  • SQL> grant execute on DBMS_JOB to ALPERDB_USER;
  • SQL> exit

How to define distribution list in Microsoft Office Outlook?

To do that please follows the instructions;
  • Contacts -> New -> Distribution List -> Enter the name of the list and Select Members
  • Save and close
To use it;
  • Enter the list name on To/CC/BCC and click Check Names then send your mail.

How to revert all sql lines into one line in Ultra Edit and Notepad++ ?

For example, you have a long SQL file and you must run it in command line or in such tool or program. For this, you can use Ultra Edit or Notepad++ tool for convert it.

Ultra Edit:
Open file via Ultra Edit -> Press CTRL + R -> Input ^p and space character in related columns -> Click Start button -> Click Replace All button

Notepad++:
Open file via Notepad++ -> Select desired lines -> Press CTRL + J

That's it.

Thursday 9 October 2014

How to define network path for Windows Operating System?

To do that please follows the instructions;
  • Open My Computer -> Right mouse click -> Select “Add a new network location” -> Click as twice “Next” -> Enter your network address and click Next -> Enter your new network shortcut name -> Click finish
Notes;
This feature is able to use for “FTP” and “remote connection”

Like; ftp://IP or \\Your_IP

How to change system date in Linux?

Please run that command after you logged-in as root (su) user.

# date -s "9 OCT 2014 18:00:00"


to check it:

# date
e.g. Thu Oct  9 18:00:05 EEST 2014

How to know username information in Windows OS?

Please follow below steps:
  • Press Windows + R
  • Type and press enter; cmd
  • Type and press enter; echo %username%

How to shutdown Oracle Database Server in Windows OS?

Please follow below steps:
  • Press Windows + R
  • Type and press enter; sqlplus / as sysdba
  • Type and press enter; SQL> shutdown immediate
  • Type and press enter; SQL> exit
You can use other options instead of "immediate" keyword.

List of options:


normal

  • No new connections are allowed after the statement is issued. 
  • Before the database is shut down, the database waits for all currently connected users to disconnect from the database.
immediate
  • No new connections are allowed, nor are new transactions allowed to be started, after the statement is issued. 
  • Any uncommitted transactions are rolled back. (If long uncommitted transactions exist, this method of shutdown might not complete quickly, despite its name.) 
  • Oracle Database does not wait for users currently connected to the database to disconnect. The database implicitly rolls back active transactions and disconnects all connected users.
abort
  • No new connections are allowed, nor are new transactions allowed to be started, after the statement is issued. 
  • Current client SQL statements being processed by Oracle Database are immediately terminated. 
  • Uncommitted transactions are not rolled back. 
  • Oracle Database does not wait for users currently connected to the database to disconnect. The database implicitly disconnects all connected users.
transactional
  • No new connections are allowed, nor are new transactions allowed to be started, after the statement is issued. 
  • After all transactions have completed, any client still connected to the instance is disconnected.  
  • At this point, the instance shuts down just as it would when a SHUTDOWN IMMEDIATE statement is submitted
Refered to: http://docs.oracle.com/cd/B28359_01/server.111/b28310/start003.htm#ADMIN11160

Bye.

Tuesday 7 October 2014

How to start Oracle Database Server in Windows OS?

Please follow below steps:
  • Press Windows + R
  • Type and press enter; sqlplus / as sysdba
  • Type and press enter; SQL> startup
  • Type and press enter; SQL> exit
That's all. Bye.

How to remove a job in Oracle?

Please run that SQL lines in your editor's command window.

begin

 sys.dbms_job.remove(100);
commit;
end;

100; job id

If you do not know desired job id, you can follow this link to learn.

Note: You have to login to database as SYS user for run SQL.

How to know DBMS Jobs information in Oracle?

Please run that SQL in your editor's SQL window.

select * from user_jobs;

Windows key tricks

Here some Windows key tricks:
  • Windows key + M -> Minimizes all active windows 
  • Windows key + Shift + M -> Restore operation
  • Windows key + D -> Go to Desktop
  • Windows key + Tab -> Select another active window
  • Windows key + 1 -> Select first application in task bar
  • Shift + Windows key + 1 -> Open first application as new
  • Windows key + T -> Select another application in task bar
  • Windows key + Left Arrow -> Fit window to the left side
  • Shift + Windows key + Left Arrow/Right Arrow -> Move window to other monitor
  • Windows key + Right Arrow -> Fit window to the right side
  • Windows key + Down Arrow -> Minimize active window
  • Windows key + Up Arrow -> Maximize active window
  • Windows key + Plus key -> Zoom in via Magnifier
  • Windows key + Minus key -> Zoom out via Magnifier
  • Windows key + ESC -> Escape from zoom
  • Windows key + P -> Show me monitor output options
  • Windows key + Pause/Break key -> Open System Properties

Friday 1 August 2014

[SOLUTION] - TOra "ORA-12154" Error

If you get ORA-12154 while logging to database user with TNS in TOra, this means system does not know tnsnames.ora file path.




To solve this, you can add TNS_ADMIN variable to among user variables.

e.g. C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN
e.g. C:\orant\NET80\ADMIN



Bye.

[SOLUTION] - TOra "No available connection provider " Error

In this entry, I will show you that how to solve "No available connection provider " error in TOra SQL Editor.

If you get like below error, probably you have a problem with Oracle Client.




Fistly, you should check whether there is a Oracle Client in system. If yes, you have to add its path into path system variable.




If you don't have any Oracle Client, you should install it from Oracle website.

Bye. :)

Tuesday 22 July 2014

Windows'da Oracle XE Service ve Listener Başlatma

Merhaba,

Bu yazıda; Oracle XE Server kurulu olan Windows makinelerde ilgili servis ve dinleyici nasıl başlatılır onu anlatmaya çalışacağım.

Öncellikle Başlat menüsünden "Services" yazılarak işletim sistemine ait servislerin bulunduğu panel açılır.

Daha sonda ekran görüntüsünde görüleceği gibi OracleServiceXE ve OracleXETNSListener servisleri "Start service" linkine tıklanarak başlatılır.



.bat dosyası ile oracle servislerini başlatma: http://ozsoyler.blogspot.com.tr/2015/09/bat-dosyasndan-oracle-servislerini.html

İyi çalşmalar :)

Saturday 21 June 2014

How to force kill process in Command Window by using PID (Process Identifier)?

Please make sure that you do not enter system process identifier (PID) while killing process.
  1. Press Windows key + R
  2. Enter cmd then click OK
  3. Write tasklist and press Enter
  4. Define PID
  5. Write taskkill /PID [NUMBER] /F (e.g. taskkill /PID 5176 /F)
  6. You killed a process as you entered! Bye... :)

Before:





After:


Saturday 14 June 2014

F klavye kullanmanın faydaları

Türkçemizi koruyalım

  1. antipatik sıfat -> sevimsiz, itici, soğuk
  2. antre isim -> giriş; başlangıç yemeği
  3. doküman isim -> belge
  4. feedback fill -> geri bildirim, geri besleme
  5. laptop isim -> dizüstü bilgisayar
  6. monoton isim -> tekdüze
  7. trend isim -> eğilim
  8. versiyon isim -> sürüm, uyarlama
  9. download fiil -> dosya indirmek
  10. upload fiil -> dosya göndermek
Bilgi: http://www.tdk.gov.tr/ adresinden yararlanıldı.