One of the most frequently asked questions in SQL Server forums is how to format a datetime value or column into a specific date format. Here's a summary of the different date formats that come standard in SQL Server as part of the CONVERT function.
1、 Microsoft SQL Server可以在http://www.microsoft.com/sql/default.mspx和http://www.microsoft.com/china/sql/default.asp瞭解到有關Microsoft SQLServer的資訊。建議安裝Microsoft SQL Enterprise Manager Microsoft Corporation版本:8.0及Microsoft SQL Server
Declare @maxVersion int,@strYear varchar(2),@strMonth varchar(2),@strYearMonth varchar(4) Set @strYear = Right(Cast(Datepart(yy,Getdate()) AS varchar(4)),2) Set @strMonth = Cast(Datepart(mm,Getdate()) AS varchar(4)) if (Len(@strMonth) = 1) Set
最近為了研究資料倉儲裝了Sql Server 2000 Analysis Services,但是裝上後發現不能瀏覽樣本資料庫Cube,錯誤資訊:“未指定錯誤”;然後我試著在建立的資料庫下面建立Cube,問題依舊,重裝Sql Server 2000 Analysis Services以後還是不能瀏覽,到網上搜了搜,才發現Sql Server 2000 Analysis Services要打上補丁才能正常瀏覽Cube。 SQL Server 2000 Service Pack 3a for
如果你在64位的電腦上與一台32位的資料庫伺服器建立連結的伺服器,在64位上使用該連結的伺服器分散式查詢的時候,遇到了這樣的錯誤資訊:伺服器: 訊息 7399,層級 16,狀態 1,行 1OLE DB provider 'SQLOLEDB' reported an error. [OLE/DB provider returned message: Unspecified error][OLE/DB provider returned message: The stored pr
登入、使用者、角色和組是 Microsoft SQL Server 2000 安全機制的基礎。串連到 SQL Server 的使用者必須使用特定的登入標識符 (ID) 標識自己。因此,使用者只能查看經授權可以查看的表和視圖,並且只能執行經授權可以執行的預存程序和管理功能。這一安全系統基於用來標識使用者的 ID。sp_addlogin建立新的 SQL Server 登入,使使用者得以串連使用 SQL Server 身分識別驗證的 SQL Server
In earlier posts I already blogged about creating some simple queuing solutions with SQL Server Service Broker. Last week I spend some time actually implementing my research in a customer project and of course ran into two 'interesting' issues.It is