Fedora Taiwan User Group
Fedora Taiwan User Group 台灣專門介紹 Fedora Core Linux 的網站。
Fedora Taiwan User Group 台灣專門介紹 Fedora Core Linux 的網站。
在處理色彩時,有此色碼表是很不錯的。
|
Word Viewer 2003
MS 提供的工具,讓你不用灌 Word 也能看 Word 的檔案.
Excel Viewer 2003
MS 提供的工具,讓你不用灌 Excel 也能看 Excel 的檔案.
PowerPoint Viewer 2003
MS 提供的工具,讓你不用灌 PowerPoint 也能看 PowerPoint 的檔案.
http://fundementals.sourceforge.net/
Fundamentals is a collection of open source code libaries for use with the Delphi language.
The collection consists of:
String operations, Dynamic array operations, System functions and Date & Time operations.
Unicode codecs and Unicode character and string functions.
Common stream implementations that includes parsing support and binary packing.
Commonly used data structures, including efficient array and dictionary implementations.
UDP and TCP server and client classes. Support for asynchronous or threaded modes.
Units included for vectors, matrices, rational numbers and complex numbers.
1. 更改某個 Table 的 Owner
exec sp_changeobjectowner ‘tablename’,’dbo’
2. 使用預儲程序變更全部的 Table 的 Owner
1 2 3 4 | CREATE PROCEDURE dbo.User_ChangeObjectOwnerBatch @OldOwner as NVARCHAR(128), @NewOwner as NVARCHAR(128) AS |
1 2 3 | DECLARE @Name as NVARCHAR(128) DECLARE @Owner as NVARCHAR(128) DECLARE @OwnerName as NVARCHAR(128) |
1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | DECLARE curObject CURSOR FOR select 'Name' = name, 'Owner' = user_name(uid) from sysobjects where user_name(uid)=@OldOwner order by name OPEN curObject FETCH NEXT FROM curObject INTO @Name, @Owner WHILE(@@FETCH_STATUS=0) BEGIN if @Owner=@OldOwner begin set @OwnerName = @OldOwner + '.' + rtrim(@Name) exec sp_changeobjectowner @OwnerName, @NewOwner end -- select @name,@NewOwner,@OldOwner FETCH NEXT FROM curObject INTO @Name, @Owner END close curObject deallocate curObject GO |