Tài liệu Getting a SQL Server Query Plan pdf
... Team LiB ] Recipe 10.9 Getting a SQL Server Query Plan Problem You need to retrieve information about how query statements are executed by the SQL Server. Solution Use the SET SHOWPLAN_TEXT ... the plan for. cmd.CommandText = "SELECT * FROM Customers WHERE Country='USA' " + "ORDER BY CompanyName"; // Retrieve the plan into DataRe...
Ngày tải lên: 26/01/2014, 10:20
... Team LiB ] Recipe 10.9 Getting a SQL Server Query Plan Problem You need to retrieve information about how query statements are executed by the SQL Server. Solution Use the SET SHOWPLAN_TEXT ... the plan for. cmd.CommandText = "SELECT * FROM Customers WHERE Country='USA' " + "ORDER BY CompanyName"; // Retrieve the plan into DataR...
Ngày tải lên: 28/10/2013, 18:15
... use the ADO Command object, as well as the Parameter object if you are passing parameters. You will create a Command object and supply the command text, which in this case will be the name of ... Command object you are creating-in this case by using the type of ADODB.CommandTypeEnum.adCmdStoredProc. The next step is to create a parameter that the Command object will use. This paramet...
Ngày tải lên: 14/12/2013, 20:16
Tài liệu Restore a SQL Server Database doc
... object from SQL- DMO to accomplish this task. It's all well and good to be able to back up and verify a SQL Server database, but what about being able to restore the database if necessary? How ... lstSQLServers Label Name Label2 Text Databases ListBox Name lstDatabases Label Name Label3 Text Backup Devices ListBox Name lstBackupDevices Command Button Name btnBackup Te...
Ngày tải lên: 26/01/2014, 11:20
Tài liệu Appendix A: ISA Server Caching Criteria pdf
... contains an Always Cache meta-tag. This scenario hardly occurs, and for performance reasons, you should carefully evaluate caching of dynamic content. HTTP Request Headers. ISA Server bypasses ... object and one of the headers that cause ISA Server to not cache the object, ISA Server does not cache the object. Note Appendix A: ISA Server Caching Criteria 3 Vary hea...
Ngày tải lên: 10/12/2013, 22:15
Tài liệu Getting a Sequence Value from Oracle pdf
... the DataTable is replaced by a value generated by the database. You need to retrieve the new value to keep the DataTable synchronized with the database. Solution Use Oracle's CURRVAL and ... cmd.Parameters.Add(ID_PARM, OracleType.Int32).Direction = ParameterDirection.Output; cmd.Parameters.Add(FIELD1_PARM, OracleType.NVarChar, 50); cmd.Parameters.Add(FIELD2_PARM, OracleType.NV...
Ngày tải lên: 21/01/2014, 11:20
Tài liệu tìm hiểu SQL Server
... ‘LinkedPracticeDB’ which link to an Access database ‘PracticeDB.mdb’ (firstly you have to create an Access database similar to PracticeDB in SQL Server and input some data). Then do a select data ... các database system khác. Một khi đã setup thì ta có thể query data dùng four-part name : linked _server_ name.catalog.schema.object_name . Trong đó catalog thường tương đương với dat...
Ngày tải lên: 31/08/2012, 09:59
Tài liệu sử dụng SQL Server
... c a SQL Server Để tạo Server liên kết sử dụng Transact -SQL có 3 mệnh đề: sp_addlinkedserver (Transact -SQL) , CREATE LOGIN (Transact -SQL) và sp_addlinkedsrvlogin (Transact -SQL) Sử dụng Transact -SQL ... dụng câu lệnh sp_addlogin [ @loginame = ] 'login' [ , [ @passwd = ] 'password' ] [ , [ @defdb = ] 'database' ] [ , [ @deflanguage = ] 'langua...
Ngày tải lên: 13/11/2012, 10:31
Tài liệu Khôi phục SQL Server từ Transaction Log pptx
... backup bổ sung. Bạn có thể sử dụng nó khi restore Full, Differential hay Transaction Log Backup. Bạn hãy dùng lệnh sau: RESTORE DATABASE NORTH FROM DISK = 'C: \SQL\ Backup\North.bak' ... file backup trên máy chủ, bao gồm những file backup được tạo bằng Maintenance Plans, wizard trong Enterprise Manager, những lệnh T -SQL và những công cụ nhóm ba khác sử dụng tính năng SQL...
Ngày tải lên: 11/12/2013, 23:15