Tag: databases

Questions Related to databases

Which one of them is not an String Function?

  1. SOUNDEX

  2. DIFFERENCE

  3. GROUPING

  4. SUBSTRING


Correct Option: C

What is the function which is used to check whether the value is a numeric value or not?

  1. Select isnumeric('Test Text')

  2. Select numeric('Test Text')

  3. Both of the above

  4. none of the above


Correct Option: A

Deterministic functions are?

  1. Functions always return the same result any time they are called with a specific set of input values.

  2. Functions may return different results each time they are called with a specific set of input values

  3. None

  4. Both of Them


Correct Option: A

What is the maximum number of columns per select statement allowed in SQL 2005?

  1. 1024

  2. 4096

  3. 512

  4. 2048


Correct Option: B

Can we insert data into a view?

  1. True

  2. False


Correct Option: A

Identify two factors that you consider for compiling a PL/SQL program unit for interpreted mode?

  1. PL/SQL program needs to be recompiled frequently.

  2. /SQL program that spends most of the time executing SQL

  3. PL/SQL program , which performs computation-intensive procedural operations and is recompiled rarely

  4. PL/SQL program , which is called frequently with the same parameter values by multiple sessions and is recompiled rarely.


Correct Option: A,B