2010年01月08日

MCITP認証の問題集と回答!

TS: Microsoft SQL Server 2008, Database Development
70-433

1. You have a user named John. He has SELECT access to the Sales schema. You need to eliminate
John's SELECT access rights from the Sales.SalesOrder table without affecting his other permissions.
Which Transact-SQL statement should you use?
A. DROP USER John;
B. DENY SELECT ON Sales.SalesOrder TO John;
C. GRANT DELETE ON Sales.SalesOrder TO John;
D. REVOKE SELECT ON Sales.SalesOrder FROM John;
Answer: B

2. You need to create a column that allows you to create a unique constraint.
Which two column definitions should you choose? (Each correct answer presents a complete solution.
Choose two.)
A. nvarchar(100) NULL
B. nvarchar(max) NOT NULL
C. nvarchar(100) NOT NULL
D. nvarchar(100) SPARSE NULL
Answer: AC

3. You manage a SQL Server 2008 database that is located at your company's corporate headquarters.
The database contains a table named dbo.Sales. You need to create different views of the dbo.Sales
table that will be used by each region to insert, update, and delete rows. Each regional office must only be
able to insert, update, and delete rows for their respective region.
Which view should you create for Region1?
A. CREATE VIEW dbo.Region1Sales
AS
SELECT SalesID,OrderQty,SalespersonID,RegionID
FROM dbo.Sales
WHERE RegionID = 1;
B. CREATE VIEW dbo.Region1Sales
AS
SELECT SalesID,OrderQty,SalespersonID,RegionID
FROM dbo.Sales
WHERE RegionID = 1
WITH CHECK OPTION;
C. CREATE VIEW dbo.Region1Sales
WITH SCHEMABINDING
AS
SELECT SalesID,OrderQty,SalespersonID,RegionID
FROM dbo.Sales
WHERE RegionID = 1;
D. CREATE VIEW dbo.Region1Sales
WITH VIEW_METADATA
AS
SELECT SalesID,OrderQty,SalespersonID,RegionID
FROM dbo.Sales
WHERE RegionID = 1;
Answer: B

4. You administer a SQL Server 2008 database that contains a table name dbo.Sales, which contains the
following table definition:
CREATE TABLE [dbo].[Sales](
[SalesID] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY CLUSTERED,
[OrderDate] [datetime] NOT NULL,
[CustomerID] [int] NOT NULL,
[SalesPersonID] [int] NULL,
[CommentDate] [date] NULL);
This table contains millions of orders. You run the following query to determine when sales persons
comment in the dbo.Sales table:
SELECT SalesID,CustomerID,SalesPersonID,CommentDate
FROM dbo.Sales
WHERE CommentDate IS NOT NULL
AND SalesPersonID IS NOT NULL;
You discover that this query runs slow. After examining the data, you find only 1% of rows have comment
dates and the SalesPersonID is null on 10% of the rows. You need to create an index to optimize the
query. The index must conserve disk space while optimizing your query.
Which index should you create?
A. CREATE NONCLUSTERED INDEX idx1
ON dbo.Sales (CustomerID)
INCLUDE (CommentDate,SalesPersonID);
B. CREATE NONCLUSTERED INDEX idx1
ON dbo.Sales (SalesPersonID)
INCLUDE (CommentDate,CustomerID);
C. CREATE NONCLUSTERED INDEX idx1
ON dbo.Sales (CustomerID)
INCLUDE(CommentDate)
WHERE SalesPersonID IS NOT NULL;
D. CREATE NONCLUSTERED INDEX idx1
ON dbo.Sales (CommentDate, SalesPersonID)
INCLUDE(CustomerID)
WHERE CommentDate IS NOT NULL;
Answer: D

5. Your database is 5GB and contains a table named SalesHistory. Sales information is frequently
inserted and updated.
You discover that excessive page splitting is occurring.
You need to reduce the occurrence of page splitting in the SalesHistory table.
Which code segment should you use?.
A. ALTER DATABASE Sales
MODIFY FILE
(NAME = Salesdat3,
SIZE = 10GB);
B. ALTER INDEX ALL ON Sales.SalesHistory
REBUILD WITH (FILLFACTOR = 60);
C. EXEC sys.sp_configure 'fill factor (%)', '60';
D. UPDATE STATISTICS Sales.SalesHistory(Products)
WITH FULLSCAN, NORECOMPUTE;
Answer: B

6. You have a table named dbo.Customers. The table was created by using the following Transact-SQL
statement:
CREATE TABLE dbo.Customers
(
CustomerID int IDENTITY(1,1) PRIMARY KEY CLUSTERED,
AccountNumber nvarchar(25) NOT NULL,
FirstName nvarchar(50) NOT NULL,
LastName nvarchar(50) NOT NULL,
AddressLine1 nvarchar(255) NOT NULL,
AddressLine2 nvarchar(255) NOT NULL,
City nvarchar(50) NOT NULL,
StateProvince nvarchar(50) NOT NULL,
Country nvarchar(50) NOT NULL,
PostalCode nvarchar(50) NOT NULL,
CreateDate datetime NOT NULL DEFAULT(GETDATE()),
ModifiedDate datetime NOT NULL DEFAULT(GETDATE())
)
You create a stored procedure that includes the AccountNumber, Country, and StateProvince columns
from the dbo.Customers table. The stored procedure accepts a parameter to filter the output on the
AccountNumber column.
You need to optimize the performance of the stored procedure. You must not change the existing
structure of the table.
Which Transact-SQL statement should you use?
A. CREATE STATISTICS ST_Customer_AccountNumber
ON dbo.Customer (AccountNumber)
WITH FULLSCAN;
B. CREATE CLUSTERED INDEX IX_Customer_AccountNumber
ON dbo.Customer (AccountNumber);
C. CREATE NONCLUSTERED INDEX IX_Customer_AccountNumber
ON dbo.Customer (AccountNumber)
WHERE AccountNumber = '';
D. CREATE NONCLUSTERED INDEX IX_Customer_AccountNumber
ON dbo.Customer (AccountNumber)
INCLUDE (Country, StateProvince);
Answer: D

7. You have a table named Customer.
You need to ensure that customer data in the table meets the following requirements:
credit limit must be zero unless customer identification has been verified.
credit limit must be less than 10,000.
Which constraint should you use?
A. CHECK (CreditLimt BETWEEN 1 AND 10000)
B. CHECK (Verified = 1 AND CreditLimt BETWEEN 1 AND 10000)
C. CHECK ((CreditLimt = 0 AND Verified = 0) OR (CreditLimt BETWEEN 1 AND 10000 AND Verified = 1))
D. CHECK ((CreditLimt = 0 AND Verified = 0) AND (CreditLimt BETWEEN 1 AND 10000 AND Verified =
1))
Answer: C
8. You have a table named AccountsReceivable. The table has no indexes. There are 75,000 rows in the
table. You have a partition function named FG_AccountData. The AccountsReceivable table is defined in
the following Transact-SQL statement:
CREATE TABLE AccountsReceivable (
column_a INT NOT NULL,
column_b VARCHAR(20) NULL)
ON [PRIMARY];
You need to move the AccountsReceivable table from the PRIMARY file group to FG_AccountData.
Which Transact-SQL statement should you use?
A. CREATE CLUSTERED INDEX idx_AccountsReceivable
ON AccountsReceivable(column_a)
ON [FG_AccountData];
B. CREATE NONCLUSTERED INDEX idx_AccountsReceivable
ON AccountsReceivable(column_a)
ON [FG_AccountData];
C. CREATE CLUSTERED INDEX idx_AccountsReceivable
ON AccountsReceivable(column_a)
ON FG_AccountData(column_a);
D. CREATE NONCLUSTERED INDEX idx_AccountsReceivable
ON AccountsReceivable(column_a)
ON FG_AccountData(column_a);
Answer: C
posted by 吉田玉 at 10:57| Comment(40) | sikaku | このブログの読者になる | 更新情報をチェックする

2010年01月06日

Microsoft資格認証の何種類、問題集、回答!

新たの年で何個権威的な認証を合格したいでしょうか?弊社は世界で最も最新の問題集を提供いたします。IT分野で、Microsoft認証育成訓練は非常に必要されています。ここ数年からMicrosoft認証を持っていることは、有名な会社に入れるかどうか重要な標準になります。
1.MCP 2.MCSE 3.MCSE2000 4.MCDBA 5.MCSE2003 6.MCSE2003 Security 7.MCSE2003 Messaging 8.Mcse2000 TO Mcse2003 Upgrade 9.MCSA 10.MCSA2003 11.MCSD.NET 12.MCAD.NET 13.MCDST 14.MCTS 15.MCITP 16.MCPD 17.Microsoft Partner Competency 18.Microsoft Licensing 19.Microsoft Business Solutions 20.MCSE2008
Microsoft 資格は20種類の認証もあります、貴方はどれを一番取りたいでしょうか、見てください!

例えば:MCP 認証(70-290、70-210)
70-210

1.Your Windows 2000 Professional computer has 10 shared folders that are available to other
network users. A user reports that he cannot access a shared folder named ShareA.You want to
respond to the user's problem as quickly as possible by using an administrative tool. However,
you cannot remember the server location of ShareA.What should you do?
A.Use Windows Explorer to display the file paths of your shared folders.
B.Use Storage in Computer Management to view logical drive properties.
C.Use Event Viewer in Computer Management to search for shared folder error messages.
D.Use System Tools in Computer Management to display the file paths of your shared folders.
Correct:D

2.Your Windows 2000 Professional computer contains a single hard disk configured as a single
partition. You want to move a folder named Sales under a folder named Corp on your
computer.You want the files in the Sales folder to remain compressed after moving the folder. You
want the files in the Corp folder to remain uncompressed. You want to ensure that the files are
recoverable in case of any disk problems. You also want to move the files with the least amount of
administrative effort.What should you do?
A.Copy the Sales folder to the Corp folder. Do nothing further.
B.Back up the Sales folder. Move the Sales folder to the Corp folder.
C.Compress the Corp folder. Then copy the Sales folder to the Corp folder.
D.Move the Sales folder to a second computer. Then move the Sales folder to the Corp folder.
Correct:B

3.You are the administrator of your company's network. A user named Peter runs Windows 2000
Professional on his portable computer. Peter wants to be able to work at home on files that were
created in the office on the company network. Prior to logging off the network and leaving the
office, Peter enables Offline Files.Peter calls you from home and reports that copies of his folders
and files on the network are not available on his portable computer. What should you instruct
Peter to do?
A.Enable file and print sharing. Peter will be able to access his files at home immediately.
B.Synchronize all offline files. Peter will be able to access his files at home immediately.
C.At the office, make all files available offline. Peter will be able to access his files the next time he logs off
the network.
D.At the office, create a shortcut to the Offline Files folder. Peter will be able to access his files the next
time he logs off the network.
Correct:C

4.Your Windows 2000 Professional computer has 50 MB of free disk space on drive C and 500 MB
of free disk space on drive D. Print jobs are failing because the available space on drive C is
inadequate. You want print jobs to be able to use the space on drive D.What should you do?
A.From the Print Server Properties dialog box, change the location of the spool folder to any existing file
path on drive D.
B.From the Printer Properties dialog box, use Advanced settings to change the location of the spool folder
to D:\Winnt\System32\Spool\Printers.
C.Copy the C:\Winnt\System32\Spool\Printers folder to the D:\Winnt\System32\Spool\Printers folder.
D.Mount drive C as a subdirectory on drive D.
Correct:A

5.You are the administrator of a Windows 2000 Professional computer named Computer1.
Computer1 has a shared color laser printer named Printer1. Printer1 will not turn on.The print
queue for Printer1 has three jobs waiting to print. You want to enable the three waiting print jobs
to print to an identical print device, which has been shared as Printer2 on Computer2. You also
want to allow users who currently connect to Printer1 to automatically use Printer2 without having
to reconfigure their default printer.What should you do?
A.Enable bidirectional support for Printer1.
B.Change the share name of Printer2 to Printer1.
C.Configure Printer1 to add a port, and set the port to \\Computer2\Printer2.
D.Configure the print server properties to use the path \\Computer2\Winnt$\System32\Spool\Printers.
Correct:C

6.Your Windows 2000 Professional computer has a removable disk device installed. The device
can use storage modules of varying sizes. You use these storage modules to transfer graphics
files between your location and a printing company. The printing company uses Windows NT 4.0
Service Pack 3.You insert a new 20-MB disk device into your computer. When you attempt to
format it as FAT32 with the default options, you receive the following error message: "Windows
was unable to complete the format."You need to format the device so that you can use it to send a
large graphic file to the printing company. How should you format the device?
A.as FAT16 with a 4-KB cluster size
B.as FAT32 with a 1-KB cluster size
C.as FAT32 with a 4-KB cluster size
D.as NTFS with a 4-KB cluster size
Correct:A
posted by 吉田玉 at 10:29| Comment(0) | sikaku | このブログの読者になる | 更新情報をチェックする

2010年01月04日

Oracle認証、問題集、回答!

みんな様明けましておめてとうございます!新しい年で新しい認証を取りたいでしょうか?じゃ、弊社で問題集を買いましょう!IT分野で、Oracle認証育成訓練は非常に必要されています。ここ数年からOracle認証を持っていることは、有名な会社に入れるかどうか重要な標準になります。

弊社の保証
弊社の試験ガイドを使って、合格率は100%でございます、一発合格する事を保証いたします。

Killtestは自分の製品に自信に満ちます、弊社は無条件でお客様が一度目試験に通すことを保証します。会社が設立してからお客様から出したのクレームは一度もらったことはありません。

弊社はお客様が受験にたくさんのお金と時間にかかることが分かっていますから、もし、お客様が試験のだめになたっら、その辛さも十分理解できると思います。そして弊社はお客様と一緒に直面します。

ということは、もしお客様が弊社の製品を使って、合格しなければ、全額返金します。お客様が7日以内で成績表と登録情報をメールで弊社に送りだけで結構です

Other Oracle Certification
1Z0-216

1. Identify three purposes for which transaction types can be used. (Choose three.)
A. to record how cash can be applied to transactions
B. to set whether AutoInvoice validates transactions using IDs or values
C. to set whether transactions affect the Accounts Receivable (AR) customer balances
D. to record the accounting flexfield value that would be used for the cash account for transactions
E. to record the accounting flexfield value that would be used for the receivable account for transactions
F. to set transaction numbers to be either assigned automatically or entered manually for transactions
Answer: ACE

2. John is reviewing the clients draft training documents about the Order to Cash life cycle business
processes. Identify four steps that are included in the Order-to-Cash life cycle. (Choose four.)
A. launching pick release
B. performing credit check
C. reconciling bank statements
D. running AutoInvoice to Receivables
E. generating the move order manually
Answer: ABCD

3. A clerk from ABC Inc., receives a customer receipt that does not have sufficient information to identify
the customer or invoice. Which is the correct method of entering the receipt in Oracle Accounts
Receivable?
A. Enter the receipt as an unapplied receipt.
B. Enter the receipt as an unidentified receipt.
C. Enter the receipt as an on-account receipt.
D. Enter the receipt as a miscellaneous receipt.
E. Enter the receipt by applying it to a dummy customer account.
Answer: B

4. Identify two statements that apply to Oracle Collections. (Choose two.)
A. It is a Web-based self-service application.
B. It can be used to place an invoice in dispute.
C. It enables customers to see their own Oracle Receivables account information, such as balances.
D. It can be used to initiate the Oracle Approvals Management (AME) credit memo request workflow from
Oracle Collections.
Answer: BD

5. The end users at Lucy Ltd. noticed several AutoInvoice exceptions and requested your help in
correcting them. Which window allows you to edit data?
A. Line Errors window
B. Interface Lines window
C. Interface Exceptions window
D. Interface Corrections window
Answer: B

6. The client entered a miscellaneous receipt by mistake; it was posted to General Ledger. Now the
miscellaneous receipt needs to be reversed. Which method would you advise the client to use?
A. Carry out a standard reversal of the miscellaneous receipt.
B. Carry out a debit memo reversal of the miscellaneous receipt.
C. Create a receivable activity adjustment for the reversal of the miscellaneous receipt.
D. Create an adjustment in receivables for the reversal of the effect of the miscellaneous receipt.
E. Create a journal entry in General Ledger to reverse the accounting impact created by the posting of the
miscellaneous receipt.
Answer: A

7. Which rule must be applied when using summary accounts to create a mass allocation journal?
A. Constant (C) must be assigned to each rollup group that is used in the formula line.
B. Summing (S) must be assigned to each rollup group that is used in the formula line, so that the related
child values are summarized.
C. Looping (L) must be assigned to each rollup group that is used in the formula line, so that the
associated child values are incorporated in the calculation.
Answer: A
posted by 吉田玉 at 12:35| Comment(0) | sikaku | このブログの読者になる | 更新情報をチェックする

広告


この広告は60日以上更新がないブログに表示がされております。

以下のいずれかの方法で非表示にすることが可能です。

・記事の投稿、編集をおこなう
・マイブログの【設定】 > 【広告設定】 より、「60日間更新が無い場合」 の 「広告を表示しない」にチェックを入れて保存する。