Ngày tải lên: 21/01/2014, 12:20
... (left blank / database is created via the opn_mysql .sql script) How to create a Microsoft SQL Server database for the OPN System™ XT Server? 2 2. Open the opn_mssql .sql file in a ... file Microsoft SQL Server opn_mssql .sql My SQL opn_mysql .sql Oracle opn_oracle .sql How to create a Microsoft SQL Server database for the OPN System™ XT Server? 4 The Query ... How to create a Microsoft SQL Server database for OPN System™ XT Server? Introduction The OPN System supports McKoi, Microsoft SQL Server, MySQL and Oracle databases. You select the database...
Ngày tải lên: 20/12/2013, 23:15
Tài liệu Create a Detach/Attach SQL Server Database Dialog Box ppt
Ngày tải lên: 24/12/2013, 06:17
Tài liệu Retrieving Constraints from a SQL Server Database docx
Ngày tải lên: 26/01/2014, 10:20
Design and Implement a SQL Server Database
... a SQL Server Database Tác giả: Vovisoft.com Cấu Trúc Của SQL Server Như đã trình bày ở các bài trước một trong những đặc điểm của SQL Server 2000 là Multiple-Instance nên khi nói đến một (SQL) ... (SQL) Server nào đó là ta nói đến một Instance của SQL Server 2000, thông thường đó là Default Instance. Một Instance của SQL Server 2000 có 4 system databases và một hay nhiều user database. ... động lại SQL Server hay khi ta disconnect. • Model : Database này đóng vai trò như một bảng kẻm (template) cho các database khác. Nghĩa là khi một user database được tạo ra thì SQL Server sẽ...
Ngày tải lên: 25/08/2012, 09:00
Design and Implement a SQL Server Database
... Implement a SQL Server Database 3.1. Cấu Trúc Của SQL Server Như đã trình bày ở các bài trước một trong những đặc điểm của SQL Server 2000 là Multiple-Instance nên khi nói đến một (SQL) Server nào ... đến một Instance của SQL Server 2000, thông thường đó là Default Instance. Một Instance của SQL Server 2000 có 4 system databases và một hay nhiều user database. Các system databases bao gồm: • ... Msdb : Database này được SQL Server Agent sử dụng để hoạch định các báo động và các công việc cần làm (schedule alerts and jobs). 3.2. Cấu Trúc Vật Lý Của Một SQL Server Database Mỗi một database...
Ngày tải lên: 06/10/2013, 17:20
Specifying Locking Hints in a SQL Server Database
... conn.BeginTransaction(IsolationLevel.ReadCommitted); // Create the command. SqlCommand cmd = new SqlCommand(sqlText, conn, tran); // Create the DataAdapter and CommandBuilder. SqlDataAdapter da = new SqlDataAdapter(cmd); SqlCommandBuilder ... an underlying SQL Server database. Solution Use SQL Server locking hints from ADO.NET. The sample code contains three event handlers: Start Tran Button.Click Creates a SQL SELECT statement ... from the grid. dataGrid.DataSource = null; [ Team LiB ] Recipe 6.14 Specifying Locking Hints in a SQL Server Database Problem You need to pessimistically lock rows in an underlying SQL...
Ngày tải lên: 17/10/2013, 20:15
Using a SqlConnection Object to Connect to a SQL Server Database phần 1
... string to the constructor SqlConnection mySqlConnection = Using a SqlConnection Object to Connect to a SQL Server Database You create a SqlConnection object using the SqlConnection() constructor. ... is as follows: mySqlConnection.ConnectionString = server= localhost ;database= Northwind;uid=sa; mySqlConnection.ConnectionTimeout = 15 mySqlConnection .Database = Northwind mySqlConnection.DataSource ... Console.WriteLine("mySqlConnection.ServerVersion = "+ mySqlConnection.ServerVersion); Console.WriteLine("mySqlConnection.State = "+ mySqlConnection.State); Console.WriteLine("mySqlConnection.WorkstationId...
Ngày tải lên: 07/11/2013, 10:15
Tài liệu Using a SqlConnection Object to Connect to a SQL Server Database phần 2 doc
... StateChange event of the mySqlConnection object: // open mySqlConnection mySqlConnection.Open(); // create a SqlCommand object SqlCommand mySqlCommand = mySqlConnection.CreateCommand(); ... mySqlConnection.Close()"); mySqlConnection.Close(); } } The output from this program is as follows: Calling mySqlConnection.Open() mySqlConnection State has changed from Closed to Open Calling mySqlConnection.Close() ... produced: System.Data.SqlClient.SqlError: This is the message from the PRINT statement The following message was produced: System.Data.SqlClient.SqlError: This is the message from the RAISERROR...
Ngày tải lên: 14/12/2013, 13:15
Tài liệu Specifying Locking Hints in a SQL Server Database doc
... conn.BeginTransaction(IsolationLevel.ReadCommitted); // Create the command. SqlCommand cmd = new SqlCommand(sqlText, conn, tran); // Create the DataAdapter and CommandBuilder. SqlDataAdapter da = new SqlDataAdapter(cmd); SqlCommandBuilder ... SQL Server Locks Object counter that can be used to monitor lock activity. For more information about database locks, using locking hints, or monitoring database locks, see Microsoft SQL Server ... if(holdLockRadioButton.Checked) sqlText += "(HOLDLOCK)"; // Create connection. conn = new SqlConnection( ConfigurationSettings.AppSettings[" ;Sql_ ConnectString"]); conn.Open(...
Ngày tải lên: 14/12/2013, 18:16
Tài liệu Using a Single Stored Procedure to Update Multiple Changes to a SQL Server Database pdf
Ngày tải lên: 21/01/2014, 11:20
Working with SQL Server Database Objects - ntroducing Stored Procedures ppt
Ngày tải lên: 02/08/2014, 08:21
Working with SQL Server Database Objects - Managing Views pot
Ngày tải lên: 02/08/2014, 08:21
Tài liệu Retrieving Database Schema Information from SQL Server pptx
... Recipe 10.2 Retrieving Database Schema Information from SQL Server Problem You need to retrieve database schema information from a SQL Server database. Solution Retrieve table schema information ... default view of schema table to the grid. schemaDataGrid.DataSource = schemaTable.DefaultView; Discussion The first solution uses information schema views that are available in SQL Server 7.0 and ... System.Data.OleDb; // . . . DataTable schemaTable; if(sqlServerRadioButton.Checked) { String getSchemaTableText = "SELECT * " + " ;FROM INFORMATION _SCHEMA. TABLES " + "WHERE...
Ngày tải lên: 24/12/2013, 05:15
Retrieve XML from SQL Server 2000
... data from my SQL Server database into an XML document format. How do I do that with SQL Server 2000? Technique To accomplish this task, you will create a Command object with the Transact -SQL ... copy it from other chapters. Here is the code for the function: Function BuildCnnStr(ByVal strServer As String, ByVal strDatabase As String) As String 12.4 Retrieve XML from SQL Server ... 12 solution. From the main Web page, click on the hyperlink with the caption How-To 12.4: Retrieving XML from SQL Server 2000. When the page loads, you will see an example of a T -SQL statement...
Ngày tải lên: 17/10/2013, 21:15
Tài liệu Reading XML Data Directly from SQL Server doc
... xmlTextBox.Text = ds.GetXml( ); Discussion SQL Server 2000 introduced support for retrieving data in XML format using the FOR XML clause. The .NET SQL Server data provider SqlCommand ... an ExecuteXmlReader( ) that allows you to retrieve an XML stream directly from SQL Server, where it returns an XmlReader that contains the results of the SQL query. The ExecuteXmlReader( ) ... only be used with SQL statements that return XML data, such as those with a FOR XML clause. The ExecuteXmlReader( ) method can also be used to return ntext data containing valid XML. For more...
Ngày tải lên: 24/12/2013, 05:15