oracle certification questions

Learn about oracle certification questions, we have the largest and most updated oracle certification questions information on alibabacloud.com

Questions about Sysoper This system privilege in Oracle

is not possible to log in with Sysoper, which requires us to create this ora_oper group ourselves, and then add administrator users to the Ora_oper group.By default, only ora_dba this groupThe steps are as follows:1, right button "computer"-"management"-"Local Users and Groups"-"group".2. Right button "group"-"new group ...".3. Enter the group name "Ora_oper" and add the members. Then select "Advanced" below the "Select User" pop-up box.4, then select "Find Now", select Administrator This membe

Sqoop importing files from HDFs into Oracle with questions about date types

In recent projects, the results of the completion of Hadoop operations (which exist on HDFs) need to be imported into Oracle, but when you import the Date field ' 2016-03-01 ' in HDFs with Sqoop, the Sqoop error says that the date type must be ' yyyy-mm-dd HH:MM:SS.ffffffff .Does Sqoop not support the custom to_date function, so I started looking for answers online, but I could hardly find the relevant information until I saw the following information

Some questions and answers from Oracle 12c and Goldengate 12c

, PDB1)Extract E1 successfully registered with database at SCN 2664333.Sql> select Capture_name,capture_user,status,start_scn,purpose from Dba_capture;Capture_name capture_user STATUS START_SCN PURPOSE----------------- ------------------ -------- ---------- -------------------Ogg$cap_e1 C # #GGADMIN ENABLED 2664333 GoldenGate Capture(3) testSql> Connect Pdb1_u1/[email protected]Connected.1) DMLsql> INSERT into S1 values (+);1 row created.Sql> commit;Commit complete.2) DDLsql> Create sequence SS1

Oracle questions about number type conversion To_char types

Label:Select To_char (0.1) nums from dual;It is observed that if the integer digits of the decimal are 0, the converted string does not have the preceding 0, and if the preceding 0 is required, a certain rule is required to format it, as shown belowSelect To_char (0.1, ' 0.9 ') nums from dual;We change the decimal number to an integer and then we look.Select To_char (1, ' 0.9 ') nums from dual;Integers can also be programmed with double typesThere are many rules about To_char (x, y) and Y, here

Oracle Final Exam Questions

statements are incorrect. The following statement about notification is correct ():A. Notificationmanager man = new Notificationmanager ();B. Pendingintent contentintent= New Pendingintent ();C. remoteviews Contentview = new Remoteviews ();D. Notification Notification = new Notification (); The right thing about the Contenvalues class is ()A, he and Hashtable more similar, is also responsible for storing some name value pairs, but he stored the name value of theB, he and Hashtable more si

Oracle from getting started to mastering questions about simple queries

job information for all employees. [] (http://i2.51cto.com/images/blog/201807/03/0c3c32fbe18d0dab3f74c70fcf61142a.png?x-oss-process=image/ watermark,size_16,text_qduxq1rp5y2a5a6i,color_ffffff,t_100,g_se,x_10,y_10,shadow_90,type_zmfuz3pozw5nagvpdgk=) In the diagram, we will find that many people work together, so now if you do not want duplicate content in it, then you can use distinct in the SELECT clause to eliminate duplicate content. Syntax format: SELECT DISTINCT Job from EMP; results! [] (

Company Assessment Questions-(Oracle II)

ProceduresCreate or Replace procedure DEPT_EMP6 iscursor db_cursor is select * from Deptframwork ORDER by Deptid;cursor Db_cursor_e is select * FROM deptemployee;whole_name varchar (+), Emps varchar ($): =null;flag Boolean:=true;begin for R in Db_cursor Loop if R.upperid=0 then update deptframwork set wholename=r.deptname where Deptid=r.deptid;Dept_emp4(R.deptid,r.deptname); End If; For re in db_cursor_e Loop if Re.deptno=r.deptid then if flag then emps:=re.emname; Flag:=false; else Emps

Some questions after installing Oracle

1. After installing the database server, there is aClicking on a button after opening will call you to log in, the username is system, the password is the password set at the time of installation (the password I set is root).。2. On the operating system "run" enter Sqlplus then enter the user name password, the user name is system, the password is installed when the password is set (I set the password is root), and then can execute the SQL statement.3.Oracle

Questions about updating field values with a cursor in Oracle

The following table lists the questions about updating field values with cursors in Oracle: [csharp] SQL> set pagesize 60; SQL> run; 1 * select * from employee www.2cto.com name salary ---------- SMITH 800 ALLEN 1600 WARD 1250 JONES 2975 MARTIN 1250 BLAKE 2850 CLARK 2450 SCOTT 3000 KING 5000 TURNER 1500 ADAMS 1100 JAMES 950 FORD 3000 MILLER 1300 already select 14 rows. In this table, if the SALARY column is

Oracle Exam Questions Jobs

number and find the average score for each group of passing persons (grade >= 60) (average number of passing persons per course)3. Ask for an average of all courses for each student4. The average score for each student (exam result) Pass Course5. Average score for each student in each internal test (average of each course per learner)6. Check the average score of the students who have done the exam (find out if the student's course number (CID) appears in the group more than once) (each course

Oracle database Development Face Questions

Recently participated in 4, 5 interviews, summed up the competition in the Oracle development post most frequently asked what questions:1. What is the difference between delete and truncate?1) Truncate is a DDL statement, and delete is a DML statement;2) Truncate speed is much faster than delete;The reason is that when we perform a delete operation, all table data is copied to the rollback table space first

Questions about oracle Database Development

I recently attended 4 or 5 interviews to summarize the most common questions about competing for oracle development jobs: 1. What is the difference between delete and truncate? 1) truncate is a DDL statement and delete is a DML statement; 2) truncate is much faster than delete; The reason is: When we perform the delete operation, all table data is first copied to the rollback tablespace, and the data si

Oracle enhanced exercise questions

Oracle enhanced exercise questions Write simple query statements 1. display all information about the department table Select * from dept; 2. display the Department number and department name Selectdeptno, dname from dept; 3. display the following fields and the string connection: employee name, "1 month salary:", salary. For example, Amy's one-month salary is 8000. Select ename | 'monthly salary: '|

Boolean operators in the-java of Oracle face test questions

-operatorThe non-operator is denoted by the symbol "~", and its Operation law is as follows:If the bit is 0, the result is 1, if the bit is 1, the result is 0, see a simple example below.public class Data15{public static void Main (string[] args){int a=2;SYSTEM.OUT.PRINTLN ("A non-result is:" + (~a));}}4. Xor operatorThe XOR operator is denoted by the symbol "^", and its Operation law is:The two operand bits, the same result is 0, and the result is 1. Let's look at a simple example.public class

SQL Server or Oracle queries the top three questions for each section

SELECT * from(SELECT [pk_event_report_id] ,[fk_report_flow_id] ,[Event_report_kind] ,[Event_report_type] ,[event_report_org] ,[Event_report_number], Dense_rank () Over(Partition byevent_report_orgORDER by [event_report_sumit_date] DESC) asROWNUM1 from [gcsdb_2].[dbo].[Event_reports]) TTWHEREROWNUM12First step group sorting, plus numbering, second step to deleteOracle is similar, except that the Add function is differentSELECT * FROM (Select t.*,row_number () over (par

Oracle Interview Toolkit-General Questions

Transfer from Http://www.orafaq.com/wiki/Interview_Questions Tell us about Yourself/your background. What is the three major characteristics that is the job market for bring to? What motivates good job? What, or three things is most important What qualities does you think is essential to being successful in this kind's work? What courses do you attend? What job certifications? What subjects/courses do you excel in? Why? What subjects/courses gave you trouble? Why? How does your

Total Pages: 4 1 2 3 4 Go to: Go

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.