MySQL資料庫sql語句調優MySQL索引設計原則:索引列一般為where子句中的列或串連字句中的列盡量不對基數小的列做索引,如性別列儘可能使用短索引:如果對字元列索引盡量指定最小長度。(short Keys are better,Integer best)create index cityname on city(city(10));複合索引首碼特性,索引的順序很重要。key(a,b,c)聯合索引:可以走索引的組合:key(a),key(a,b
MySQL 中文insert報錯Incorrect string value:序言:中文錄入失敗,報錯:Incorrect string value: '\xCC\xEC\xB2\xC5',如下所示:mysql> set names utf8;Query OK, 0 rows affected (0.00 sec)mysql> insert into t select 2 as a ,'天才' as b;ERROR 1366 (HY000): Incorrect string
Linux下Redis的安裝使用,linuxredis1. Linux下Redis的安裝使用官方下載:http://redis.io/download 可以根據需要下載不同版本下載,解壓和安裝:$ wgethttp://download.redis.io/releases/redis-2.6.17.tar.gz$ tar xzf redis-2.6.17.tar.gz$ cd redis-2.6.17$
Timeout expired. The timeout period elapsed prior to completion of the operation or the server...,elapsedserver..問題:最近程式總會拋出如下異常:An exception of type'System.Data.SqlClient.SqlException' occurred and was caught.----------------------------------------
[mysql]建立資料庫並制定編碼,mysql編碼 現在用orm比較多,很多mysql表啊都不用自己建立,但是資料庫還是要自己建立,記錄下sql, 備忘。CREATE DATABASE `mydb` CHARACTER SET utf8 COLLATE utf8_general_ci;GRANT ALL ON `mydb`.* TO `username`@localhost IDENTIFIED BY 'password';FLUSH PRIVILEGES; 聲明:
Oracle 11gR2上遇到blocking txn id for DDL等待事件,11gr2txn本文是原創文章,轉載請註明出處:http://blog.csdn.net/msdnchina/article/details/44726875 在最近處理的一個案例(11.2.0.4版本的oracle db)中,遇到了blocking txn id for DDL 這個等待事件。下面來說一下當時的操作:create index idx_tab_1 on table_name
資料庫預存程序(Procedure),預存程序procedure 預存程序的優點:預存程序的種類:系統預存程序 使用者自訂預存程序擴充預存程序預存程序的格式:-- Template generated from Template Explorer using:-- Create Procedure (New Menu).SQL---- Use the Specify Values for Template Parameters -- command (Ctrl-Shift-M)
MS SQL Server,mssqlserver /* BY Dylan SUN*/In SQL server when you want to make an existing column to be auto-incremented.The following code is not working:ALTER TABLE [dwh].[ExchangeRate]ALTER COLUMN [ExchangeRateId] Int Identity(1, 1)What
Redis安裝部署,redis部署Redis是一種進階key-value資料庫。它跟memcached類似,不過資料可以持久化,而且支援的資料類型很豐富。有字串,鏈表,集 合和有序集合。支援在伺服器端計算集合的並,交和補集(difference)等,還支援多種排序功能。所以Redis也可以被看成是一個資料結構服務 器。Redis的所有資料都是儲存在記憶體中,然後不週期性通過非同步方式儲存到磁碟上(這稱為“半持久化模式”);也可以把每一次資料變化都寫入到一個append only