Архитектура «Клиент-сервер». Обзор компонентов SQL Server 2000.

Презентация:



Advertisements
Похожие презентации
AVVID Troubleshooting Tools © 2004 Cisco Systems, Inc. All rights reserved. Using Database Tools IPTT v
Advertisements

© 2009 Avaya Inc. All rights reserved.1 Chapter Two, Voic Pro Components Module Two – Actions, Variables & Conditions.
GRAMMAR AUCTION REPORTED SPEECH. These sentences are for sale. Some of them are correct, but some contain mistakes. You should buy as many correct sentences.
Basic Computer Terms. Instructions executed( исполнять, выполнять ) by a computer – software Applications- прикладная программа Complete, self-contained.
© 2005 Cisco Systems, Inc. All rights reserved. INTRO v Module Summary TCP/IP is the most widely used networking protocol, with functions that can.
Copyright CCNA 2 Chapter 12 Configuring a Router By Your Name.
Chapter 7: Planning Ethernet VLANs 7-1 Copyright © 1998, Cisco Systems, Inc.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Building a Simple Serial Network Exploring the Functions of Networking.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v Route Selection Using Policy Controls Applying Route-Maps as BGP Filters.
WS19-1 WORKSHOP 19 EFFECTIVE MASS NAS122, Workshop 19, August 2005 Copyright 2005 MSC.Software Corporation.
© 2006 Cisco Systems, Inc. All rights reserved. HIPS v Using CSA Analysis Configuring Application Behavior Investigation.
It is an argument, collision of people. The reasons of conflicts : People want different things; They have different ideas and their values are different;
Copyright 2003 CCNA 3 Chapter 10 Virtual Trunking Protocol By Your Name.
© 2005 Cisco Systems, Inc. All rights reserved.INTRO v Managing Your Network Environment Managing Cisco Devices.
Copyright 2003 CCNA 3 Chapter 7 Switch Configuration By Your Name.
© 2006 Cisco Systems, Inc. All rights reserved. CIPT1 v Administration of Cisco Unified CallManager Release 5.0 Implementing Disaster Recovery.
OLAP ModelKit is a universal solution in the field of interactive reporting and thorough data analysis which allows programmers to create effective decision-support.
Toolbar enabling the user to carry out actions on the objects to reconcile Objects to reconcile tree: Instances and documents attached are displayed Tabs.
DATABASE MANAGEMENT SYSTEMS CMAM301. Introduction to database management systems What is Database? What is Database Systems? Types of Database. Database.
© 2005 Cisco Systems, Inc. All rights reserved. BGP v BGP Overview Monitoring and Troubleshooting BGP.
Транксрипт:

Архитектура «Клиент-сервер»

Обзор компонентов SQL Server 2000

Пример вопроса из экзамена #2. You are the administrator of a SQL Server 2000 computer. The server contains a database named Inventory. Users report that several storage locations in the UnitsStored field contain negative numbers. You examine the database's table structure. #2. You are the administrator of a SQL Server 2000 computer. The server contains a database named Inventory. Users report that several storage locations in the UnitsStored field contain negative numbers. You examine the database's table structure. You correct all the negative numbers in the table. You must prevent the database from storing negative numbers. You also want to minimize use of server resources and physical I/O. You correct all the negative numbers in the table. You must prevent the database from storing negative numbers. You also want to minimize use of server resources and physical I/O. Which Transact-SQL statement should you execute? Which Transact-SQL statement should you execute? A. ALTER TABLE dbo.StorageLocations ADD CONSTRAINT CK_StorageLocations_UnitsStored CHECK (UnitsStored >= 0) A. ALTER TABLE dbo.StorageLocations ADD CONSTRAINT CK_StorageLocations_UnitsStored CHECK (UnitsStored >= 0) B. CREATE TRIGGER CK_UnitsStored On StorageLocations FOR INSERT, UPDATE AS IF INSERTED.UnitsStored < 0 ROLLBACK TRAN B. CREATE TRIGGER CK_UnitsStored On StorageLocations FOR INSERT, UPDATE AS IF INSERTED.UnitsStored < 0 ROLLBACK TRAN C. CREATE RULE CK_UnitsStored >= 0 GO sp_bindrule 'CK_UnitsStored' 'StorageLocations.UnitsStored' GO C. CREATE RULE CK_UnitsStored >= 0 GO sp_bindrule 'CK_UnitsStored' 'StorageLocations.UnitsStored' GO D. CREATE PROC UpdateUnitsStored bigint) AS < 0 RAISERROR (50099, 17) ELSE UPDATE StorageLocations D. CREATE PROC UpdateUnitsStored bigint) AS < 0 RAISERROR (50099, 17) ELSE UPDATE StorageLocations