제부도

분류없음 2006/09/23 00:03
교통정보 - 대중교통 이용
서울근교나 경기도 지역에서는 지하철이나 버스를 타고 수원(수원역 애경백화점 앞)이나 금정(금정역 건너편 버스 정류소)에와서 버스를 타고 제부도로 가는 방법이 있다. 요금은 1400원이다. 제부도 매표소 앞에 내려서 다시 마을 버스를 타고 제부도 안으로 들어간다. 입장료 1000원과 차비 1000원을 내야한다.
/버스
구분배차간격예상 소요시간
금정 ↔ 제부도05:45~00:05
15분 간격
약 1시간 30분
수원 ↔ 제부도
버스번호(400-1, 999)
04:50~00:30
10분간격
약 1시간
수원 ↔ 제부도
버스번호(490)
07:00~00:05
30분 간격
약 1시간
/시내교통
구분노선예상 소요시간
서신 → 제부도06:30 ~ 22:00
1일 16회(1시간 간격)
휴일은 30분 간격
약 40분 소요

년월 선택      
1
22:43-08:41
09:28-20:44
23:23-22:47
2
23:23-22:47
3
00:43-23:53
4
03:14-00:35
5
03:14-00:35
04:50-13:38
16:14-01:14
6
16:14-01:14
05:52-13:56
17:32-01:53
7
17:32-01:53
06:38-14:26
18:32-02:32
8
18:32-02:32
07:19-14:59
19:23-03:11
9
19:23-03:11
07:55-15:35
20:08-03:53
10
20:08-03:53
08:28-16:13
20:52-04:35
11
20:52-04:35
08:56-16:53
21:31-05:20
12
21:31-05:20
09:23-17:37
22:08-06:11
13
22:08-06:11
09:41-18:29
22:40-07:26
14
22:40-07:26
09:47-19:44
23:08-22:10
15
23:08-22:10
23:19-3일후
16
하루종일
계속됩니다
17
하루종일
계속됩니다
18
3일전-00:50
03:47-01:14
19
03:47-01:14
05:01-14:11
16:20-01:38
20
16:20-01:38
05:47-14:17
17:26-02:05
21
17:26-02:05
06:20-14:35
18:14-02:32
22
18:14-02:32
06:49-14:56
18:52-03:01
23
18:52-03:01
07:13-15:20
19:25-03:29
24
19:25-03:29
07:34-15:43
19:55-03:59
25
19:55-03:59
07:53-16:05
20:23-04:28
26
20:23-04:28
08:11-16:32
20:50-05:01
27
20:50-05:01
08:29-17:02
21:19-05:40
28
21:19-05:40
08:47-17:43
21:47-06:37
29
21:47-06:37
08:56-18:41
22:20-20:14
30
22:20-20:14
22:56-22:29
Posted by blushine
출처 : http://www.sql-server-performance.com/linked_server.asp

SQL Server Link Server Performance Tips




Distributed transactions, over linked servers, incur much more overhead than transactions occurring on the same server. This is due, in part, to the fact that more than one server is involved in the transaction and more network traffic is generated. Because of the overhead involved in distributed transactions, they should be avoided when they can be avoided. In other words, only use distributed transactions when there are no alternatives available to accomplish your goal. [6.5, 7.0, 2000] Updated 8-7-2006

*****

If you need to access remote data from within a query, it is more efficient to perform a linked server query (after having created a linked server) rather than using an ad hoc query that uses the OPENROWSET or the OPENDATASOURCE functions. [7.0, 2000] Updated 8-7-2006

*****

By default, when you run a distributed query using a linked server, the query is processed locally. This may or may not be efficient, depending on how much data must be sent from the remote server to the local server for processing. Sometimes it is more efficient to pass through the query so that it is run on the remote server. This way, if the query must process many rows, it can process them on the remote server, and only return to the local server the results of the query. The OPENQUERY function is used to specify that a distributed query be processed on the remote server instead of the local server. [7.0, 2000] Updated 8-7-2006

*****

When running distributed queries on a linked server, if the linked server has the same character set and sort order (collation) as the local SQL Server, then you can reduce overhead and boost performance if you set the SP_SERVEROPTION "collation compatible" option to true. What this setting does is tell SQL Server to assume that all columns and character sets on the remote server are compatible with the local server. This same option can also be turned on for a linked server using Enterprise Manager

If this option is not selected, then the distributed query being executed on the remote server must return the entire table to the local server in order for the WHERE clause to be applied. As you can imagine, this could potentially return a lot of unnecessary data over the network, slowing it down.

If the option is selected, (which is always recommended if the collations are the same on both servers), then the WHERE clause is applied on the remote server. This, of course, means that much less data is transmitted over the network, often greatly speeding up the distributed query. [7.0, 2000] Updated 8-7-2006

*****

If you run many distributed queries through linked servers, you will want to ensure that the connection between the linked servers is fast. Ideally, the linked servers should be connected to the same switch, or at least be in the same subnet. [7.0, 2000] Updated 8-7-2006

*****

In SQL Server 2000, when creating a linked server, in the Server Options tab, there is an option called Connection Timeout and Query Timeout. The default setting for both of these options is 0, which means that there is no timeout value for either of these options. This means that long running remote queries will not time out.

If you suspect that some of the remote queries that will be run may take "too long" and unnecessarily use up too many server and network resources, you can enter a time in seconds that you are willing to wait for a remote query to run, but if the query takes longer than the amount you have specified, then it will be aborted. You can use this feature to ensure that no long running queries take up more resources than they should. [2000] Updated 8-7-2006

*****

When you create a link between two SQL Servers, SQL Server does its best to perform as much work as it can on the remote server. This way, less data has to be moved from the remote server to the local server, helping to reduce overhead and boosting performance. But for some particular operations, they have to be performed on the local server, not the remote server. Some examples of locally performed operations include:

  • Data conversion operations
  • Queries that use the bit, timestamp, or uniqueidentifier data types
  • Queries that use the TOP clause
  • INSERTS, UPDATES, or DELETES

Because of this, you may want to try to avoid performing any of the above operations using a remote linked server.

If you are running a remote query against a linked server, and you want to find out which parts are performing on the remote server, and which are performing on the local server, run the query from Query Analyzer and take a look at the query plan. It will tell you what part of your query is running where. It should be your goal to create code that runs mostly on the remote server, not the local server. [7.0, 2000] Updated 8-7-2006

Posted by blushine




가방을 샀으니 인라인만 사면타면 되겟군-ㅅ-;;

Posted by blushine
http://book.naver.com/bookdb/book_detail.php?bid=2484837


좋기는 한데..;;
흠..언제 2005 써보나..;;
Posted by blushine

전동칫솔

NO지름NoGain 2006/09/05 22:04
 


브라운 Oral-b Vitality pro white 전동칫솔 셋트 [D12.013W+EB18-2]


제품 사양

- 모델명 : Vitality pro white
- 정격전압 : 220V 충전식
- 제품구성 : 제품 본체 1개, 소형 충전기 1개, 칫솔모 총3개, 제품설명서&품질보증서
- 원산지 : 독일
- 제조원 : 브라운

제품 특징
- 분당 7,600회 초고속 좌우회전
- 마이크로폼 기능 : 치약을 거품상태로 침투시킴
- 생활방수
- 소형 충전기
- 프로 브라이트 칫솔모 총 3개



AS안내

- 대우전자 서비스 1588-1588 (가까운 대우전자 서비스센터에서 가능합니다)

Posted by blushine