Using sql phần 1
-
Trong phần một và hai của loạt bài này, chúng tôi đã giải thích cách sử dụng các hàm CASE đơn giản trong truy vấn. Phần này sẽ hướng dẫn cách sử dụng hàm CASE trong các mệnh đề như GROUP BY Phương thức 6: Sử dụng hàm CASE đơn giản trong mệnh đề GROUP BY Giả sử chúng ta có bảng sau set quoted_identifier off go use tempdb go if exists (select * from dbo.sysobjects where id = object_id(N'[emp]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [emp] GO create table Emp (id int, [First name] varchar(50), [Last name] varchar(50),...
5p abcdef_46 05-11-2011 92 8 Download
-
Trong phần 1 của loạt bài này chúng tôi đã giải thích các sử dụng hàm CASE đơn giản trong truy vấn. Trong phần II này, chúng tôi sẽ tiếp tục thảo luận về cách sử dụng hàm CASE trong một số trường hợp khác. Phương thức 4: Sử dụng hàm CASE trong tìm kiếm Giả sử chúng ta có bảng sau use tempdb go if exists (select * from dbo.sysobjects where id = object_id(N'[emp]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [emp] GO create table Emp (id int, [First name] varchar(50), [Last name] varchar(50), Salary money) go insert into...
5p abcdef_43 03-11-2011 72 4 Download
-
Trắc nghiệm cở sở dữ liệu Oracle hot CHƢƠNG 1 1. Tính năng mới nào của Oracle9i cho phép nhiều user xem nội dung của table tại 1 số điểm trong qkhứ? A. LogMiner B. Import C. Metadata Viewer D. Oracle Flashback 2. Phát biểu nào dưới đây là đúng về tính năng nâng cao để chia sẻ các câu lệnh SQL trong shared pool? A. The cursor sharing feature can re-use a SQL statement even if the columns in the statement are in a
17p kemoc9 15-07-2011 400 69 Download
-
A few years ago, Microsoft released the 1.0 Framework of ADO.NET and revolutionized the way we access data. It was a drastic change that took some getting used to, but for the most part, developers who made the switch love it. It’s now over three years later, and ADO.NET 2.0 is here. It provides all the same features that we’ve come to love in ADO.NET 1.0 and adds some new ones to provide even more functionality and make repetitive, mundane tasks much simpler. Throughout this book, we dig deeply into many of these new features....
30p giangtanthon 10-02-2010 193 63 Download
-
Trong phần tiếp theo này, chúng tôi sẽ giới thiệu cho các bạn các thu thập các thông tin về card mạng và ổ đĩa cứng từ máy chủ. Bước 1 Đánh hoặc copy và paste đoạn mã dưới đây vào C:\CheckSQLServer\Checkhd.ps1. #Function to check the HDD information on the host machine Function checkHD([string] $Hostname ) { $drives=get-wmiobject -class Win32_LogicalDisk -computername $hostname -errorvariable errorvar if (-not $errorvar) { foreach ($drive in $drives) { if ($drive.drivetype -eq "3" ) { $message= "DeviceID="+$drive.Deviceid+" Size="+ $drive.size/1048576+"MB Free Space="+ $drive.
8p balanghuyen 11-01-2010 143 21 Download