發表文章

目前顯示的是 2025的文章

Seminar參考資料

  成功大學臨床醫學研究所專題討論範本 https://icmmed.ncku.edu.tw/p/405-1113-89094,c11130.php?Lang=zh-tw 南開科技大學-車輛與機電產業研究所 https://webftp.nkut.edu.tw/~091346/Seminar/01.pdf https://webftp.nkut.edu.tw/~091346/Seminar/ https://webftp.nkut.edu.tw/~091346/Seminar/02.pdf https://webftp.nkut.edu.tw/~091346/Seminar/03.pdf University of Illinois at Urbana-Champaign – Effective Prelim & Final Presentations https://courses.physics.illinois.edu/phys596/fa2020/Lectures/EffectivePrelimFinalPresentations_FA20.pdf UCLA Graduate Writing Center – Preparing a Conference Paper / Presentation UCLA Graduate Writing Center CONFERENCE PROPOSALSAND PRESENTATIONS INTHE SOCIAL SCIENCES https://gwc.gsrc.ucla.edu/file/79c73fb1-bc10-4ca3-af54-8335dd856364 Presentation 101 for Graduate Students https://phas.ubc.ca/~phys449/Presentation_101_for_Graduate_Students.pdf https://www.cyto.purdue.edu/Education/index.htm https://www.mtu.edu/gradschool/resources-for/students/seminar/ https://1000projects.org/projects/cse-seminar-report...

Oracle SQL Developer介紹與下載安裝_常用操作筆記

圖片
Oracle SQL Developer 是一款免費的圖形化使用者介面,能讓資料庫使用者與管理員以更少的點擊與按鍵完成資料庫工作。 作為提高生產力的工具,SQL Developer 的主要目標是幫助終端使用者節省時間,並最大化在 Oracle 資料庫技術堆疊上的投資報酬。 開發人員可使用 SQL Developer 來執行查詢、呼叫/撰寫儲存程序、進行測試,以及撰寫/產生文件與開發資料庫程式等。 資料庫管理員可用 SQL Developer 管理資料庫並執行各種管理作業等。 應用架構師與資料模型設計師可用 SQL Developer 進行資料建模、腳本撰寫、報表等。 網頁開發人員與管理員可用 SQL Developer 管理 Oracle REST Data Services (ORDS),以建立與修改 RESTful 服務。 SQL Developer 支援 Oracle Database 10g、11g、12c,並可在任何支援 Java 的作業系統上執行。 官方下載網址(需要先有Oracle帳號登入進去後才能下載) https://www.oracle.com/tw/database/sqldeveloper/technologies/download/ 下載含有JDK版本的 否 可以從側欄位開啟查詢sessino視窗 select * from tab; 用來查meta data table 匯入範例資料庫 在此我們可下載從網路上抓下來的Oracle Sample Schemas 做匯入 連結: https://github.com/oracle-samples/db-sample-schemas/releases/tag/v21.1 下載解壓存放的路徑要是放在Oracle安裝默認位置 C:\app\your_username\product\21c\dbhomeXE\demo\schema C:\app\chous\product\21c\dbhomeXE\demo\schema "C:\app\chous\product\21c\dbhomeXE\demo\schema\db-sample-schemas-21.1\human_resources\hr_main.sql" @ C:\app\chous\product\21c\dbhom...

PL-SQL筆記3_Oracle Listener與Listener.ora檔案,lsnrctl(Listener control)

圖片
  Oracle Net Listener : a separate process that runs on the database server computer. It receives incoming client connection requests and manages the traffic of these requests to the database server. Listener.ora檔案 : is the configuration file for a listener. It can include the protocol address it is accepting connection requests on a list of the database and other services it is listening for, and control paramaters used by the listener. 預設windows安裝好的位置 C:\app\你的User名\product\21c\homes\OraDB21Home1\network\admin 配置檔案內文 # listener.ora Network Configuration File: C:\app\chous\product\21c\homes\OraDB21Home1\NETWORK\ADMIN\listener.ora # Generated by Oracle configuration tools. DEFAULT_SERVICE_LISTENER = XE SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = CLRExtProc) (ORACLE_HOME = C:\app\chous\product\21c\dbhomeXE) (PROGRAM = extproc) (ENVS = "EXTPROC_DLLS=ONLY:C:\app\chous\product\21c\dbhomeXE\bin\oraclr.dll") ) ) LISTENER = (DESCR...

PL-SQL筆記2_延伸XEPDB1登入_列出有哪些DB_連線登入到指定DB_建立新User並Grant權限

圖片
  在之前篇章已經知道如何去安裝Express免費用於學習或開發階段的Oracle DB PL-SQL筆記1_OracleOracle Database 21c Express Edition下載安裝筆記 https://coolmandiary.blogspot.com/2023/04/oracle-database-21c-express-edition.html 在這邊如果點選Oracle 執行處裡管理員跳出來的就是如下視窗 而點選SQL Plus則可以開啟終端 以DBA身分登入 / as sysdba 可以先撈取顯示幕前有哪些資料庫 select name from v$pdbs; 這邊可看到XEPDB1  這邊PDB這字眼代表的是 A pluggable database is a portable collection of schemas,schema objects, and nonschema objects in an oracle database. 登入指定的資料庫語法 connect sys/你一開始設置的SYS密碼@localhost:1521/資料庫名稱 as sysdba; 建立新User並Grant權限 (建立可登入、可建表的使用者,且表預設放在 USERS 表空間並有足夠空間。) create user demouser identified by demouser default tablespace users quota unlimited on users; 建立一個名為 demouser 的資料庫使用者,密碼也是 demouser(預設大小寫敏感) default tablespace users 將 USERS 設為這個使用者建立物件時的「預設永久表空間」。 quota unlimited on users 給予這個使用者在 USERS 表空間「不限額度」的配額,因此他可以在該表空間建立/擴張自己的物件(表、索引…)。若未設定配額或沒有 UNLIMITED,即使有建表權限也可能因為「沒有表空間配額」而建不起來。 grant create session, create table to demouser; create session:允許 demouser 登入資料庫(沒有此權限就不能連線)。 cr...

論文閱讀常見的羅馬拼音、數學符號、表達式解讀筆記

圖片
數學集合論與邏輯關係符號   ∀ :代表了全稱量詞的概念,意指 "對於每個" 或 "對於所有" 在邏輯和數學中。「對所有 … 都成立」(for all) 例:∀x ∈ R, x² ≥ 0 → 對所有實數 x,平方都 ≥ 0 ∃ :代表存在量詞的邏輯操作,這個操作宣稱集合或領域中存在特定種類的元素。「存在某個 …」(there exists) 例:∃x ∈ R, x² = 4 → 存在某個實數 x,使得 x² = 4 https://tw.piliapp.com/symbols/for-all/ ⊂ : 子集, 表示一個集合是另一個集合的子集,但不等於它。 ⊆ :子集或等於, 表示一個集合是另一個集合的子集或等於它。 ⊄ :表示一個集合不是另一個集合的子集,顯示非包含關係。 ⊈ :表示一個集合既不是另一個集合的子集,也不等於它。 ⊃ :超集, 表示一個集合是另一個集合的超集,但不等於它。 ⊇ :超集或等於, 表示一個集合是另一個集合的超集或等於它。 ∈ :屬於,表示一個對象是一個集合的元素。 https://tw.piliapp.com/symbols/subset-of/ https://tw.piliapp.com/symbols/superset-of/ ∵ :因為符號 ∴ :所以符號(therefore) ∼ :波浪號或近似等於符號,代表兩個值之間的近似或相似性。 → :在邏輯和數學中,通常表示蘊含關係。蘊含的邏輯運算,當前件為真時,則後件必須為真。(implies) ↔ :表示兩個陳述之間的互相關係或等價關係。代表著 雙蘊含的邏輯運算(若且唯若 ) ,當兩個運算元具有相同的真假值時,結果為真。(iff, if and only if) ∨ :OR 運算符號,代表或運算,當至少有一個運算元為 true 時,其結果為 true。 ∧ :AND 運算符號,代表且運算,僅當兩個運算元都為 true 時,其結果為 true。 ¬ : 否定運算符號, 當運算元為 false 時,結果為 true;反之亦然。 https://tw.piliapp.com/symbols/because-therefore/ https://tw.piliapp.com/symbols/conjunction/ Summation and Produ...

AI偏見與公關危機

  【 Google Gemini】Gemini AI不懂歷史 Google叫停生成人像圖片 https://inews.hket.com/article/3711528/%E3%80%90%20Google%20Gemini%E3%80%91Gemini%20AI%E4%B8%8D%E6%87%82%E6%AD%B7%E5%8F%B2%E3%80%80Google%E5%8F%AB%E5%81%9C%E7%94%9F%E6%88%90%E4%BA%BA%E5%83%8F%E5%9C%96%E7%89%87 【Google 公關災難】Gemini AI 生了一堆納粹圖,CEO:完全不能容忍,我們錯了 https://techorange.com/2024/03/01/gemini-ai-pr-disaster-google-ceo-says-we-screwed-up/ 谷歌AI離譜錯誤 美國父華盛頓變「黑人」 https://www.tkww.hk/epaper/view/newsDetail/1762923635158421504.html 谷歌Gemini:太政治正確而挨轟!AI聊天機器人變「覺青」,是偶然或人為的? https://tw.news.yahoo.com/%E8%B0%B7%E6%AD%8Cgemini-%E5%A4%AA%E6%94%BF%E6%B2%BB%E6%AD%A3%E7%A2%BA%E8%80%8C%E6%8C%A8%E8%BD%9F-ai%E8%81%8A%E5%A4%A9%E6%A9%9F%E5%99%A8%E4%BA%BA%E8%AE%8A-%E8%A6%BA%E9%9D%92-%E6%98%AF%E5%81%B6%E7%84%B6%E6%88%96%E4%BA%BA%E7%82%BA%E7%9A%84-093001995.html Gemini多元化矯枉過正,遭Google暫停人物圖像生成功能 https://www.ithome.com.tw/news/161434 AI 很會說話也很會亂講話!從台北捷運公關危機,看智能客服的挑戰 來源:https://www.managertoday.com.tw/columns/view/69785?utm_source=copyshare  ©經理人 台北捷運AI客服...

經濟學報告參考資料

https://www.hakka.gov.tw/chhakka/app/data/view?module=newsClarification&id=6&serno=44933 客庄券 109 年(2020)成效統計 根據客委會澄清稿: 發放總份數:22萬9,572份 票面金額:每人800元 累積消費金額:約新台幣 1.8 億元 推估產值:依交通部觀光局旅遊消費模型,推估整體效益約 10 億元 外溢效益:平均每位使用者可帶動 1.8 人同行消費,主要為異地使用 https://tw.news.yahoo.com/%E5%AE%A2%E5%BA%84%E5%88%B8%E4%BD%BF%E7%94%A8%E5%B7%B2%E9%80%BE%E9%A0%90%E7%AE%97-%E5%AE%A2%E5%A7%94%E6%9C%83-%E6%B6%88%E8%B2%BB%E6%AC%8A%E7%9B%8A%E4%B8%8D%E5%8F%97%E6%90%8D-114742062.html 客庄券使用超預算(2020年末) 根據中央社報導: 發放名額:28萬份,每人最多800元 累計消費金額:截至12月20日約 1億5973萬元 執行率:達 121.01%,超過原預算 1.32 億元 補充預算來源:由疫情停擺的其他獎補助預算移緩濟急 https://www.chinatimes.com/realtimenews/20220310002576-260405?chdtv 客庄券 2.0(2022)使用率統計 根據中時新聞報導: 發放券數:40萬601份 已領券數:36萬2296份(領券率約 90.44%) 已用券數:18萬6466份(使用率僅約 51.47%) 預估產值:約新台幣 16 億元 使用場域:限於11縣市、70個客家文化重點發展區的2800多家店家 觀光統計年報(全) https://admin.taiwan.net.tw/businessinfo/FilePage?a=14034 交通部觀光署觀光統計資料庫 https://stat.taiwan.net.tw/statistics?action=month

AZ-305_Azure Solution Architect學習筆記_Azure identity, access, and security

圖片
  Microsoft Entra ID Microsoft Entra ID is a cloud-based identity and access management service that enables secure sign-in and access to Microsoft cloud applications and custom cloud apps. It integrates with on-premises Active Directory for hybrid environments. Microsoft Entra ID 是一項基於雲端的身分識別與存取管理服務,能夠安全地登入並存取 Microsoft 雲端應用程式及自訂的雲端應用程式。它可與本地端 Active Directory 整合,適用於混合環境。 Active Directory in On-Premises Environments 本地端環境中的 Active Directory On-premises Active Directory running on Windows Server provides identity and access management, which is managed internally by the organization. It complements Microsoft Entra ID for global availability. 運行於 Windows Server 的本地端 Active Directory 提供身分識別與存取管理,由組織內部管理。它與 Microsoft Entra ID 互補,以實現全球可用性。 Securing Identities with Microsoft Entra ID 使用 Microsoft Entra ID 保護身份安全 Microsoft Entra ID detects suspicious sign-in attempts from unknown devices or locations, enhancing security beyond on-premises Active Directory capabilities. Microsoft Entra ID...