SQL Server for cloud computing - Lightweight DB
SQL Server for cloud computing - Lightweight DB
2011.02.28* Cassandra 카산드라: Facebook, Twitter 의 기간 Cloud DB 역할을 하면서 유명해진 Apache 제단 솔루션 http://cassandra.apache.org/ * Drizzle MySQL 이전 개발자들이 만들었다 함 https://launchpad.net/drizzle * Hbase Hadoop 기반의 Apache 제단 분산 DB http://hbase.apache.org/ * CouchDB 중간형 Hybrid DB 수준으로 Lightweight의 RESTful 프로그램 접근이 용이한 제공이 특징 http://couchdb.apache.org/ * MongoDB 중간형 Hybrid DB 로 MySQL의 컨셉과 같이하며, Document-oriented DB라는 점이 특이하고..
MSSQL 쿼리로 테이블 목록보는 방법
MSSQL 쿼리로 테이블 목록보는 방법
2008.06.20MSSQL 에서는 테이블 목록을 보기 위해서 다음과 같은 쿼리를 실행하거나 저장프로시저를 실행해 주어야 한다. 1. sp_tables 2. select * from information_schema.tables 3. select name from sysobjects where type='U' MySQL 이나 Oracle이라면 DESC 이렇게 입력하면 될텐데... 명령어는 왜 다들 다르게 만드는건지 원 - _-..
MS SQL Server 2008 CTP July
MS SQL Server 2008 CTP July
2007.11.16지난 7월에 나온 SQL Server 2008 CTP 2005에서 얼마나 더 바뀐건지는 아직 자세히 보지 않았지만 BI를 향상시키는 방향으로 기능과 기술이 추가되어있지 않을까 생각한다. SQL Server 2008 Improvement Pillars With SQL Server 2008 July CTP release, customers can understand and get hands-on experience with the new capabilities that, with the release of SQL Server 2008, will help them support their mission-critical platform and enable pervasive insight across the en..
Ruby, ADO 이용한 SQL Server 연결
Ruby, ADO 이용한 SQL Server 연결
2007.05.07RUBY로 win32 OLE 를 이용해 ADO 연결하는 방법을 아래 소개합니다. 출처 : http://rubyonwindows.blogspot.com/search/label/sqlserver require 'win32ole' class SqlServer # This class manages database connection and queries attr_accessor :connection, :data, :fields def initialize @connection = nil @data = nil end def open # Open ADO connection to the SQL Server database connection_string = "Provider=SQLOLEDB.1;" connection_..