這篇來看看如何建立模型
[PowerBI] Get Data from Web
透過PowerBI輕鬆抓取網頁資料
[C#] Manager your Sqlconnection
解決SQL Server暫時性連線錯誤問題,現在retry有更簡單的做法。
[SQL SERVER]Avoid use not operator in where clause
- 915
- 0
- SQL_SERVER
- 2020-12-31
大部分情況,where 中使用 not 操作都無法使用索引搜尋,
都將使用table / index 掃描取代資料存取方式
[SQL SERVER]What Number of Rows Read
- 1061
- 0
- SQL_SERVER
執行計畫中有一個Number of Rows Read資訊,這篇我來簡單介紹一下
[SQL Server] Querying Data in a Graph Database
- 808
- 0
- SQL Server 2017
這篇來看看比較複雜的多對多查詢
[SQL Server] Let's start SQL Server Graph Database
- 1810
- 0
- SQL Server 2017
SQL 2017開始提供Graph database,主要用來解釋複雜的多對多(M:N)關聯性,
好比社群複雜的階層資料,而且已經和TSQL(called MATCH())完全整合
[NetCore] MARS in NetCore
NetCore中安裝System.Data.SqlClient4.0.0以上版本就可支援MARS,
簡單測試一下MARS在NetCore中的效能影響
[SQL Server] Let's clear to storage index of (n)varchar in sql server
- 976
- 0
- SQL_SERVER
- 2018-07-18
讓我們一起來瞧瞧,當我在(n)varchar類型欄位建立非叢集索引,SQL Server如何儲存
[SQL SERVER]Enhancement page allocations of user database
- 746
- 0
- SQL_SERVER
- 2020-12-31
以前Tempdb我都會啟用TF 1117,1118 改善資源競爭問題
[netCore] TSQL analysis
預先進行TSQL analysis,可以省下 code review 不少時間。
[SQL SERVER]hirearchy method
- 2759
- 0
- SQL_SERVER
樹狀(hierarchy)形結構資料,真實世界中很常見,SQL2005大多都使用CTE遞迴來達到目的,EF6開始也有支援該資料類型。
[Kafka] Kafka Cluster best practices
Eventbus Architecture是我個人喜愛的架構,而Kafka是我這架構中的核心(主角)
[netCore] EF Core Database Migration
自從使用EF framework 所提供的migration,並搭配CI Server快速建立intrgration test的DB,
又方便CD到各種環境,我得老實說已經回不去了。
[netCore] how to improvement performance of Bulk in Dapper
Dapper雖然有提供Delete、Update、Insert批次處理,但我個人卻很少直接呼叫該函式,
因為這不是我所想要的資料批次處理效能
[Jenkins] setup SSH between jenkins and github
目前公司都透過SSH來連接內部git repository,我個人在windows上透過putty建立key,
最後還得需要透過新增GIT_SSH環境變數,才讓VS2017記住SSH憑證,
這篇紀錄一下,如何讓jenkins使用SSH存取public github repository
[SQL Server] Tiny format's problem
- 682
- 0
- SQL_SERVER
- 2020-12-31
SQL2012推出format function,這項加強,對於開發人員,在處理跨國系統日期和時間顯示相當方便。
[SQL Server] Monitor and Alert deadlock event
- 1688
- 0
- SQL_SERVER
SQL Server 2012預設已經使用Extended Event來監控deadlock,這篇來看看如何實現Alert
[SQL Server] sync logins and jobs between primary and replicas in AGs
- 700
- 0
- SQL Server 2017
針對logins和agent jobs在不同SQL Server Instance同步,
我以前都是透過SSIS來處理,但我真心覺得,MS預設應該在SSMS中新增同步物件功能。
[SQL Server] Setup Data Collection
- 1008
- 0
- SQL Server 2017
- 2018-04-25
透過SSMS安裝和設定Data Collection一點都不難,基本上,SQL Agent service的account權限注意一下就好,
但有時候你還是不能鐵齒。