Running process to run in background
to send the running process to run in background
Press CTRL-Z to suspend the job, then type ‘bg’ to send it to the background.
to send the running process to run in background
Press CTRL-Z to suspend the job, then type ‘bg’ to send it to the background.
Oracle Technical Interview Questions Answered – Part1 The interview process can be quite stressful. Here is the first part of a two part series on helping you answer those tough questions that you might experience in your quest for an Oracle DBA position. Ever since I wrote the past article on the Oracle Technical Interview,…
This are the Responsibilities for DBA. Top 99 Responsibilities of a DBA Database Architecture Duties 1. Planning for the database’s future storage requirements 2. Defining database availability and fault management architecture 3. Defining and creating environments for development and new release installation 4. Creating physical database storage structures after developers have designed an application 5….
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>…
Q. What if your Dad loses his car keys? A. ‘Parent keys not found!’ Q. What if your old girl friend spots you with your new one? A. ‘Duplicate value on index!’ Q. What if the golf ball doesn’t get into the hole at all? A. ‘Value larger than specified precision!’ Q. What if you…
Top Five Cool Features of Oracle9i 1 Flashback Query Ever wanted to run a query against your data as it appeared last month? You can, and much more, using Oracle9i Flashback Query. 2 Access External Files No more work-arounds for accessing data not in your database. Now you can query data that’s kept in files…
I was Installating OracleAS 10.1.2 Infrastructure on Sun 10. I was getting this error ORA-3113, I had raised SR then I came to know OracleAS 10.1.2 is having bug with Sun 10. I had followed this Doc id Note 335645.1. After applying the patch it was working fine.