In this article we will cover new features of 11 G1) Case senstive Passwords : In 11G oracle password are case senstive ,but this feature can be changed by altering the parameter ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE; 2) Invisible indexes :In 11G we can make index invisible .Once we make index invisible it will be ignored by Optimiser CREATE INDEX index_name ON table_name(column_name) INVISIBLE;ALTER INDEX index_name INVISIBLE;Invisible index is useful in cases where you want to see the impact...