Can you have more than one key in a database?
What is online transaction processing (oltp)?
what is a stored procedure? : Sql dba
What's the difference between inner join and left join?
write a query find which rows of a table is updated on 2 days before?
what is overloading procedure or overloading function ?
Practice 1: Changes to data will only be allowed on tables during normal office hours of 8.45 in the morning until 5.30 in the afternoon, MONDAY through FRIDAY. A. Create a procedure called SECURE_DML that prevents the DML statement from executing outside of normal office hours, returning the message: “you may only make changes during normal office hours” b. Create a statement trigger on the PRODUCT table which calls the above procedure. c. Test it by inserting a new record in the PRODUCT table.
What are types of joins?
Table Student has 3 columns,Student_id,Student_Name & Course_Id. Table Course has 2 columns, Course_Id & Course_Name.Write a query to listdown all the Courses and number of student in each course.
What is the basic structure of PL/SQL ?
What is clustered, non-clustured and unique index. How many indexes can be created on a table ?
wirte a query to remove null? following table are col1 col2 col3 dinesh null null null suresh null null null prakesh i want the output like col1 col2 col3 dinesh suresh prkaesh
Does a user_objects view have an entry for a trigger?