BLOG
mkdir No such file or directory Solaris 11.2
mkdir: Failed to make directory “/u01/app/oracle/product/TimesTen/”; No such file or directory
Install Oracle Solaris 11.2 Using GUI
View the document here.
Thank you
Osama Mustafa
Jordan Amman Oracle User Group
Since this is the first event before the biggest one, it’s only introduction for the group and to introduce the local people and let them know about the group.
We prepare the poster today and seems perfect.
Jordan Amman Oracle User Group First Event
Now it’s Officially, the first event will be organized 09/April/2015 as introduction to this group, the volunteers working so hard, the second event will be surprise since it will be the biggest one in Jordan i will be announce about it soon. we still working on the logo but this is the initial one.
Configure RMAN Backup On Windows
- Create first text file called backup and change the format to “bat”, inside the file add the following lines :-
C:
cd E:\app\ADM-BSS01\product\11.2.0\dbhome_1\BIN
rman @E:\RMAN\Scripts\backup.rman
- Create 3 folders in E for example :-
- backup
- Archivelog
- Controlfile
- Create second file name it Backup.rman and add the Rman Script like below
connect target /
run
{
ALLOCATE CHANNEL c1 DEVICE TYPE disk;
ALLOCATE CHANNEL c2 DEVICE TYPE disk;
ALLOCATE CHANNEL c3 DEVICE TYPE disk;
ALLOCATE CHANNEL c4 DEVICE TYPE disk;
backup AS COMPRESSED BACKUPSET tag Full_database_open format ‘E:\RMAN\backup\db_%t_%s_p%p.bkp’ database;
backup AS COMPRESSED BACKUPSET archivelog all format ‘E:\RMAN\backup\archivelog\al_%t_%s_p%p.arch’ delete all input;
backup AS COMPRESSED BACKUPSET current controlfile tag =cf1 format ‘E:\RMAN\backup\cf_%t_%s_p%p.bkp’;
backup tag ORCL_CONTROL current controlfile format ‘E:\RMAN\Controlfile\%d_%T_%s_%p_CONTROL’;
delete noprompt expired backup;
release channel c1;
release channel c2;
release channel c3;
release channel c4;
}
Follow the screen now :-
- Add Task Name and Description :-
- Add The Time for this Task in this tab
- Another Screen :-
- In This Screen Add Bat File in our case backup.bat
Install Oracle grid infrastructure On Linux 6.6
Link From here
Cheers
Osama
Configure ASMLIB On Oracle Linux 6.6
I uploaded the document on Slideshare , check it from here
Cheers
Osama Mustafa
Enable/Disable SSH For Root User
- vi /etc/ssh/sshd_config
- search for line as follow :-
- PermitRootLogin yes and change it to –> PermitRootLogin no
- Search for the following lines as well :-
- DenyUsers root user2 user3
- Remove the root from Deny User
- DenyUsers user2 user3
- /etc/init.d/sshd restart
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
Cheers
Osama Mustafa
Oracle Streams ORA-44001: invalid schema
SQL> SQL> SQL> 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 job finished
DECLARE
*
ERROR at line 1:
ORA-23616: Failure in executing block 7 for script
13F5CD569383406C82E7F63EE3F927E0 with
ORA-44001: invalid schema
ORA-06512: at “SYS.DBMS_RECO_SCRIPT_INVOK”, line 139
ORA-06512: at “SYS.DBMS_STREAMS_RPC”, line 465
ORA-06512: at “SYS.DBMS_RECOVERABLE_SCRIPT”, line 659
ORA-06512: at “SYS.DBMS_RECOVERABLE_SCRIPT”, line 682
ORA-06512: at “SYS.DBMS_STREAMS_MT”, line 7972
ORA-06512: at “SYS.DBMS_STREAMS_ADM”, line 2674
ORA-06512: at line 5
The error related to apply_queue parameter in oracle stream is not set with valid value, therefore set the parameter correctly like the below
apply_queue_user => ‘STREAM_ADMIN’
Cheers
Osama Mustafa







