2011年10月16日 星期日

Published 上午10:23 by with 0 comment

台灣節慶英文辭

台灣節慶 Holidays and Festivals in Taiwan
新年 (Jan. 1 ) New Year's Day
農曆除夕 (Jan.) Chinese (Lunar) New Year's Eve
農曆春節 ( Jan.) Chinese (Lunar) New Year
元宵節 ( Feb.) Lantern Festival
二二八記念日(Feb. 28) February 28th Incident Memorial Day
青年節 (Mar. 29 ) Youth Day
清明節 ( Apr. 5 ) Tomb Sweeping Day
母親節 (May) Mother's Day
端午節 (May 19) Dragon Boat Festival
豐年祭 (Jul.) Harvest Festival
農曆七夕 (Jul. 7) the Seventh Evening of July (the Chinese Valentine's Day)
中元節 (Jul. 15) Ghosts' Festival
父親節 (Aug. 8) Father's Day
中秋節 (Aug. 15) Moon Festival, Mid-Autumn Festival
重陽節 (Sep. 9) Double Ninth Festival
教師節 (Sep. 28) Teacher's Day, Confucius' Birthday
雙十節 (Oct. 10) Double Tenth Day
海外中國節 (Oct. 21) Overseas Chinese Day
台灣光復節 (Oct. 25) Taiwan Restoration Day
蔣公誕辰 (Oct. 31) Birthday of President Chiang Kai-shek
國父誕辰/植樹節 (Nov. 12) Dr. Sun Yat-sen's Birthday/Arbor Day
冬至 (Dec. 22) the winter solstice, midwinter
行憲紀念日 (Dec. 25) Constitution Day
Read More
      edit

2011年10月4日 星期二

Published 清晨6:04 by with 0 comment

Transport

SCC1 : Copy by Transport Request
系統內Client間Copy傳輸請求(Request),一般用於Client相關的配置的系統內傳輸

SCC3 : Client Copy/Transport Log Analysis
SCC1/SCC7/SCC8/SCC9/SCCL的的傳輸日誌

SCC4 : Display View “Clients” : Overview
Client管理,比如新建一個Client

SCC5 : Delete Client

SCC7 : Post-Client Import

SCC8 : ClientExport

SCC9 : Client Copy – Copy a Client (Remote client copy)

SCCL : Client Copy – Copy a Client (系統內Client複製)

Read More
      edit

2011年10月2日 星期日

Published 凌晨2:40 by with 0 comment

Systems fields of SYST or SY structure

SYSTEM Fields related with R/3 System
SY-DBSYS : R/3 DBMS like ORACLE.
SY-HOST : Application server.
SY-OPSYS : Application server Operating system .
SY-SYSID : R/3 System ID.

SYSTEM Fields about Current Terminal Session
SY-LANGU : One-character language key with the user’s logon language such as E
SY-MANDT : Login client e.g. 600
SY-MODNO : Index of the current external session starting from 0.
SY-UNAME : Login name of the user.

SYSTEM Fields related with current Date and Time
SY-DATUM : Date on the application server in YYYYMMDD format e.g. 20060414
SY-FDAYW : Day of the week according to Factory calendar e.g Monday = 1.
SY-TIMLO : User’s local time.
SY-UZEIT : Time on the application server.

SYSTEM Fields related with Current ABAP Program
SY-CALLD : If the program is started using CALL TRANSACTION / DIALOG, or SUBMIT … [AND RETURN] its value is 'X'. If the program is started using LEAVE TO TRANSACTION or using a transaction code from a screen or when a batch input session is in progress its value is ' ' .
SY-CPROG : The name of the current program and name of the calling program within a procedure.
SY-DBNAM : The name of the logical database linked to an executable program.
SY-DYNGR : Screen group to which the current screen belongs.
SY-DYNNR : Number of the current screen.
SY-LDBPG : In executable programs, the database program of the associated logical database.
SY-REPID : Name of the current ABAP program.
SY-TCODE : The transaction code of the current program..

SYSTEM FIELDS for Background Processing and batch input
SY-BATCH : X if the ABAP program is running in the background, otherwise space

SYSTEM FIELDS for Batch Input
SY-BINPT : X while a batch input session is running and when an ABAP program is called using CALL TRANSACTION USING, otherwise space.

SYSTEM FIELDS For ABAP Programming
SY-ABCDE : It is a constant and contains alphabets(AB..Z). What ever the code page its value remains same. SY-ULINE : Contains a horizontal line with length 255 used in creating lists.
SY-VLINE : Contains a vertical line , used in creating lists.
Loops
SY-INDEX : WithIn a loop it contains the number of loop passes including the current pass and is set by ABAP commands DO,WHILE.
Strings
SY-FDPOS : It contains the location of a hit in string operations. used with CO,CN, CA, NA, CS, NS, CP, and NP, offset values are assigned to SY-FDPOS depending on the search result.

Internal Tables
SY-TABIX : Current line of an internal table. It is set only for index tables. The field is either not set or is set to 0 for hashed tables. It iset by ABAP commands APPEND,COLLECT,LOOP AT,READ TABLE,SAERCH itab FOR .
SY-TFILL : After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL contains the number of lines in the relevant internal table.

Database Access
SY-DBCNT : It contains the number of table entries processed. In an loop it is not set until after the ENDSELECT or ENDEXEC statement. It is set by ABAP commands DELETE,FETCH,INSERT,MODIFY and UPDATE.

SY-SUBRC : Return code set by the last ABAP statement. if it is 0 it means the statement was a success.
-- SELECT
0 : stands for success. (The return table contains all the records requested.)
4 : stands for failure, that is no key found. (The return table contains records, but is incomplete due to missing authorization.)
8 : stands for failure but it means no further keys available. (The return table is empty as no records were found for the criteria specified.)
12 : The return table is empty due to missing authorization.

-- INSERET
0 :
4 :
-- DELETE
0 :
4 :
-- UPDATE
0 :
4 :
-- LOOP
0 :
4 :


SYSTEM FIELDS for Screens
A group of system fields is set in the PAI event of each screen. Exceptf SY-DATAR, SY-LOOPC, and SY-STEPL, these can be used in list processing.
SY-CUCOL : Horizontal cursor position. Counter begins at column 2.
SY-CUROW : Vertical cursor position. Counter begins at line 1.
SY-DATAR : This field contains 'X' if at least one input field on the screen was changed by the user , otherwise it is space.It can be used to determine if user has made any changes and a popup can be called with a prompt e.g. POPUP_TO_CONFIRM_CHANGE.
SY-LOOPC : Number of lines currently displayed in a table control. Can be used to determine the step loop blocks in the screen and for scrolling functionality.
SY-PFKEY : GUI status of the current screen. This can be set in the PBO event using the SET PF-STATUS statu OF PROGRAM rep statement.
SY-SCOLS : Number of columns on the current screen.
SY-SROWS : Number of rows on the current screen.
SY-STEPL : Index of the current line in a table control. This is set in each loop pass. SY-STEPL does not have a meaningful value outside the loop (for example, during the POV event for a table line).
SY-TITLE : It contains the text that appears in the title bar of the screen. For selection screens and lists it is the program name,it can be set using the SET TITLEBAR statement.
SY-UCOMM : It contains the function code that triggered the PAI event.ENTER triggers the PAI but this field will remain blank if no function code is attached to ENTER key.

Selection Screens
SY-SLSET : Variant used to fill the selection screen.

SYSTEM FIELDS for Creating Lists
SY-COLNO : It contains the current column during list creation starting at 1. The field is set by the output statements WRITE,ULINE,SKIP,POSITION,NEW-LINE,NEW-PAGE and BACK (sets it to 1).
SY-LINCT : It contains length of the page in the list.Its value is 0 if the length of page is infinite.
SY-LINNO : It contains the current line during list creation begining from 1, and includes the page header. SY-LINNO is set by the ABAP output statements which are same as SY-COLNO.
SY-LINSZ : It contains the line width in the list. The default value is the default window width. You can change the line width of the list using the LINE-SIZE addition in the REPORT or NEW-PAGE statement. The default value is 84 .
SY-PAGNO : Current page during list creation.
SY-TVAR0 ... SY-TVAR9
You can assign values to these variables in your programs. Their contents replace the placeholders in the list and column headers of the program in the TOP-OF-PAGE event.

SYSTEM FIELDS For Messages
With call of MESSAGE statement following system fields are set.
SY-MSGID : contains the message class
SY-MSGNO : contains the message number
SY-MSGTY : contains the message type
SY-MSGV1,…,SY-MSGV4 : These fields hold the place holders in the message.

轉載自 http://sap.niraj.tripod.com/id36.html

Read More
      edit

2011年6月24日 星期五

Published 凌晨12:21 by with 0 comment

生育可減稅 明年起實施

【經濟日報╱記者蘇秀慧/台北報導】
2011.06.24 03:38 am
 
搶救生育大作戰,總統府財經月報昨(23)日拍板動用租稅工具獎勵生育,家有二至五歲(未滿)幼兒者,不論送托或在家自行照顧,都可扣除每人每年2.5萬元養育幼兒特別扣除額,明年起實施。


此獎勵生育措施將設排富條款,僅年所得淨額在113萬元以下,適用綜所稅率5%及12%的家庭享有,減稅利益約4億元。


另外,加碼擴大辦理零至二歲家庭育兒補助。


根據內政部初步規劃,凡是家有零至二歲幼兒,父母未領取保母托育補助和六成薪的育嬰留職津貼者,每人每月發給育兒補助2,500元,預估9.1萬人受惠。


保母補助也加碼,育有零至二歲幼兒,適用綜所稅率12%以下家庭,僱用登記合格保母,每人每月補助1,500元保母托育費用等。


這些措施預訂明年上路,內政部初估每年約增加30億元經費。


總統府財經月報昨天聽取行政院政務委員薛承泰報告「少子女化因應對策具體計畫」。


馬英九總統聽取報告後指示,針對少子化的國安危機,擴大辦理育兒補助,以及增列養育幼兒特別扣除額,務必阻止生育率持續下降。


去年台灣平均每位育齡婦女生育子女數已降至0.91人,出生嬰兒數也下滑至16萬6,800餘人,雙雙創下新低,政府已決定採取租稅等鼓勵措施,今年建國百年拚結婚,明年龍年拚生育。


轉載自  http://udn.com/NEWS/FINANCE/FIN2/6417560.shtml


Read More
      edit

2011年6月1日 星期三

Published 凌晨12:34 by with 0 comment

[轉載] 鈀金今年看漲25%

2011-06-01 工商時報 【記者陳穎芃/綜合外電報導】
     彭博社報導,BMW、戴姆勒等車廠近來業績大旺,促使汽車觸媒轉化器的原料鈀金出現32年來最嚴重短缺現象,而分析師也預期今年底前鈀金價格可望攀升25%。


     據汽車業顧問公司JD Power統計,全球95%的新車都裝有觸媒轉化器,且今年全球汽車銷售量可望成長5.1%至7,600萬台。在汽車需求量持續看漲的情況下,南非標準銀行預期全球鈀金市場將呈現1,600萬英兩的供應短缺,是1979年以來最嚴重的短缺現象。


     彭博社調查24位分析師的結果預期,今年底前鈀金價格將上漲25%,並預期全球最大鈀金供應商諾里爾斯克鎳礦公司(Norilsk)今年獲利創新高。


     2005至2010年間,鈀金價格一度成長4倍,但年初至今價格下跌5.1%至每英兩761美元,落後金、銀及白金價格走勢。若和同一期間追蹤24大商品價格的標普GSCI指數漲幅11%相比,落差更是明顯。


     今年3月日本地震爆發後,豐田等車廠位於災區的廠房受到嚴重破壞,導致日本汽車產量銳減,使得鈀金價格更加慘澹。所幸歐美車廠第1季銷售量締造佳績,透露全球經濟持續成長將刺激更多汽車需求,使鈀金瞬間成為搶手貨。


     BMW在5月初表示,今年第1季汽車銷售量超過38.2萬台,戴姆勒也預期今年銷售量可達130萬台。就連歷經地震的日產汽車也預期,今年汽車銷售量將打破去年紀錄。


     巴克萊資本預期,來自觸媒轉化器的鈀金需求量將在今年成長6.2%至547萬英兩。除了需求擴大之外,鈀金產量逐年減少也是價格上漲的原因之一。巴克萊資本預期,今年來自礦場與庫存的鈀金供應量將下滑5.7%至678萬英兩,是過去6年來第4度萎縮。


     以全球第二大鈀金生產國南非為例,當地最大電力公司Eskom在4月表示,國內發電廠產能不足,因此可能間接衝擊鈀金產量。2008年1月南非斷電曾造成礦場停工5天。全球最大鈀金生產國俄羅斯的鈀金庫存量也在下降當中。

轉載自  http://news.chinatimes.com/2007Cti/2007Cti-News/2007Cti-News-Content/0,4521,50103936+122011060100178,00.html


Read More
      edit

2011年5月5日 星期四

Published 下午1:33 by with 0 comment

[轉載] 大陸企業失信代價昂貴 年損6000億人民幣

大陸商務部統計資料指出,中國大陸企業每年因信用缺失導致的直接和間接經濟損失高達 6000 億元 (人民幣,下同) ,其中因產品質量低劣、製假售假、合同欺詐造成的各種損失每年達 2000 億元。在誠信成本太高,而失信又幾乎沒什麼成本的情況下,違約、造假、欺詐的案例層出不窮,巨額的信用成本,正嚴重剝奪中國企業尤其是中小企業本就狹小的生存空間。


香港《文匯報》引述大陸傳媒報導,據國家統計局數據,截至 2010 年 11 月末,全國規模以上的工業企業的應收賬款總額達到 6.46 兆,同比增長 22.4% ,比上年增長了 8.4 個百分點。從工業企業數字來看,應收賬款總量和增長速度都是很高的。這說明,應收賬款的風險很高。


科法斯企業信用管理調查結果顯示,有 67.4% 受訪企業曾於 2010 年遭遇國內買家拖欠付款,這一比例與 2009 年的 72% 相比,下跌了 6.4% ,但由於交易規模的擴大,被拖欠付款的絕對數額並未下降。


而據有關機構的調查, 2009 年,全國逾期賬款平均超過 60 天的企業佔 33% ,較 2008 年同期增長了 50 個百分點。企業的壞賬率高達 1-2% ,且呈逐年增長勢頭,而相比較下,成熟市場經濟國家企業壞賬率通常為 0.25-0.5% 。另外,中國內地商業誠信環境之差還體現在合同履約率低。據調查,目前全國每年簽訂約 40 億份合同中,履約率只有 50%。


轉載自  http://news.cnyes.com/Content/20110505/KDWR6H80TPJ06.shtml?c=headline_sitehead


Read More
      edit
Published 下午1:24 by with 0 comment

[書籍] 你對未知的處理能力

第一章 心靈免疫,就沒有「不適應」為什麼你會「不適應」?
你小時候打過心靈疫苗嗎?
你能接受「異」性到什麼程度?
「不得不」的時候,你情緒激動嗎?
為什麼潔癖無法令人感動?
你敢離家獨自流浪嗎?
日本就因混種而變強
你能把「各半」看成「兼具」嗎?
爸媽沒操你,你能讓自己耐操嗎?
你知道人怎麼變半吊子的嗎?

第二章 職場的35關卡與知性魅力適應力強,不怕沒異性緣
你身上有職場費洛蒙嗎?
為什麼三十五歲是關卡?
你能經常累積「不喜歡」的經驗嗎?
從不犯錯與犯同樣錯,一樣糟
說到學英語,你怎麼看待這件事?
A型人不多,你如何階段性成長?
每個人的「大環境」都一樣,心態不一樣
什麼是「辯證式的成熟」?
男女相處,一樣是否定到妥協
你常說「又跟我沒關係」、「反正沒差」嗎?
和人溝通,常說「喔,我早就知道了」嗎?

第三章 毒物變養分,心靈能免疫敏感、不寬容的人變多了,為什麼?
內毒素讓人百毒不侵
為什麼潔癖讓人不健康?
人能免疫,就靠細菌
消化道算體外?
區分「自我」與「非自我」的,不是大腦
免疫就是把毒物變成養分
陌生食物你敢吃一口先嗎?

第四章 為什麼你得耐操?看人臉色吃飯的經驗
耐操︰打死不退又隨機應變
「數字不代表一切」,逃避現實
「這根本不是我想做的事」,藉口!
「天真」沒有正面意義
「理想」常是僵化的碉堡
沒有人能活在迪士尼樂園
你追的是夢?還是目標?
用你的儀式和說話改變心態
你會用肢體回應別人的話嗎?
多說「喔~」,有妙用
不准說「可是」

第五章 逆轉勝需要這樣心理建設你的身體會散發出能量嗎?
要認輸,但不能習慣失敗
用言語,給自己安慰劑效應
逼自己參加雜菌密集課程
想激發潛能,先認清現實
不承認自己差,你怎麼進步?
能屈能伸的人,能抓住最後機會
人生是被動的,身段要柔軟
沒人再要求你什麼,你就完了
你想當菊池寬還是芥川龍之介?
怎樣的處世原則比較好?
你有自信說「我是special one」嗎?
如何吸引別人追隨你?

第六章 雜菌主義者的十個態度01好好把握被雜菌纏身的精華時期,盡情地置身其中!
02接受「異」性,轉大人!
03靈活運用「雜」的力量!
04 善用「不甘心」的恨意!
05實現自我不如實現他人!
06越是不擅長的事,越能增強免疫力!
07擴大自己的能量,形成漩渦,影響他人!
08用身體親自接觸,捕捉真實感!
09擁有自行修正回路(未來道路)的能力!
10與人應對的態度,從語言開始改變!

Read More
      edit
Published 下午1:14 by with 0 comment

[書籍] 讓工作自由

Part 1 千里之行,始於足下
地圖1 你身處何方?——要到達目的地,必須先了解起點在哪裡

Part 2 大事在哪裡?
地圖2 最棒的是什麼?——從過去的巔峰時刻找出大事的線索
地圖3 最佳狀態的你是什麼模樣?——從不同表現的狀況中找出大事的線索
地圖4 誰在做大事?——從榜樣身上汲取力量

Part 3 發掘你的大事
地圖5 什麼在呼喚你?——檢視生活,找尋做大事的機會
地圖6 哪裡出了錯?——煩惱之處也能找到大事
地圖7 你被要求些什麼?——平衡生活中彼此競爭的需求

Part 4 挑選你的大事計畫
地圖8 最佳選擇是什麼?——開始評分,選出你的大事計畫

Part 5 創造新的可能性
地圖9 什麼是有可能的?——找出你內在的點子製造機
地圖10 什麼結局比較合適?——以說故事的方式找出不同的可能性
地圖11 你有多勇敢?——將自己推向邊緣,找出界線在哪裡

Part 6 開始執行你的大事計畫
地圖12 你會做哪件事?——縮減選項,決定你真正要做的大事
地圖13 你需要什麼樣的支持?——找到可以在情緒、技術或策略上幫助你的人
地圖14 下一步是什麼?——動手吧,開始做更多大事!

Part 7 繼續你的大事之旅
地圖15 如何找回大事的魔力?——掃除阻礙,回到原來的路

Read More
      edit

2011年4月23日 星期六

Published 下午4:49 by with 0 comment

日記20110423「王國密碼」

中華文化的元素:潑墨山水留下的獨白、字裡行間隱藏的真意、縱橫交錯的人生棋局。
用詩的迷離遊走在星羅夜空的擺佈裡,讓想像牽著歷史的手,合而走出創意在舞台的激情和感動。
每個人都有著故事,握著的,你能感受到它的真嗎?

Read More
      edit

2011年4月18日 星期一

Published 清晨5:23 by with 0 comment

Tables

顯示特定資料表的所有欄位名稱
(1)
SELECT B.NAME  FROM SYSOBJECTS AS A, SYSCOLUMNS AS B WHERE A.XTYPE = 'U' AND A.ID = B.ID AND A.NAME='TableName';

(2)
SELECT ORDINAL_POSITION,COLUMN_NAME,DATA_TYPE,CHARACTER_MAXIMUM_LENGTH,IS_NULLABLE,COLUMN_DEFAULT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='TableName' ORDER BY ORDINAL_POSITION ASC;

(3)
EXEC SP_COLUMNS TableName;

(4)
DECLARE @mStrColumns VARCHAR(8000) , @mStrTable VARCHAR(100)
SET @mStrTable ='TABLE_NAME'

SELECT @mStrColumns = COALESCE(@mStrColumns + ', ', '') + CAST(SC.[NAME] AS VARCHAR(100) ) ,
@mStrTable = schema_Name(schema_id) + '.' + SO.NAME
FROM syscolumns sc
JOIN sys.objects so ON sc.id = so.object_ID
WHERE sc.status <> COALESCE (NULL  ,sc.status+1) AND so.name = @mStrTable

SELECT 'SELECT ' + @mStrColumns + ' FROM '  + @mStrTable

/**** Reference ****/
syscolumns
Returns one row for every column in every table and view, and a row for each parameter in a stored procedure in the database.
http://msdn.microsoft.com/en-us/library/ms186816(SQL.90).aspx

sysobjects
Contains one row for each object that is created within a database, such as a constraint, default, log, rule, and stored procedure.
http://msdn.microsoft.com/en-us/library/ms177596(SQL.100).aspx

sys.objects
Contains a row for each user-defined, schema-scoped object that is created within a database.
http://msdn.microsoft.com/en-us/library/ms190324(SQL.90).aspx

coalesce
Evaluates the arguments in order and returns the current value of the first expression that initially does not evaluate to NULL.
http://msdn.microsoft.com/en-us/library/ms190349.aspx
/**** Reference End ****/

取得資料庫所有資料表名稱
SELECT * FROM SYSOBJECTS WHERE XTYPE = 'U';


伺服器各資料庫的名稱
SELECT NAME FROM MASTER.DBO.SYSDATABASES;


資料表及檢視表名稱
SELECT Table_name FROM INFORMATION_SCHEMA.TABLES ORDER BY Table_name;


找資料表的PK欄位
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME = 'TableName';



Read More
      edit

2011年4月15日 星期五

Published 凌晨1:49 by with 0 comment

The log file for database is full

[交易紀錄已滿]

Microsoft OLE DB Provider for SQL Server error '80040e14'
資料庫 'OverTime' 的交易記錄已滿。如果要瞭解為何無法重複使用記錄中的空間,請參閱 sys.databases 中的 log_reuse_wait_desc 資料行。

http://support.microsoft.com/kb/317375/zh-tw

http://sharedderrick.blogspot.com/2009/03/transaction-log-for-database-is-full.html
ALTER
DATABASE Northwind

SET RECOVERY [SIMPLE|FULL]

GO

Read More
      edit

2011年4月7日 星期四

Published 下午3:12 by with 0 comment

[盤後觀感] 110407

110407_30k-04.png      
若跌破8869
支撐:8869/8850/8828/8802/8767

若跌破8767
支撐:8712/8631

Read More
      edit

2011年3月9日 星期三

Published 清晨6:08 by with 0 comment

[Table] 備份維護計畫

USE [MSDB]

sysmaintplan_plans
sysmaintplan_subplans
sysmaintplan_log
sysmaintplan_databases



BACKUP DATABASE [OverTime] TO  DISK = N'E:\Backup\SQL\OverTime\OverTime_backup_201104150931.bak' WITH NOFORMAT, NOINIT,  NAME = N'OverTime_backup_20110415093118', SKIP, REWIND, NOUNLOAD,  STATS = 10

EXECUTE master.dbo.xp_delete_file 0,N'E:\Backup\SQL\OverTime',N'BAK',N'2011-04-01T09:33:19'




Read More
      edit

2011年2月20日 星期日

Published 清晨6:22 by with 0 comment

[轉載] "等到有一天" 你或許沒有機會/作者:孫越



在今天,我們的房子越來越大,但是家庭越來越小。
生活越來越方便,但是時間卻越來越少。

我們的學位越來越高,常識卻越來越少。
知識越來越多,判斷力卻越來越差。
我們有更多的專家,但是也有更多的問題。
醫藥越來越好,但健康越來越少。

我們花費太多,歡笑太少。
車開得太快,火氣上來也更快。
睡得太晚,閱讀太少,電視看得太多,而且禱告太少。
我們所擁有的資產倍增,但是價值卻遞減。

我們說得太多,但是愛心太少,且謊話連篇。

我們學習如何經營生活,但沒有建造生命。
我們在生命中加增歲月,卻沒有在歲月中增長生命。
我們有越來越高的建築,但也有越來越低的 EQ。

有更寬廣的高速公路,但有更狹窄的視野。

我們花費得更多,但擁有的更少。
我們買得更多,但享受得更少。

我們可以登陸月球回來。但是卻無法拜訪對街的鄰居。
我們可以征服外太空。但是卻無法掌控內心世界。
我們可以分裂原子核,但是卻無法挪去心中的偏見。

我們更多書寫,卻更少學習。
更多計畫,卻更少成就。
我們學會忙碌,但學不會等候。

我們的收入更高了,但道德更低了。
我們生產更多電腦,掌握更多資訊,
複製更多拷貝,但我們的溝通卻更貧乏。
我們的數量提高了,品質卻降低了

這是快速食品充斥卻消化不良的時代。

高大的身軀與低劣的性格並存的時代。
更多休閒卻更少歡樂。
更多食物卻更少營養。

更多雙收入家庭,但更高的離婚率。
更多千萬豪宅,但 卻更多破碎的家庭。

我建議,在今天這樣的世代,
你不要保留任何事情到特殊的場合才做,
因為你活著的每一天都是特殊場合。
勤加閱讀,追求知識,
坐在你家的前廊上欣賞自然美景,
無需汲汲營營於生活需要。
多花時間與家人及好友在一起,
享受喜歡的食物,
到你喜愛的地方去遊覽。

生命不只是為了存活,
而是一連串愉快事件組成的的鏈條。
將你的水晶高腳杯拿出來,
不要將妳最好的香水存起來,
任何時候你想要用的時候就用它吧。
把「有一天」「將來的某一天」
從你的字典中刪除。
現在就去寫那一封
你曾經想過要等到「有一天」才來寫的信。
讓我們現在就告訴我們的家人我們多愛他們。
不要將會帶給你歡笑及喜樂的任何事情拖延到未來。

每一天,每一小時,每一分鐘都是特別的,
而且你不知道那是否是你的最後一刻。
如果你太忙以致於無法將這封信傳給你所愛的人,
你告訴自己說,「等到有一天」我再傳。
那 請你相信我  "等到有一天" 你或許沒有機會傳了。

轉載自  http://www.facebook.com/note.php?note_id=201697166507484&id=141173699278267





Read More
      edit

2011年2月18日 星期五

Published 下午4:04 by with 0 comment

讀書會之建立、運作與帶領技巧

【課程目的】

  企業關鍵人才(Key Talent)的培育與發展,已成為目前人力資源最夯也最重要的課題之一。但在全球不景氣的影響下,企業訓練與發展的預算,往往被凍結或緊縮,然而人才的培育卻又是刻不容緩的事,此時,若人力資源專業人員能夠在企業成功推動讀書會,花小錢做大事,活化人才的自我發展(Self Development),不僅可以提升績效,也可以同時提升自我的能力。本課程將藉由講師在企業帶領與推動讀書會多年經驗的分享與交流,共同促進企業讀書會的發展。


【課程大綱】


‧SD(Self Development)的重要工具-讀書會
‧讀書會的目的與功能
‧讀書會應有的認知
‧讀書會組成的六大要素
‧企業讀書會的規劃與運作
‧讀書會領導人的角色與技巧
‧如何帶領討論
‧提問的技巧-四層次的運用
‧三個What
‧傾聽的DISC要訣
‧帶領示範
‧讀書會的成立
‧讀書會的延伸與發展


 


Read More
      edit

2011年2月16日 星期三

2011年1月12日 星期三

Published 上午10:15 by with 0 comment

VB.NET 呼叫不傳參的 Stored Procedure

Public Function ExeSpFtripDays()

        Dim Conn As SqlConnection = New SqlConnection(ConfigurationSettings.AppSettings("ConnectionString"))

        Dim Comm As SqlCommand



        Comm = New SqlCommand("sp_FtripDays", Conn)   /** sp_FtripDays Stored Procedure的名稱 **/

        Conn.Open()

        Comm.ExecuteNonQuery()

        Comm.Connection.Close()

        Conn.Close()

End Function





要執行Stored Procedure時,宣告個 clsData 物件去呼叫該函式

Dim obj As New clsData

obj.ExeSpFtripDays()

Read More
      edit