[DB]/MSSQL (2) 썸네일형 리스트형 MSSQL 프로시저 검색 php 같은경우 에디트플러스에서 파일 전체 검색 (알트 ,s , i 순차입력) 으로 earning_index 를 검색하고db 같은경우 --내장 프로시저 검색 SELECT * FROM sysobjects WHERE id IN ( SELECT id FROM syscomments WHERE text LIKE '%검색할 단어%') 이런식으로 검색하면 해당단어가 포함된 프로시저를 모두 찾아주어서 빠르게 분석가능하다 MSSQL Bulk Insert http://archive.msdn.microsoft.com/LinqEntityDataReader static int SendOrders(int totalToSend) { using (SqlConnection con = new SqlConnection(connectionString)) { con.Open(); using (SqlTransaction tran = con.BeginTransaction()) { var newOrders = from i in Enumerable.Range(0, totalToSend) select new Order { customer_name = "Customer " + i % 100, quantity = i % 9, order_id = i, order_entry_date = D.. 이전 1 다음