Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Please help me check these question !!!

Author  Topic 

hungleon88
Starting Member

16 Posts

Posted - 2008-08-23 : 05:41:07
Bold Line is the choose


1)Data rows of an Indexed view are stored in the _______ levels page of the clustered index.
a)Child
b)Leaf
c)Nood
d)Root

2)An trigger _____ is excuted when a new record is inserted in a table.
a)After
b)Delete
c)Insert
d)Update

3)The purpose of a _____ column is uniquely indentify each record within a table.
a)Primary Key
b)Foreign Key
c)Unique Key
d)Default Key

4)Which of the following node contains data or index pages that point to data pages?
a)Root Node
b)Intermediate Nodes
c)Leaf Nodes
d)Branch Nodes

5)Once a ______ clustered index is created on a view, multiple _____ indexes also can be created on it.
a)Unique, Non-Clustered
b)Unique, Regular
c)Non-Clustered, Unique
d)Non-Clustered, Regular

6)Which of the following code creates a view named Passenger_Details with the SCHEMABIDING option?
a)Create view Passenger_Details As Select SeatNo,PassengerName…
b)Create view Passenger_Details with Schemabiding As…
c)Create view Passenger_Details As Schemabiding…
d)Create view Passenger_Details Schemabiding As…

7)View definitions can be modified using the ____ statement while view data can be modified using the ___ statement.
a)Alter View, Alter
b)Alter, Alter View
c)Alter View, Update
d)Update, Alter View

8)Stored procedures that run on remote SQL Server are known as___ strored procedures while___ are created in individual user databases.
a)Extended, Temporary
b)Temporary, Extended
c)Local, Remote
d)Remote, Local

9)Which of the following statements about DML triggers order are correct?
a)Multiple UPDATE triggers can be created for each triggering action on a table
b)Only one INSTEAD OF trigger can be created for each triggering action on a table
c)A triggering action can have multiple AFTER triggers with the same name
d)The sp_settriggerorder stored procedure can be used to define DML AFTER trigger order

10)Which of the following code creates a computed column Area whose values are calculated from the values entered in the Length and Breadth fields?
a)CREATE TABLE Calc_Area ( Length int, Breadth int, Area AS Length*Breadth)
b)CREATE TABLE Calc_Area ( Length int, Breadth int) Area AS Length*Breadth)
c)CREATE TABLE Calc_Area WITH Length int, Breadth int( Area AS Length*Breadth)
d)CREATE TABLE Calc_Area Length int, Breadth int, Length*Breadth

11)Which of the following code creates an index, IX_City on the City column of the Employee_Details table with FILLFACTOR values set to 70?
a)CREATE INDEX IX_City ON Employee_Details(City) FILLFACTOR = 60
b)CREATE INDEX IX_City ON Employee_Details(City) WITH (FILLFACTOR = 60)
c)CREATE INDEX IX_City ON City WITH Employee_Details (FILLFACTOR = 60)
d)CREATE INDEX IX_City ON City WITH FILLFACTOR = 60

12)Unique Index can be created using either the ___ statement or using___.
a)CREATE UNIQUE INDEX, SQL Server Management Studio
b)ALTER UNIQUE INDEX, CREATE UNIQUE INDEX
c)ALTER UNIQUE INDEX, SQL Server Management Studio
d)CREATE INDEX UNIQUE, SQL Server Management Studio

13)Which of the following statements about the different categories of system stored procedures are correct?
a)Catalog stored procedures are used to access information from the system catalog
b)Cursor procedures are used to implement the functionality of the cursor
c)Databases Mail stored procedures are used in the managerment of distributed queries via mail
d)Security stored procedures are used to manage the security of the database

14)Which of the following statements about triggers are correct?
a)A trigger executes when an attempt is made to modify data in the table protected by it
b)DML triggers execute when data is modified using the INSERT, UPADTE, or DELETE statements
c)DLL triggers execute when data is modified using the CREATE, ALTER, or DROP statements
d)Logon trigger execute stored procedures when a session is estapblished with a LOGIN event

15)Which of the following statements about an DDL and DML triggers are correct?
a)DDL trigger execute on INSERT, UPDATE, and DELETE statements while DML on CREATE, ALTER, and DROP statements
b)DDL triggers are used to check and control database operation while DML triggers are used enforce business rules
c)DDL triggers operate only after the table or viewis modify while DML triggers execute either during or after modification
d)DDL triggers are defined either at the databse or the server level while DML triggers are defined at the database level

16)Which of the following statements about the different types of triggers are correct?
a)The INSERT trigger ensures that the values being entered conforms to the constraints defined on that table
b)The UPDATE trigger copies the original record in the Deleted table and the new record into the Inserted tablec)The DELETE trigger help the user to delete a particular record in a tableor entires table themselves
d)An AFTER trigger is executed when the constraint check in the table is completed

17)Which of the following code illustrates the procedure to begin the dialog conversation in SQL Service Broker?
a)BEGIN DIALOG CONVERSATION FROM SERVICE service1 TO SERVICE ‘service2’…
b)BEGIN DIALOG CONVERSATION @dialog_handle TO SERVICE ‘service2’ ON CONTRACT sendcontract…
c)BEGIN DIALOG CONVERSATION SERVICE service1 ON CONTRACT sendcontract…
d)BEGIN DIALOG CONVERSATION @dialog_handle FROM SERVICE service1 TO SERVICE ‘service2’…

18)Stored procedures return information to the calling procedure using the ___ keyword.
a)@@ERROR
b)@@ERROR_LINE
c)OUTPUT
d)RETURN

19)Which of the following code display all the information about the indexes created on the Customer_Details table?
a)sp_helpindex’Customer_Details’
b)EXEC sp_helpindex’Customer_Details’
c)EXEC sp_help_index Customer_Details
d)Sp_helpindex ‘Customer_Details’

20)Which of the following is not a valid rule while maintaining data integrity?
a)No two records in a table can have exactly same values in all columns
b)Any type of data can be inserted
c)Data validity has to be maintained when data is modified
d)Change to data values in a column should be appropriately refected in related table

21) ______ are constraints that control the data values being entered in
a)Trigger
b)Rules
c)Validity
d)Verification

22)A column with__________ allows a null value to be inserted once .
a)Primary key constraint
b)Indentity Property
c)Unique constraint
d)Check constraint

23 ).Which of the following stores data in an unsorted order ?
a) Heap
b) B_Tree
c) Clustered Index
d)IAM_ page

24)Which of the following statements about Views are correct ?
a)The Check Option ensures updates in the view satisfy all view conditions.
b)The Check Option is only associated with the Alter View statements.
c) The Check Option is used to enforce referential integrity among tables .
d)The Check Option option ensures that the Where clause is not violated .

25) _______Stored procedures executed outside the SQL Server…
a)Catalog
b)Distributed
c)Extended
d)Temporary

26)Which of the following statements about system stored procedures are correct ?
a)System stored procedures are sets of Transact_SQL statements executed as a single unit
b)System stored procedures are physically stored in the System database and have the sp_' .
c)System stored procedures are used in database administrative and informational activities .
d)System stored procedures access to the database object metadata information.

afrika
Master Smack Fu Yak Hacker

2706 Posts

Posted - 2008-08-23 : 05:48:19
duplicate
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=109372
Go to Top of Page

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2008-08-23 : 06:03:43
quote:
Originally posted by afrika

duplicate
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=109372


Oh dear ... infinite loop

Help ! somebody press the [BREAK] key please . . !


KH
[spoiler]Time is always against us[/spoiler]

Go to Top of Page

hungleon88
Starting Member

16 Posts

Posted - 2008-08-23 : 06:40:16
sorry to duplicate post, but i post in wrong forum, sorry, but help me check this please!!!
Go to Top of Page
   

- Advertisement -