What is a MULTI_USER in SQL server?
1.users that have the appropriate permissions to connect to the database are allowed
2.One user at a time is allowed to connect to the database
3.Only some members are allowed to access the database
4.Only the system admin and some members are allowed to access the database
Posted Date:-2022-04-20 12:41:48
When SQL server is installed, which of the following databases are created by default?
1.Master
2.Model
3.Both a and b
4.Root
Posted Date:-2022-04-20 12:39:26
Which operation, when performed on a database can throw an error
1.The database could not be exclusively locked to perform the operationâ€
2.DELETE database
3.DROP database
4.Rename database
Posted Date:-2022-04-20 12:36:03
CREATE DATABASE has how many mandatory parameters?
1.1
2.2
3.3
4.None of These
Posted Date:-2022-04-20 12:33:43
For every unique constraint on a column, SQL server will create
1.Does not create an index
2.clustered index for that column
3.index for that column
4.non-clustered index for that column
Posted Date:-2022-04-20 12:34:34
How do we delete a login?
1.DELETE LOGIN login_name
2.DROP LOGIN login_name
3.Login cannot be deleted but only disabled
4.DISABLE LOGIN login_name
Posted Date:-2022-04-20 12:32:44
In which database state, the database is in single-user mode and may be repaired or restored.
1.OFFLINE
2.SUSPECT
3.EMERGENCY
4.All of the above
Posted Date:-2022-04-20 12:33:18
What is the difference between ad-hoc queries from stored procedures?
1.Ad-hoc queries are placed embedded in the business logic code
2.Stored procedures are placed embedded in the business logic code
3.There is no difference as both are fired on the databases
4.None of above
Posted Date:-2022-04-20 12:43:32
What is the syntax for creating a new login on the SQL server?
1.USE LOGIN login_id WITH PASSWORD password
2.CREATE LOGIN login_id WITH USE password
3.CREATE LOGIN login_id USE password
4.CREATE LOGIN login_id WITH PASSWORD password
Posted Date:-2022-04-20 12:37:19
Which of the following below are valid database states?
1.OFFLINE
2.SUSPECT
3.EMERGENCY
4.All of the above
Posted Date:-2022-04-20 12:40:16
Why type of user is the default in SQL server?
1.SINGLE_USER
2.MULTI_USER
3.RESTRICTED_USER
4.ROOT_USER
Posted Date:-2022-04-20 12:38:06