Aktuelle Fragen 1Z0-860 Oracle it-pruefungen

Aktuelle Fragen 1Z0-860 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-860 Java Enterprise Edition 5 Business Component Developer Certified Professional Exam Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-860 Oracle it-pruefungen

QUESTION NO: 1
A session bean calls the setRollbackOnly method on the EJBContext interface within a business method with an active transaction. Which two are correct? (Choose two.)

A. The transaction timeout is immediately disabled.
B. The container will ensure that the transaction will never commit.
C. The bean must have started the current transaction for this to be legal.
D. The bean must have bean-managed transaction demarcation for this to be legal.
E. Thebean must have container-managed transaction demarcation for this to be legal.

Answer: B,E

QUESTION NO: 2
A developer is working on a user registration application using EJB 3.0. A business method registerUser in stateless session bean RegistrationBean performs the user registration.
The registerUser method executes in a transaction context started by the client. If some invalid user data causes the registration to fail, the client invokes registerUser again with corrected data using the same transaction. Which design can meet this requirement?

A. Have registerUser method call EJBContext.setRollbackOnlyOmethodafter registration fails.
B. Have registerUser method throw javax.ejb.EJBTransactionRequiredExceptionafterregistration
fails.
C. HaveregisterUser method throw EJBException without marking the transaction for rollback, after registration fails.
D. Create an application exception withtherollbackattributeset to falseandhave registerUser method throwit afterregistration fails.

Answer: D

QUESTION NO: 3
Given:
11. @PersistenceContext EntityManager em;
12. public boolean test(Order o) {
13. boolean b = false;
14. o = em.merge(o);
15 em.remove(o);
16. o = em.merge(o);
17. b = em.contains(o);
18. return b;
19.}
Which statement is correct?

A. The method will return TRUE.
B. Themethod will return FALSE.
C. Themethodwill throw an exception.
D. TheOrder instance willberemoved from the database.

Answer: C

Aktuelle Fragen 1Z0-860 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-851 Oracle it-pruefungen

Aktuelle Fragen 1Z0-851 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-851 Java Standard Edition 6 Programmer Certified Professional Exam Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-851 Oracle it-pruefungen

QUESTION 1
A team of programmers is involved in reviewing a proposed design for a new utility class. After some discussion, they realize that the current design allows other classes to access methods in the utility class that should be accessible only to methods within the utility class itself. What design issue has the team discovered?

A. Tight coupling
B. Low cohesion
C. High cohesion
D. Loose coupling
E. Weak encapsulation
F. Strong encapsulation

Answer: E

QUESTION 2
Given a method that must ensure that its parameter is not null:

11. public void someMethod(Object value) {
12. // check for null value

20. System.out.println(value.getClass());
21. }

What, inserted at line 12, is the appropriate way to handle a null value?

A. assert value == null;
B. assert value != null, “value is null”;
C. if (value == null) { throw new AssertionException(“value is null”); }
D. if (value == null) { throw new IllegalArgumentException(“value is null”); }

Answer: D

QUESTION 3
Given:

public class Target {
private int i = 0;
public int addOne() {
return ++i;
}
}

And:

public class Client {
public static void main(String[] args){
System.out.println(new Target().addOne());
}
}

Which change can you make to Target without affecting Client?

A. Line 4 of class Target can be changed to return i++;
B. Line 2 of class Target can be changed to private int i = 1;
C. Line 3 of class Target can be changed to private int addOne(){
D. Line 2 of class Target can be changed to private Integer i = 0;

Answer: D

Aktuelle Fragen 1Z0-851 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-850 Oracle it-pruefungen

Aktuelle Fragen 1Z0-850 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-850 Java Standard Edition 5 and 6, Certified Associate Exam Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-850 Oracle it-pruefungen

QUESTION NO: 1
Which technology is used to develop components that interact with server-side objects in a webbased
application?
A. XML
B. servlets
C. HTML
D. JavaScript
Answer: B

QUESTION NO: 2
Which is true?
A. JSP developers must learn Java programming to create JavaServer Pages.
B. JavaServer Pages are translated into servlets before they are executed.
C. JSP technology output is never displayed to clients.
D. JSP is defined as JavaScript Pages.
Answer: B

QUESTION NO: 3
Which three compile without error? (Choose three.)
A. String str = ‘Hello’;
B. String str = “Hello”;
C. String str = “Hello” – ” World!”;
D. String str = new String(“Hello”);
E. String str = “Hello” + ” World!”;
F. String str = new String(‘Hello’);
Answer: B,D,E

Aktuelle Fragen 1Z0-850 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-821 Oracle it-pruefungen

Aktuelle Fragen 1Z0-821 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-821 Oracle Solaris 11 System Administrator Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-821 Oracle it-pruefungen

QUESTION NO: 1
The advantage of core tiles is that they allow you an opportunity to examine the cause of
problems, so that they can be resolved.
However, core files must be managed because they_____.

A. take up large amounts of disk space
B. make numerous entries into the /var/adm/wtmpx file
C. steal resources from the processor, slowing down system performance
D. fill up swap space; this will begin to slow the system due to swaps
E. fill up swap space; this will begin to slow the system due to paging

Answer: A

Explanation: Part of the job of cleaning up heavily loaded file systems involves locating and removing files that have not been used recently. You can locate unused files by using the ls or find commands.
Other ways to conserve disk space include emptying temporary directories such as the directories located in /var/tmp or /var/spool, and deleting core and crash dump files.
Note: Core files are generated when a process or application terminates abnormally. Core files are managed with the coreadm command.
For example, you can use the coreadm command to configure a system so that all process core files are placed in a single system directory. This means it is easier to track problems byexamining the core files in a specific directory whenever a process or daemon terminates abnormally.
Reference: Oracle Solaris Administration: Common Tasks, Finding and Removing Old or Inactive Files

QUESTION NO: 2
The line
set noexec_user_stack= l
should be added to the /etc/system file to prevent an executable stack while executing user programs. What is the purpose of this?

A. help prevent core dumps on program errors
B. help programs to execute more quickly by keeping to their own memory space
C. log any messages into the stack log
D. help make buffer-overflow attacks more difficult

Answer: D

Explanation: How to Disable Programs From Using Executable Stacks
Purpose: Prevent executable stack from overflowing.
You must be in the root role.
Edit the /etc/system file, and add the following line:
set noexec_user_stack=1
Reboot the system.
# reboot
Reference: How to Disable Programs From Using Executable Stacks

QUESTION NO: 3
User jack makes use of the bash shell; his home directory is/export/home/jack.
What is the correct setting of umask, and where should it be set, to allow jack to create a shell script using the vi editor, that is executable by default?

A. It is not possible to make a script executable without using the chmod command.
B. umask value of 0002 set in /etc/profile
C. umask value of 0002 set in /export/home/jack/.bashrc
D. umask value of 0722 set in /etc/profile
E. umask value of 0722 set In /export/home/jack/.bashrc

Answer: B

Aktuelle Fragen 1Z0-821 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-804 Oracle it-pruefungen

Aktuelle Fragen 1Z0-804 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-804 Java SE 7 Programmer II Exam Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-804 Oracle it-pruefungen

QUESTION NO: 1
Given:
import java.io.File;
import java.nio.file.Path;
public class Test12 {
static String displayDetails(String path, int location) {
Path p = new File(path).toPath();
String name = p.getName(location).toString();
return name;
}
public static void main(String[] args) {
String path = “project//doc//index.html”;
String result = displayDetails(path,2);
System.out.print(result);
}
}
What is the result?

A. doc
B. index.html
C. an IllegalArgumentException is thrown at runtime.
D. An InvalidPthException is thrown at runtime.
E. Compilation fails.

Answer: B

QUESTION NO: 2
Given the code fragment:
public void otherMethod() {
printFile(“”);
}
public void printFile(String file) {
try (FileInputStream fis = new FileInputStream(file)) {
System.out.println (fis.read());
} catch (IOException e) {
e.printStackTrace();
}
Why is there no output when otherMethod is called?

A. An exception other than IOException is thrown.
B. Standard error is not mapped to the console.
C. There is a compilation error.
D. The exception is suppressed.

Answer: D

Explanation: The code compiles fine
The line FileInputStream fis = new FileInputStream(file))
will fail at runtime since file is an empty string.
Note:
public void printStackTrace()
Prints this throwable and its backtrace to the standard error stream.

QUESTION NO: 3
Given the code fragment:
public void ReadFile (String source) {
char[] c = new char [128];
int cLen = c.length;
try (FileReader fr = new FileReader (source)) {
int count = 0;
int read = 0;
while ((read = fr.read(c)) != -1) {
count += read;
}
System.out.println(“Read: ” + count + ” characters.”);
} catch (IOException i) {
}
What change should you make to this code to read and write strings instead of character arrays?

A. ChangeFileReader to Readers.
B. ChangeFileReader to DataReader.
C. ChangeFileReader to File.
D. ChangeFileReader to BufferReader.

Answer: D

Aktuelle Fragen 1Z0-804 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-803 Oracle it-pruefungen

Aktuelle Fragen 1Z0-803 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-803 Java SE 7 Programmer I Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-803 Oracle it-pruefungen

QUESTION NO: 1
Given:
class Overloading {
int x(double d) {
System.out.println(“one”);
return 0;
}
String x(double d) {
System.out.println(“two”);
return null;
}
double x(double d) {
System.out.println(“three”);
return 0.0;
}
public static void main(String[] args) {
new Overloading().x(4.0)
}
}
What is the result?

A. One
B. Two
C. Three
D. Compilation fails

Answer: D

Explanation: overloading of the x method fails as the input argument in all three cases are
double.
To use overloading of methods the argument types must be different.
Note: The Java programming language supports overloading methods, and Java can distinguish between methods with different method signatures. This means that methods within a class can have the same name if they have different parameter lists

QUESTION NO: 2
The catch clause argument is always of type___________.

A. Exception
B. Exception but NOT including RuntimeException
C. Throwable
D. RuntimeException
E. CheckedException
F. Error

Answer: C

Aktuelle Fragen 1Z0-803 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-591 Oracle it-pruefungen

Aktuelle Fragen 1Z0-591 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-591 Oracle it-pruefungen

QUESTION NO: 1
Object Security controls access to Subject Areas, Tables, and Columns in OBIEE and can be implemented by using which method?

A. Single Sign-On (SSO)
B. Database Authentication
C. Business Logic Object Security
D. External Table Authentication
E. LDAP Authentication

Answer: C

Explanation: Object-level security controls the visibility to business logical objects based on a user’s role. You can set up object-level security for metadata repository objects, such as subject areas and presentation folders, and for Web objects, such as dashboards and dashboard pages, which are defined in the Presentation Catalog.
1) Business logic object
This controls access to objects, such as:
* subject areas
* presentation tables
* presentation columns
For example, users in a particular department can view only the subject areas that belong to their department.
2) Web object security
This provides security for objects stored in the Web Catalog, such as dashboards, dashboard pages, folders, and reports. You can view only the objects for which you are authorized. For example, a mid-level manager may not be granted access to a dashboard containing summary information for an entire department.

QUESTION NO: 2
Which two steps are needed to set up Failover support for an OBIEE deployment?

A. Use Installer to affect Horizontal scale out of an existing instance
B. Employ WebLogic Enterprise Edition, licensed separately
C. Use Installer to set up separate single instances, then apply Horizontal scale out clustering
D. Apply OBIEE Clustering option
E. Leverage spare hardware capacity of single machine by using Verticalscale out option

Answer: A,D

Explanation: Horizonal Scaleout of System Components
* Used for adding additional managed servers (Java components) and
system components to an existing cluster
* Used for scalability and failover
* Set up via the Universal Installer > Scale Out BI System option

QUESTION NO: 3
When creating an initialization Block, which BI Administration function is used?
A. Variable Manager
B. Job Manager
C. Identity Manager
D. Projects Manager

Answer: A

Aktuelle Fragen 1Z0-591 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-536 Oracle it-pruefungen

Aktuelle Fragen 1Z0-536 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-536 Oracle Exadata 11g Essentials Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-536 Oracle it-pruefungen

QUESTION NO: 1
When do you specify the type of interleaving for a grid disk?

A. When you create the cell disk
B. When you create the grid disk
C. Through ASM
D. When you create a tablespace

Answer: C

Explanation: Automatic Storage Management (ASM) is the storage management foundation of Exadata. ASM virtualizes the storage resources and provides the advanced volume management and file system capabilities of Exadata. Striping database files evenly across the available Exadata cells and disks results in uniform I/O load across all the storage hardware. The ability of ASM to perform non-intrusive resource allocation, and reallocation, is a key enabler of the shared grid storage capabilities of Exadata environments. And the ASM mirroring and failure group functionality provides much of the data protection and resiliency across the Exadata environment.
With ASM, data is mirrored across cells to ensure high availability in the event of cell failure.

http://www.pythian.com/news/17905/physical-disk-cell-disk-grid-disk-and-asm-disk-in-exadata/

QUESTION NO: 2
Why would you reduce the default disk_repair_time parameter?

A. To extend the availability of your ASM disk groups.
B. To reduce the need for high redundancy
C. To reduce the amount of data collected for a fast resynch
D. To increase performance of an Exadata Storage Server.

Answer: C

Aktuelle Fragen 1Z0-536 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-147 Oracle it-pruefungen

Aktuelle Fragen 1Z0-147 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-147 Oracle9i program with pl/sql Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-147 Oracle it-pruefungen

QUESTION 1
You want to create procedures, functions and packages Which privilege do you need?
A. EXECUTE CODE object privilege
B. CREATE ANY CODE object privilege
C. CREATE PACKAGE system privilege
D. CREATE PROCEDURE system privilege
E. CREATE FUNCTION, CREATE PROCEDURE, CREATE PACKAGE system privileges

Answer: D

Explanation/Reference:
The privilege CREATE PROCEDURE gives the grantee the right to create procedures, functions, and packages within their schema. This privilege does not give the right to drop or alter the program constructs.
Incorrect Answers
A, B & C are not valid object or system privileges.

QUESTION 2
You have created a stored procedure DELETE_TEMP_TABLE that uses dynamic SQL to remove a table in your schema. You have granted the EXECUTE privilege to user A on this procedure. When user A executes the DELETE_TEMP_TABLE procedure, under whose privileges are the operations performed by default?
A. SYS privileges
B. Your privileges
C. Public privileges
D. User A’s privileges
E. User A cannot execute your procedure that has dynamic SQL.

Answer: B

Explanation/Reference:
When you create a procedure, it will be executed under the privileges of the creator, unless the procedure has the following statement AUTHID CURRENT_USER. If you specify AUTHID CURRENT_USER, the privileges of the current user are checked at run time, and external references are resolved in the schema of the current user. Like this example
SQL> CREATE OR REPLACE PROCEDURE delete_temp_table(v_table varchar2)
2 AUTHID CURRENT_USER
3 IS
4 BEGIN
5 EXECUTE IMMEDIATE ‘DROP TABLE ‘||V_TABLE;
6 END;
7 /
Procedure created.
If the procedure is create in this way then the EXECUTE IMMEDIATE statement will be execute under the privilege of the user who executes the procedure, but if we skip line 2 then the procedure will be executed under the privilege of the owner of the procedure.
Incorrect Answers
A: SYS privilege has nothing with is.
C: What is the public privileges? There is nothing called public privileges.
D: This will be true if the procedure contains the AUTHID CURRENT_USER.
E: There is no problem in having a dynamic SQL statement in Procedure.

QUESTION 3
When creating a function, in which section will you typically find the RETURN keyword?
A. HEADER only
B. DECLARATIVE
C. EXECUTABLE and HEADER
D. DECLARATIVE,EXECUTABLE and EXCEPTION HANDLING

Answer: C

Aktuelle Fragen 1Z0-147 Oracle it-pruefungen

Posted in Uncategorized

Aktuelle Fragen 1Z0-055 Oracle it-pruefungen

Aktuelle Fragen 1Z0-055 Oracle it-pruefungen

Alle unsere Online-Training Werkzeuge sind mit den wechselnden Prüfungszielen verfügbar, so dass Sie sicher sein, immer für Ihre Business Solutions mit den neuesten und origninalsten Praxisprüfungen vorzubereiten und unsere Business Solutions kann aktualisiert werden und Sie bekommen Werkzeuge zu günstigen Preisen für Ihren eigenen Komfort.

1Z0-055 Oracle Database 11g: New Features for 9i OCPs Vorbei an den Praxisprüfungen ist es keineswegs schon schneller und einfacher, jetzt mit spezifischen Fragen und Antworten, mit aus den chaotisch Business Solutions, die sein oft falsch kann. grenzenlose Prüfungen sind nicht nur die weniger kostspielige Methode, sondern um mit sich Rückgriff auf Praxisprüfung passieren.

Aktuelle Fragen 1Z0-055 Oracle it-pruefungen

QUESTION 1
You installed Oracle Database 11g and are performing a manual upgrade of the Oracle9i database. As a part of the upgrade process, you execute the following script:
SQL>@utlu111i.sql
Which statement about the execution of this script is true?

A. It must be executed from the Oracle Database 11g environment.
B. It must be executed only after the SYSAUX tablespace has been created.
C. It must be executed from the environment of the database that is being upgraded.
D. It must be executed only after AUTOEXTEND is set to ON for all existing tablespaces.
E. It must be executed from both the Oracle Database 11g and Oracle Database 9i environments.

Answer: C

QUESTION 2
Which two statements about the SQL Management Base (SMB) are true? (Choose two.)

A. It contains only SQL profiles generated by SQL Tuning Advisor.
B. It stores plans generated by the optimizer using a stored outline.
C. It is part of the data dictionary and stored in the SYSAUX tablespace.
D. It is part of the data dictionary and stored in the SYSTEM tablespace.
E. It contains the statement log, the plan history, plan baselines, and SQL profiles.

Answer: CE

QUESTION 3
Which statement about the enabling of table compression in Oracle Database 11g is true?

A. Compression can be enabled at the table, tablespace, or partition level for direct loads only.
B. Compression can be enabled only at the table level for both direct loads and conventional DML.
C. Compression can be enabled at the table, tablespace, or partition level for conventional DML only.
D. Compression can be enabled at the table, tablespace, or partition level for both direct loads and
conventional DML.

Answer: D

Aktuelle Fragen 1Z0-055 Oracle it-pruefungen

Posted in Uncategorized