-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
alter database set TIME_ZONE='Europe/Oslo'; | ||
alter database datafile 1 autoextend on maxsize 2G; | ||
alter system set recyclebin=OFF DEFERRED; | ||
alter system set processes=150 scope=spfile; | ||
alter system set session_cached_cursors=100 scope=spfile; | ||
alter system set session_max_open_files=100 scope=spfile; | ||
alter system set sessions=100 scope=spfile; | ||
alter system set license_max_sessions=100 scope=spfile; | ||
alter system set license_sessions_warning=100 scope=spfile; | ||
alter system set disk_asynch_io=FALSE scope=spfile; | ||
alter system set open_cursors=300 scope=both sid='*'; | ||
alter profile default limit password_life_time unlimited; | ||
alter profile default limit password_verify_function null; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters