You use the bcp utility to import data during nonworking hours. After importing data into the database, you execute a full backup statement. You need to ensure that the impact on the database during the insert is reduced to a minimum. Which of the following options can help you achieve that?
Set the recovery model to Full
Set the recovery model to Simple
Set the recovery model to Bulk-Logged
Back up the transaction log while performing the inserts
Which type of index physically orders the rows in a table?
Unique Index
Clustered Index
Non-Clustered Index
Foreign Key
What does SQL stand for?
Structured Query Language
Strong Question Language
Structured Question Language
none of above
Which SQL statement is used to extract data from a database?
OPEN
GET
SELECT
EXTRACT
DELETE
COLLAPSE
REMOVE
None
SAVE
SAVE AS
MODIFY
UPDATE
INSERT NEW
ADD RECORD
ADD NEW
INSERT INTO
SELECT Persons
SELECT *.Persons
SELECT * FROM Persons
SELECT [all] FROM Persons
SELECT * FROM Persons WHERE FirstName<>'Peter'
SELECT [all] FROM Persons WHERE FirstName='Peter'
SELECT * FROM Persons WHERE FirstName='Peter'
SELECT [all] FROM Persons WHERE FirstName LIKE 'Peter'