Home

alter table modify column in oracle database

We can change  the column datatype in a table using alter table modify column in oracle ALTER TABLE table_name MODIFY column_name <action>; Action can be many things like(a) change the data type(b) Shorten or widen the data type(c) Change the default value(d) Change to allow null or not nulls(e) Column Visibility(d) Virtual Column ModificationLet’s start …

alter table modify column in oracle database Read More »

Find command

This Find command article is part of  Linux tutorials and it has detailed explanations, examples Find command in Unix is an extremely useful command. you can search for any file anywhere using this command provided that file and directory you are searching has read-write attributes set to you, your, group, or all. Find descends directory …

Find command Read More »

How to enable archivelog mode in Oracle & Disable it

In this post, we will check about How to enable archivelog mode in Oracle ( alter database archivelog) in Both Single instance and RAC environments. We will also get to see how to disable the archivelog (alter database noarchivelog) in Both Single and RAC environments. We will also look at the common error ORA-00265. There …

How to enable archivelog mode in Oracle & Disable it Read More »

Scroll to Top