Give the stages of instance startup to a usable state
where normal users may access it.

1 Answer

Answer :

STARTUP NOMOUNT - Instance startup
STARTUP MOUNT - The database is mounted
STARTUP OPEN - The database is opened

Related questions

Description : What is Restricted Mode of Instance Startup ?

Last Answer : An instance can be started in (or later altered to be in) restricted mode so that when the database is open connections are limited only to those whose user accounts have been granted the RESTRICTED SESSION system privilege.

Description : What is Restricted Mode of Instance Startup?

Last Answer : An instance can be started in (or later altered to be in) restricted mode so that when the database is open connections are limited only to those whose user accounts have been granted the RESTRICTED SESSION system privilege.

Description : Which instances of an SAP system require a running database during their startup? Note: there are 2 correct answered to this question. ? A. Java Central Services Instance B. Additional Application Server Instance C.ABAP Central Services Instance D. Primary Application Server Instance

Last Answer : B. Additional Application Server Instance

Description : What are the steps involved in Database Startup ?

Last Answer : Start an instance, Mount the Database and Open the Database. Rolling forward to recover data that has not been recorded in data files, yet has been recorded in the on-line redo ... Resolving any pending distributed transactions undergoing a two- phase commit at the time of the instance failure.

Description : Is a Key startup trigger fires as result of a operator pressing a key explicitly ?

Last Answer : No

Description : What is a Database instance ? Explain

Last Answer : A database instance (Server) is a set of memory structure and background processes that access a set of database files. The process can be shared by all users. The memory structure that are ... helps up to improve database performance by decreasing the amount of I/O performed against data file.

Description : What is an Oracle Instance?

Last Answer : The Oracle system processes, also known as Oracle background processes, provide functions for the user processes-functions that would otherwise be done by the user processes themselves Oracle database- ... combination of the SGA and the Oracle background processes is known as an Oracle instance

Description : What is an Instance?

Last Answer : a) The term instance is typically used to describe a complete database environment, including the RDBMS software, table structure, stored procedures and other functionality. It is most commonly used ... just collection of background processes and memory structures, used to tap in to the database.

Description : What is Instance Recovery?

Last Answer : While Oracle instance fails, Oracle performs an Instance Recovery when the associated database is being re started. Instance recovery occurs in two steps: Cache recovery: Changes being made to ... undo data stored in undo segments to accomplish this. This process is called transaction recovery.

Description : What is an Oracle Instance?

Last Answer : An Oracle database server consists of an Oracle database and an Oracle instance. Every time a database is started, a system global area (SGA) is allocated and Oracle background processes are started. The combination of ... (LOCAL=NO) 10254 oracle 15 0 744m 14m 12m S 0.0 1.0 0:00.10 ora_w000_DB1_SID

Description : SaaS supports multiple users and provides a shared data model through _________ model. a) single-tenancy b) multi-tenancy c) multiple-instance d) all of the mentioned

Last Answer : multi-tenancy

Description : A group of users within a particular instance is called ______________ a) suser b) pod c) superuser d) all of the mentioned

Last Answer : pod

Description : SaaS supports multiple users and provides a shared data model through _________ model. A. single-tenancy B. multi-tenancy C. multiple-instance D. None of the above

Last Answer : multi-tenancy

Description : SaaS supports multiple users and provides a shared data model through _________ model. a) single-tenancy b) multi-tenancy c) multiple-instance d) all of the mentioned

Last Answer : multi-tenancy

Description : How does one give developers access to trace files (required as input to tkprof)? (for DBA)

Last Answer : The "alter session set sql_trace=true" command generates trace files in USER_DUMP_DEST that can be used by developers as input to tkprof. On Unix the default file mask for these files are "rwx r-- -- ... = true Include this in your INIT.ORA file and bounce your database for it to take effect.

Description : Point out the correct statement. a) A client can request access to a cloud service from any location b) A cloud has multiple application instances and directs requests to an instance based on ... a set of virtual machines with each machine being assigned a workload d) All of the mentioned

Last Answer : All of the mentioned

Description : Point out the correct statement. a) A client can request access to a cloud service from any location b) A cloud has multiple application instances and directs requests to an instance based on ... a set of virtual machines with each machine being assigned a workload d) All of the mentioned

Last Answer : All of the mentioned

Description : Point out the correct statement. a) A client can request access to a cloud service from any location b) A cloud has multiple application instances and directs requests to an instance based on ... a set of virtual machines with each machine being assigned a workload d) All of the mentioned

Last Answer : All of the mentioned

Description : Point out the correct statement. a) A client can request access to a cloud service from any location b) A cloud has multiple application instances and directs requests to an instance based on ... a set of virtual machines with each machine being assigned a workload d) All of the mentioned

Last Answer : All of the mentioned

Description : Can static method access instance variables ?

Last Answer : Ans. Though Static methods cannot access the instance variables directly, They can access them using instance handler.

Description : Using which keyword we can access value of the instance variables and class variables of that class inside the method of that class itself. A) super B) final C) this D) either super or this

Last Answer : C) this

Description : How does one manage Oracle database users? (for DBA

Last Answer : Oracle user accounts can be locked, unlocked, forced to choose new passwords, etc. For example, all accounts except SYS and SYSTEM will be locked after creating an Oracle9iDB database using the DB ... locked users account ALTER USER scott PASSWORD EXPIRE; -- Force user to choose a new password

Description : How does one manage Oracle database users? (for DBA

Last Answer : Oracle user accounts can be locked, unlocked, forced to choose new passwords, etc. For example, all accounts except SYS and SYSTEM will be locked after creating an Oracle9iDB database using the ... from SYS.V$BH log buffer spaces Increase LOG_BUFFER parameter or move log files to faster disks

Description : which system variables can be set by users?

Last Answer : SYSTEM.MESSAGE_LEVEL SYSTEM.DATE_THRESHOLD SYSTEM.EFFECTIVE_DATE SYSTEM.SUPPRESS_WORKING

Description : Who created all these users in my database?/ Can I drop this user? (for DBA

Last Answer : Oracle creates a number of default database users or schemas when a new database is created. Below are a few of them: SYS/CHANGE_ON_INSTALL or INTERNAL Oracle Data Dictionary/ Catalog Created ... there should be no problem altering these users to use a different default and temporary tablespace.

Description : How does one create and drop database users?

Last Answer : Look at these examples: CREATE USER scott IDENTIFIED BY tiger -- Assign password DEFAULT TABLESACE tools -- Assign space for table and index segments TEMPORARY TABLESPACE temp; -- Assign sort space ... give the user some space quota on its tablespaces: ALTER USER scott QUOTA UNLIMITED ON tools;

Description : How does one change an Oracle user's password?(for DBA

Last Answer : Issue the following SQL command: ALTER USER IDENTIFIED BY ; From Oracle8 you can just type "password" from SQL*Plus, or if you need to change another user's password, type "password ... this example: SQL> password Changing password for SCOTT Old password: New password: Retype new password:

Description : How does one add users to a password file? (for DBA

Last Answer : One can select from the SYS.V_$PWFILE_USERS view to see which users are listed in the password file. New users can be added to the password file by granting them SYSDBA or SYSOPER privileges, or by using the orapwd utility. GRANT SYSDBA TO scott;

Description : You want users to change their passwords every 2 months. How do you enforce this?

Last Answer : Oracle password security is implemented via Oracle "profiles" which are assigned to users. PASSWORD_LIFE_TIME - limits the number of days the same password can be used for authentication First, start ... to detect and remove duplicate rows ▪ Delete duplicate table rows that contain NULL values

Description : Can you assign Priority to users?

Last Answer : YES. This is achievable with Oracle Resource Manager. DBMS_RESOURCE_MANAGER is the packcage to administer the Database Resource Manager. The DBMS_RESOURCE_MANAGER package maintains plans, consumer groups, and ... also provides semantics so that you may group together changes to the plan schema.

Description : How can you view all the current users connected in your database in this moment?

Last Answer : SELECT COUNT(*),USERNAME FROM V$SESSION GROUP BY USERNAME;

Description : How can you view all the users account in the database?

Last Answer : SELECT USERNAME FROM DBA_USERS

Description : Am I normal because I prefer Startup Companies rather than Corporation?

Last Answer : Some people thrive in the wearing of many hats and the chaos that is startups. I found it very heady for years when I was in my prime, I am finally at an age where I do not like working that many hours a week but I still consult for startups, which gives me a vicarious thrill.

Description : How to access the current value and next value from a sequence ? Is it possible to access the current value in a session before accessing next value ?

Last Answer : Sequence name CURRVAL, Sequence name NEXTVAL.It is not possible. Only if you access next value in the session, current value can be accessed.

Description : What is Fine Grained Access Control? (for DBA

Last Answer : See question "What is a Virtual Private Database".

Description : I know that suffixes "ez" and "es" denotes "son of" in the Spanish language; but, why the different endings? For instance, you may see the surname Gonzales or Gonzalez?

Last Answer : It has to do with the government taking a census. this practice started in B.C. (or b.c.e. for the heathens) and names were subject to the census takers who knew how to write, but not always ... . Some of these were like Johnson/Johnston, Gib/Gibb/Gibbs, White/Waite/Wit/Witt, and hundreds of others.

Description : What is Domain-Key Normal Form?

Last Answer : A relation is said to be in DKNF if all constraints and dependencies that should hold on the the constraint can be enforced by simply enforcing the domain constraint and key constraint on the relation.

Description : What is BCNF (Boyce-Codd Normal Form)?

Last Answer : A relation schema R is in BCNF if it is in 3NF and satisfies an additional constraint that for every FD X A, X must be a candidate key.

Description : What is 1 NF (Normal Form)?

Last Answer : The domain of attribute must include only atomic (simple, indivisible) values.

Description : What is the difference between normal views and RAC views?

Last Answer : RAC views has the prefix ‘G’. For example, GV$SESSION instead of V$SESSION

Description : Explain the differences between SHUTDOWN, SHUTDOWN NORMAL, SHUTDOWN IMMEDIATE AND SHUTDOWN ABORT.

Last Answer : SHUTOWN NORMAL = SHUTDOWN : It waits for all sessions to end, without allowing new connections. SHUTDOWN IMMEDIATE : Rollback current transactions and terminates every session. SHUTDOWN ABORT : Aborts all ... in an inconsistent state. It's the fastest method, but can lead to database corruption.

Description : What is a hobby that will give you hours of fun with a startup cost of around $100?

Last Answer : Calligraphy. You can spend some money for fancy pen, ink, and paper, but generally just normal pen and paper is enough.

Description : Is it standard to give healthcare benefits to the first employee at a 2-founder startup?

Last Answer : Rarely but it would help you get better candidates.

Description : Tip question #1: In this instance, would you give the body shop owner a tip?

Last Answer : No tip. Unless you tip the actual guy who did the work. And if you do, do it in cash. The guy will appreciate it more.

Description : Spurious tuples may occur due to i. Bad normalization ii. Theta joins iii. Updating tables from join a) i& ii b) ii & iii c) i& iii d) ii & iii

Last Answer : a) i& ii b) ii & iii

Description : State true or false for Java Program. i) All class variables are instance variables ii) All protected methods are friendly methods A) i-false, ii-false B) i-false, ii-true

Last Answer : B) i-false, ii-true

Description : Are these work bench lamps usable in an apartment?

Last Answer : Well yes, they are usable. But a light that's good at 10 pm should be good at 3 am; it doesn't get darker.lights really don't change with time. Also, they aren't very pleasant to ... whatever you are reading will be bothersome. That's why lightbulbs designed for reading at home are soft white .

Description : What is the likelihood that a USB drive will be usable after having gone through a wash/dry cycle in the pocket of my jeans?

Last Answer : I had one that did, it was one of the retractable Sandisk kind. Still using it these days.

Description : Would a water repellent spray make a jacket reasonably usable in a light rain?

Last Answer : It depends on the jacket. Some clothes etc. are designed to be waterproof but only are if you spray the seams, for example. Other clothes etc. are not designed to be waterproof, and spraying them won't ... spray documentation, or good sales staff (e.g. at REI) to figure out what works best on what.

Description : Do anyone know of an online site where you can calculate usable power from a given sized solar cell?

Last Answer : Watt’s Law may hold the answer you seek. (W = Watts (power), I = Amps, E = volts) W = E x I, E = W/I, I = W/E. 746 Watts = 1 horsepower.