상세 컨텐츠

본문 제목

[펌] sql 데이터베이스 메일 구성

SQL

by happynuri 2007. 12. 28. 17:18

본문

/*

-- Contents --

-- Introduction to SQL Service Broker --

SQL Service Broker (SSB) is a powerful asynchronous queuing and messaging infrastructure available in all editions of SQL Server 2005. It provides tools to handle a wide variety of tasks, from simple workload queuing all the way to advanced message routing between remote servers.

SSB in SQL Server is a paradigm shift; a change for the better and a new way to solve a whole host of difficult problems. Yet SSB has not been widely adopted yet. Whether this is due to time constraints placed on developers who have better things to do than learn Yet Another New Thing or the perceived difficulty of picking up the skills required, I am not certain. What I do know is that SSB is incredibly useful, and really not all that hard to pick up.

Although fairly easy to learn, SSB is still relatively big, and a complex topic--you really can do quite a few different things with it. So I've broken this workbench into a three-part series. In this, part one of the workbench, we'll cover the basics: The Service Broker object types, how to create them, and how to set up the simplest of queues. At the end of this workbench you'll have a solid foundation for designing basic asynchronous services--not to mention, for continuing in this workbench series.

So without further ado, let's get started. The Broker awaits!

*/

--To begin with, we'll create a database to work in.

CREATE DATABASE Simple_Talk_SSB
GO

USE Simple_Talk_SSB
GO



원본 글 입니다.

http://www.simple-talk.com/sql/learn-sql-server/service-broker-foundations-workbench/#first

관련글 더보기

댓글 영역