What command would you use to create a backup control file?
Alter database backup control file to trace. Read more »
Alter database backup control file to trace. Read more »
A primary key and a foreign key. Read more »
Faster access to data blocks in a table. Read more »
Both the truncate and delete command have the desired outcome of getting rid of all the rows in a table. The difference between the two is that the truncate command... Read more »
Use the describe command or use the dbms_metadata.get_ddl package. Read more »
Issue the create spfile from pfile command. Read more »
XML provides an application independent way of sharing data. With a DTD, independent groups of people can agree to use a common DTD for interchanging data. Your... Read more »
An XML Namespace is a collection of element types and attribute names. It consists of 2 parts 1) The first part is the URI used to identify the namespace 2) The... Read more »
A recursive relationship (one where a table relates to itself) is bad when it is a hard relationship (i.e. neither side is a “may” both are “must”)... Read more »
The alert.ora log. It is located in the directory specified by the background_dump_dest parameter in the v$parameter table. Read more »
For SQLNET V1 check for the existence of the orasrv process. You can use the command “tcpctl status” to get a full status of the V1 TCPIP server, other... Read more »
There are several base Oracle processes that will be running on multi-user operating systems, these will be smon, pmon, dbwr and lgwr. Any answer that has them using... Read more »
Whenever performance analysis indicates it would be beneficial to do so without compromising data integrity. Read more »
It is a column that is not an actual column in the table. eg USER, UID, SYSDATE, ROWNUM, ROWID, NULL, AND LEVEL. Suppose customer table is there having different... Read more »
PL/SQL declares a cursor implicitly for all SQL data manipulation statements, including quries that return only one row. However,queries that return more than one... Read more »