Tuesday, November 2, 2010

SQL – QUERIES

SQL – QUERIES I. SCHEMAS Table 1 : STUDIES PNAME (VARCHAR), SPLACE (VARCHAR), COURSE (VARCHAR), CCOST (NUMBER) Table 2 : SOFTWARE PNAME (VARCHAR), TITLE (VARCHAR), DEVIN (VARCHAR), SCOST (NUMBER), DCOST (NUMBER), SOLD (NUMBER) Table 3 : PROGRAMMER PNAME (VARCHAR), DOB (DATE), DOJ (DATE), SEX (CHAR), PROF1 (VARCHAR), PROF2 (VARCHAR), SAL (NUMBER) LEGEND : PNAME – Programmer Name, SPLACE – Study Place, CCOST – Course Cost, DEVIN – Developed in, SCOST – Software Cost, DCOST – Development Cost, PROF1 – Proficiency 1 QUERIES : 1. Find out the selling cost average for packages developed in Oracle. 2. Display the names, ages and experience of all programmers. 3. Display the names of those who have done the PGDCA course. 4. What is the highest number of copies sold by a package? 5. Display...
Read more »

Question on Oracle

1.Which is the subset of SQL commands used to manipulate Oracle Database structures, including tables? Data Definition Language (DDL) 2. What operator performs pattern matching? LIKE operator 3. What operator tests column for the absence of data? IS NULL operator 4. Which command executes the contents of a specified file? START or @ 5. What is the parameter substitution symbol used with INSERT INTO command? & 6. Which command displays the SQL command in the SQL buffer, and then executes it? RUN 7. What are the wildcards used for pattern matching? for single character substitution and % for multi-character substitution 8. State true or false. EXISTS, SOME, ANY are operators in SQL. True 9. State true or false. !=, <>, ^= all denote the same operation. True 10. What...
Read more »

RDBMS

RDBMS 1. What is database? A database is a logically coherent collection of data with some inherent meaning, representing some aspect of real world and which is designed, built and populated with data for a specific purpose. 2. What is DBMS? It is a collection of programs that enables user to create and maintain a database. In other words it is general-purpose software that provides the users with the processes of defining, constructing and manipulating the database for various applications. 3. What is a Database system? The database and DBMS software together is called as Database system. 4. Advantages of DBMS? Redundancy is controlled. Unauthorised access is restricted. Providing multiple user interfaces. Enforcing integrity constraints. Providing backup and recovery. 5. Disadvantage...
Read more »

Oracle DBA Question & Answer

Oracle DBA 1. SNAPSHOT is used for [DBA] a] Synonym, b] Table space, c] System server, d] Dynamic data replication Ans : D 2. We can create SNAPSHOTLOG for [DBA] a] Simple snapshots, b] Complex snapshots, c] Both A & B, d] Neither A nor B Ans : A 3. Transactions per rollback segment is derived from [DBA] a] Db_Block_Buffers, b] Processes, c] Shared_Pool_Size, d] None of the above Ans : B 4. ENQUEUE resources parameter information is derived from [DBA] a] Processes or DDL_LOCKS and DML_LOCKS, b] LOG_BUFFER, c] DB__BLOCK_SIZE.. Ans : A 5. LGWR process writes information into a] Database files, b] Control files, c] Redolog files, d] All the above. Ans : C 6. SET TRANSACTION USE ROLLBACK SEGMENT is used to create user objects in a particular Tablespace a] True, b] False Ans : False 7. Databases...
Read more »

Technical Oracle

Technical Oracle 1. Explain the difference between a hot backup and a cold backup and the benefits associated with each. A hot backup is basically taking a backup of the database while it is still up and running and it must be in archive log mode. A cold backup is taking a backup of the database while it is shut down and does not require being in archive log mode. The benefit of taking a hot backup is that the database is still available for use while the backup is occurring and you can recover the database to any point in time. The benefit of taking a cold backup is that it is typically easier to administer the backup and recovery process. In addition, since you are taking cold backups the database does not require being in archive log mode and thus there will be a slight performance...
Read more »

Oracle :DBA

DBA 1. What DBA activities did you to do today? Wow, this is a loaded question and almost begs for you to answer it with "What DBA activities do you LIKE to do on a daily basis?." And that is how I would answer this question. Again, do not get caught up in the "typical" day-to-day operational issues of database administration. Sure, you can talk about the index you rebuilt, the monitoring of system and session waits that were occurring, or the space you added to a data file, these are all good and great and you should convey that you understand the day-to-day operational issues. What you should also throw into this answer are the meetings that you attend to provide direction in the database arena, the people that you meet and talk with daily to answer adhoc questions about database use,...
Read more »

Monday, November 1, 2010

Oracle: Procedures, Functions & Packages

Procedures, Functions & Packages ; 27. What is a stored procedure ? A stored procedure is a sequence of statements that perform specific function. 28. What is difference between a PROCEDURE & FUNCTION ? A FUNCTION is alway returns a value using the return statement. A PROCEDURE may return one or more values through parameters or may not return at all. 29. What are advantages fo Stored Procedures / Extensibility,Modularity, Reusability, Maintainability and one time compilation. 30. What are the modes of parameters that can be passed to a procedure ? IN,OUT,IN-OUT parameters. 31. What are the two parts of a procedure ? Procedure Specification and Procedure Body. 32. Give the structure of the procedure ? PROCEDURE name (parameter list.....) is local variable declarations BEGIN Executable...
Read more »

Pages 71234 »