Indian Epic Browser with Antivirus proctection
I was excited to see the feature of Epic browser. It is marvelous. You can download it from http://www.epicbrowser.com/
I was excited to see the feature of Epic browser. It is marvelous. You can download it from http://www.epicbrowser.com/
Unix Command’s for DBA’s Basic File Navigation The “pwd” command displays the current directory: root> pwd /u01/app/oracle/product/9.2.0.1.0 The “ls” command lists all files and directories in the specified directory. If no location is defined it acts on the current directory: root> ls root> ls /u01 root> ls -al The “-a” flag lists hidden “.” files….
ORA-00600: internal error code, arguments: [opixrb-4], [1036] ORA-00600: internal error code, arguments: [opixrb-4], [1036], [ORA-01036: illegal variable name/number ], [], [], [], [], [] According to metalink , this is a known bug. Bug 4964703 OERI[opixrb-4] [1036] from SELECT over DBLINK with trailing :N or :Q bind names Fixed-Releases: 9208 A203 PROPOSED SOLUTION(S) ====================== 1.Applying…
1) Finding the GUID of a User a. Using SQL SQL> select guid from portal.wwsec_person$ where user_name = ‘<user_name>’; b. Using ldapsearch: ldapsearch -h myhost -p 3060 -D cn=orcladmin -w <GUI_password_for_orcladmin_user> -b “” -s sub “cn=<cn_for_problem_user>” “*” orclguid 2) Manually updating a users GUID SQL> update portal.wwsec_person$ set guid = <OID_user_GUID> where user_name =’user_name’; SQL>…
Oracle Locking Survival Guide —————————– Overview In multi-user systems, many users may update the same information at the same time. Locking allows only one user to update a particular data block; another person cannot modify the same data. The basic idea of locking is that when a user modifies data through a transaction, that data…
Today, I had cleared my IZ046 Managing Oracle on Linux for DBA’s, the exam was sechdule for 9 a.m. I was on time for the exam. The most of the questions where regarding ASM, Installation and Administrating Linux. I was little tense before the exam, how would be the paper, but it was not so…
I had recently upgraded the Database from 10.1.0.4 to 10.2.0.4, I had saved the statistics in table sys.dictstattab. I want to test the statistics on the Test Database. There are four basic steps to copy the statistics from one database to another database using DBMS_STATS: 1) Create a table in your database to hold the…