Category: SQLPlus

SQLPlus Password

PASSWORD Command Syntax: PASSW[ORD] [username] PASSWORD Command Examples: PASSWORD Changing password for test Old password: test New password: new_test Retype new password: new_test Password changed...

SQLPlus List

LIST Command Syntax: L[IST] [n|n m|n *|n LAST|*|* n|* LAST|LAST] LIST Command Example: 1 SELECT name, dept_id, role_id 2 FROM users 3 WHERE role_id= ‘MANAGER’ 4* ORDER BY dept_id SQL> LIST 3 Result: 3* WHERE role_id= ‘MANAGER’...

SQLPlus Input

INPUT Command Syntax: INPUT [text] INPUT Command Examples: SELECT product_id, product_name, price FROM products_view LIST 2 2* FROM products_view INPUT ORDER BY product_name 1 SELECT product_id, product_name, price 2 FROM products_view 3* ORDER BY product_name...

SQLPlus Host

The Host command in SQLPlus allows you to switch to the operating system shell without exiting SQLPlus. This can be useful when you need to perform tasks or execute commands that are not directly related to the database but are required...