Problem: Data got committed in another/same session, cannot update row.
Env: Oracle Sql Developer
How to Solve:
Uncheck below option
Problem: Data got committed in another/same session, cannot update row.
Env: Oracle Sql Developer
How to Solve:
Uncheck below option
sqlplus sys/oracle as sysdba
SQL>@"/mnt/hgfs/temp/QUERY.sql";
Suppose we have column names
We want to prepare them to use in a query and need to put double qutoes around them then put comma and combine all into one line.
press Ctrl + H and check Regular expression radio button.
Find What: (.+)
Replace with: "\1"
Find What: (.+)
Replace with: \1,
Find What: \r\n
Replace with:
select *
from TABLE_NAME
where dbms_lob.instr(COLUMNNAME,'searchtext') > 0;
sqlplus sys as sysdba
alter user [username] identified by [password] account unlock;