این 10 سوال مهم ترین بخش های درس را مورد آزمایش قرار می دهداگر نمره پایین تر 70 را کسب کنید، نیاز به مطالعه این درس دارید
SUBSTRING
STUFF
REPLACE
RTRIM
Rate this question:
Views
Table partitions
Table-valued functions
Stored procedures
Rate this question:
Two types of indexes - clustered indexes and non-clustered indexes
Both types use B-TREE for searching data
Only one clustered index on a table
More than one clustered index on a table
Inline user-defined function
Stored procedure
Table-valued user-defined function
Scalar user-defined function
Rate this question:
Stored procedure can accept parameter
Permission check is not required
The execution plan is stored in the cache after it was executed the first time.
Stored Procedure does not need to compile before every executing
Rate this question:
@@NESTLEVEL
@@FETCH_STATUS
@@TRANCOUNT
@@CONNECTIONS
Rate this question:
Float
Money
Smallmoney
Numeric
Rate this question:
CREATE TRIGGER TrgPhoneNumberChange ON Customers FOR UPDATE AS IF COLUMNS_UPDATED (HomeNumber, MobileNumber) - - Create Audit Records
CREATE TRIGGER TrgPhoneNumberChange ON Customers FOR UPDATE AS IF EXISTS( SELECT HomeNumber FROM inserted) OR EXISTS (SELECT MobileNumber FROM inserted) - - Create Audit Records
CREATE TRIGGER TrgPhoneNumberChange ON Customers FOR UPDATE AS IF COLUMNS_CHANGED (HomeNumber, MobileNumber) - - Create Audit Records
CREATE TRIGGER TrgPhoneNumberChange ON Customers FOR UPDATE AS IF UPDATE (HomeNumber) OR UPDATE (MobileNumber) - - Create Audit Records
Rate this question:
ALTER TABLE InventoryADD TotalItems AS ItemsInStore + ItemsInWarehouse
ALTER TABLE InventoryADD ItemsInStore – ItemsInWarehouse = TotalItems
ALTER TABLE InventoryADD TotalItems = ItemsInStore + ItemsInWarehouse
ALTER TABLE InventoryADD TotalItems AS SUM(ItemsInStore, ItemslnWarehouse)
Rate this question:
Quiz Review Timeline (Updated): Jul 22, 2024 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.