1.SQL Server 2005 Service Pack 3
2.Microsoft Visual Studio 2005 Service Pack 1
繁體中文微軟官方下載-Microsoft® Visual Studio® 2005 Team Suite Service Pack 1
English Microsoft Download -Microsoft® Visual Studio® 2005 Team Suite Service Pack 1
3.Office 2003 Service Pack 3
繁體中文微軟官方下載-Office 2003 Service Pack 3
English Microsoft Download - Office 2003 Service Pack 3
4.SQL Server 2005 Books Online 線上叢書 (2008 年 11 月) (December 2008)
(此項為非必要更新)
Brad Chen's Developer Blog Azure Database Data science Machine Learning Cloud
2009年3月25日 星期三
Microsoft SQL Server 2005 Service Pack 3
去年底發佈的SQL Server 2005 Service Pack 3
[Microsoft Download官方下載更新]
[繁體中文版]
版本: 9.00.4035
Knowledge Base (KB) Article: KB955706
發佈日期: 2008/12/15
語言: 繁體中文
下載項目大小: 342.0 MB - 736.2 MB*
Microsoft SQL Server 2005 Service Pack 3
[英文版]
Version: 9.00.4035
Knowledge Base (KB) Articles: KB955706
Date Published: 12/15/2008
Language: English
Download Size: 326.0 MB - 1135.7 MB*
Microsoft SQL Server 2005 Service Pack 3
[Microsoft Download官方下載更新]
[繁體中文版]
版本: 9.00.4035
Knowledge Base (KB) Article: KB955706
發佈日期: 2008/12/15
語言: 繁體中文
下載項目大小: 342.0 MB - 736.2 MB*
Microsoft SQL Server 2005 Service Pack 3
[英文版]
Version: 9.00.4035
Knowledge Base (KB) Articles: KB955706
Date Published: 12/15/2008
Language: English
Download Size: 326.0 MB - 1135.7 MB*
Microsoft SQL Server 2005 Service Pack 3
2009年3月24日 星期二
使用一句SQL INSERT多筆Record(multiple values)
使用一句SQL INSERT多筆Record(multiple values)
此功能在MySQL在3.22.5之後就有的功能,SQL Server在這個SQL Server 2008版本才加入此功能
-- 切換測試資料庫
USE MyDB
GO
USE MyDB
GO
-- 建一個測試資料表
CREATE TABLE [mytable]
(
myid
nvarchar(10)
,givenName
nvarchar(50)
,email
nvarchar(50)
);
GO
CREATE TABLE [mytable]
(
myid
nvarchar(10)
,givenName
nvarchar(50)
nvarchar(50)
);
GO
-- 一次Insert 多筆資料
INSERT INTO [mytable]
VALUES
('01','Brad','brad@test.com')
,('02','Siliva','siliva@test.com')
,('03','Allen','Allen@test.com');
GO
INSERT INTO [mytable]
VALUES
('01','Brad','brad@test.com')
,('02','Siliva','siliva@test.com')
,('03','Allen','Allen@test.com');
GO
-- 檢查資料是否正確寫入
SELECT * FROM [mytable];
SELECT * FROM [mytable];
saving changes is not permitted 不允許儲存變更
saving changes is not permitted 不允許儲存變更
update 2022/7/14
錯誤訊息
The changes that you have made require the following tables to be dropped and re-created
解決方法
To change this option, on the Tools menu, click Options, expand Designers, and then click Table and Database Designers. Select or clear the Prevent saving hanges that require the table to be re-created check box.
SSMS v18.12.1
SQL Server 2008啟動SSMS,開始試試IntelliSence,Import,Export等基本功能,建了一個Table想要再Modify修改Table的Column欄位定義,出現錯誤 "不允許儲存變更saving changes is not permitted"
解法如下:
- 請開啟 SQL Server Management Studio (SSMS)
- 在 [ 工具 ] 功能表中上, 按一下 [ 選項 ]
- 在 [ 選項] 視窗,巡覽窗格中, 按一下 設計工具 (英文)
- 選取或清除 [儲存的變更,需要重新建立資料表 ] 核取方塊,然後再按一下 [確定]
To change this option, on the Tools menu, click Options, expand Designers, and then click Table and Database Designers. Select or clear the Prevent saving hanges that require the table to be re-created check box.
參考:
http://msdn.microsoft.com/en-us/library/bb895146.aspx
http://support.microsoft.com/kb/956176/zh-tw
http://msdn.microsoft.com/en-us/library/bb895146.aspx
http://support.microsoft.com/kb/956176/zh-tw
2009年3月7日 星期六
如何擴充延長 Windows Server 2008 的評估期
如何擴充延長 Windows Server 2008 的評估期
http://support.microsoft.com/kb/948472/zh-tw
1.檢查評估期
slmgr.vbs-dli
2.延長評估期(重設評估期為60天),最多延長3次
slmgr.vbs –rearm
PS.原始的 60 天評估期擴充 180 天,總可能評估 240 個天的時間
http://support.microsoft.com/kb/948472/zh-tw
1.檢查評估期
slmgr.vbs-dli
2.延長評估期(重設評估期為60天),最多延長3次
slmgr.vbs –rearm
PS.原始的 60 天評估期擴充 180 天,總可能評估 240 個天的時間
訂閱:
文章 (Atom)
SQL Server Planning, Pricing and License
Server-CALs授權模式 1.需購買的量應該是所有終端用戶的電腦 例如:一台Data warehouse主機 與 一台Web報表主機,但公司有50人或電腦會連進Web報表主機開啟報表,則應該每一台用戶端電腦都需要有CALs授權,Data warehouse主機購買Ser...
-
1.安裝了Oracle Client,就可以用Oracle Net Manager工具來設定TNS連線設定(Tnsnames.ora) Oracle Client 18.3 Installation 安裝Oracle Client 18.3 2.啟動Oracle Ne...
-
SQL Server Integration Service可以透過內建的OLE DB Source連線到Oracle匯出資料,但無法寫入資料到Oracle,Attunity公司針對這個功能提供了SSIS的連結Source,並且聽說資料傳送效率非常好,本人沒有測試過效能,有興趣的...
-
1.下載 Oracle Database 18c (18.3) https://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle18c-windows-180000-5066774.ht...