databases Online Quiz - 69
Description: databases Online Quiz - 69 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: databases |
MYISAM is the default mysql search engine?
The follwing command is used to take the mysql backup?
The syntax means that "mysqladmin -u root password NEWPASSWORD"
Which one is mysql configuraion file?
When we use SELECT and DML statement in SQL, SQL server returns a message which specify the number of rows effected by these statements. How to disable this?
When SET ANSI_NULLS is OFF then which one is true?
When SET QUOTED_IDENTIFIER is ON which will be true?
Which is not a mandatory background process in Oracle9i
How many controfiles can be created in a Oracle Database
How do you gather statistics in Oracle 10g
What is default Pctused in Oracle?
In which tablespace AWR data is stored
Evalute the CREAT SEQUENCE Statement: CREATE SEQUENCE seq1 START WITH 100 INCREMENT BY 10 MAXVALUE 200 CYCLE NOCACHE ; The Sequence seq1 has generated upto the maximum limit of 200 .you issue the following SQL statement SELECT seq1.NEXTVAL from dual ; what is the output?
OE and SCOTT are the users in the DB.the ORDERS tables is owned by OE.Evalute the statements by the DBA in the following sequence: CREATE ROLE r1; GRANT SELECT ,INSERT ON OE.ORDERS TO r1; GRANT r1 TO SCOTT; GRANT SELECT ON OE.ORDERS TO SCOTT; REVOKE SELECT ON OE.ORDERS FROM SCOTT; what is the output after executing the statements?
Evalute the follwing SQL statements? ALTER TABLE HR.EMP SET UNUSED ( MGR_ID ); which statements is true ?