又一個海量的icons 下載
前往下載
閱讀全文...
Happy coding.
The secret to creativity is knowing how to hide your sources.— Albert Einstein
Good artists copy, great artists steal. – Pablo Picasso
2012年11月16日 星期五
2012年11月15日 星期四
如何查詢SQL Server目前連線數
有朋友問說,要如何查詢 SQL Server 目前的連線數,當下直覺這應該是屬於master DB內會提供的資訊,於是上網找找資料,將試出來的語法記錄備忘一下。
查詢目前連線數:
查詢目前連線明細:
Reference
sys.sysperfinfo
sys.dm_exec_connections
sys.dm_exec_sessions
閱讀全文...
查詢目前連線數:
USE master
SELECT cntr_value AS User_Connections FROM sys.sysperfinfo AS sp
WHERE sp.object_name='SQLServer:General Statistics'
AND sp.counter_name='User Connections'
查詢目前連線明細:
USE master
SELECT c.session_id, c.connect_time, s.login_time, c.client_net_address, s.login_name, s.status
FROM sys.dm_exec_connections c left join sys.dm_exec_sessions s on c.session_id = s.session_id
Reference
sys.sysperfinfo
sys.dm_exec_connections
sys.dm_exec_sessions
閱讀全文...
標籤:
程式開發,
SQL Server
2012年11月13日 星期二
解決 ERROR C2440: 'initializing' : cannot convert from 'char *' to 'ATL::CStringT'
會發生 ERROR C2440: 'initializing' : cannot convert from 'char *' to 'ATL::CStringT' 的問題,是因為專案中的字元集設定為 UNICODE ,在編譯時,Preprocessor 在處理字串時,會自動用寬字元相關函式來處理,當窄寬互相混合處理時就會發生此錯誤。
解決方法:
專案 | 專案屬性 | 組態屬性 | 一般 | 字元集 此改選用 使用多位元組字元集
閱讀全文...
解決方法:
專案 | 專案屬性 | 組態屬性 | 一般 | 字元集 此改選用 使用多位元組字元集
閱讀全文...
2012年11月9日 星期五
解決 ERROR C2011: 'sockaddr' : 'struct' type redefinition
C/C++ 常讓人困擾的問題,header file先後順序,有時會讓人抓狂.....
要解決 error C2011: 'sockaddr' : 'struct' type redefinition 這問題,記得
the solution which always works is to include winsock2.h before windows.h
閱讀全文...
要解決 error C2011: 'sockaddr' : 'struct' type redefinition 這問題,記得
the solution which always works is to include winsock2.h before windows.h
閱讀全文...
2012年11月8日 星期四
2012年11月6日 星期二
2012年11月5日 星期一
限時8天 註冊Windows Phone開發賬號只需8美元
根據 微軟官方部落格 宣布
Windows Phone 8開發者平台正式上線,包括一個SDK軟件開發工具包、一個全新的Dev Center開發人員中心,開發人員現在就可以向Dev Center提交WindowsPhone 8應用程序。
Windows Phone 8正式發佈,Windows Phone手機也即將到來。為了鼓勵更多的開發人員參與Windows Phone 8應用程序的開發,Windows Phone團隊表示,在接下來的8天裡,個人開發人員僅需8美元就可以註冊一個Dev Center賬戶(節省92%的費用)。
提醒開發人員的是,此次優惠僅有8天(到11/7),註冊時系統仍會收取99美元費用,不過微軟會在30天至45天內退還91美元。
前往 Windows Phone Dev Center
閱讀全文...
Windows Phone 8開發者平台正式上線,包括一個SDK軟件開發工具包、一個全新的Dev Center開發人員中心,開發人員現在就可以向Dev Center提交WindowsPhone 8應用程序。
Windows Phone 8正式發佈,Windows Phone手機也即將到來。為了鼓勵更多的開發人員參與Windows Phone 8應用程序的開發,Windows Phone團隊表示,在接下來的8天裡,個人開發人員僅需8美元就可以註冊一個Dev Center賬戶(節省92%的費用)。
提醒開發人員的是,此次優惠僅有8天(到11/7),註冊時系統仍會收取99美元費用,不過微軟會在30天至45天內退還91美元。
前往 Windows Phone Dev Center
閱讀全文...
2012年11月4日 星期日
全家便利商店-KRE-O變形金剛:斯偉伯
斯偉伯(Sideswipe),博派的戰鬥指導
是變形金剛中相當活躍的角色之一。在戰鬥的技巧上,和雙胞胎兄弟太陽紋不相上下。
在個性上跟雙胞胎兄弟太陽紋有著截然不同的個性,他不像太陽紋那樣的冷酷無情。不過在逼不得已的時候會使出一些卑劣的手段來。
其他翻譯名稱:側掃、橫砲
閱讀全文...
2012年11月1日 星期四
OLE DB Provider for SQL Server
備份一下,不然每次要設定都要找半天
For Standard security:
For Trusted Connection security (Microsoft Windows NT integrated security):
If you want to connect to a "Named Instance" (SQL Server 2000), you must to specify Data Source=Servere Name\Instance Name like in the following example:
If you want to connect with a SQL Server running on the same computer, you must specify the keyword (local) in the Data Source like in the following example:
To connect to SQL Server running on a remote computer (via an IP address):
閱讀全文...
For Standard security:
connectStr = _T("Provider=sqloledb;Data Source=MyServerName;"
"Initial Catalog=MyDatabaseName;"
"User Id=MyUsername;Password=MyPassword;");
For Trusted Connection security (Microsoft Windows NT integrated security):
connectStr = _T("Provider=sqloledb;Data Source=MyServerName;"
"Initial Catalog=MyDatabaseName;"
"Integrated Security=SSPI;");
If you want to connect to a "Named Instance" (SQL Server 2000), you must to specify Data Source=Servere Name\Instance Name like in the following example:
connectStr = _T("Provider=sqloledb;Data Source=MyServerName\MyInstanceName;"
"Initial Catalog=MyDatabaseName;User Id=MyUsername;Password=MyPassword;");
If you want to connect with a SQL Server running on the same computer, you must specify the keyword (local) in the Data Source like in the following example:
connectStr = _T("Provider=sqloledb;Data Source=(local);"
"Initial Catalog=myDatabaseName;"
"User ID=myUsername;Password=myPassword;");
To connect to SQL Server running on a remote computer (via an IP address):
connectStr = _T("Provider=sqloledb;Network Library=DBMSSOCN;"
"Data Source=10.200.3.18,1433;"
"Initial Catalog=MyDatabaseName;User ID=MyUsername;"
"Password=MyPassword;");
閱讀全文...
標籤:
SQL Server
訂閱:
文章 (Atom)