XMLHttpRequest Level 2

ITWeb/스크랩 2008. 3. 21. 18:04

ref. http://www.w3.org/TR/2008/WD-XMLHttpRequest2-20080225/

w3c 에서 2월 25일에 올라온 겁니다.

이건 기본적으로 필요로 하는 환경이 DOM2Event, DOM3Core, HTML5 에서 정상 작동 합니다.
못보던 method 들도 있고 cross-site access request 에 대해서도 지원이 되는듯 하내요..
참고. http://www.w3.org/TR/access-control/

그리고 예전에는 status 를 계속 확인해야 했었지만.. 지금은.. event 를 지원해 주고 있어서 코딩 하기 좀더 쉬워진 느낌 이내요.

원문을 저도 다 읽어 보지는 못하고 그냥 훑어 본거라.. 관심 있으신 분들은.. 한번 읽어 보세요.. ^^*

T.G.I.F

:

인생 역전 로또 사러 갑시다

Legacy 2008. 3. 21. 17:51

인생 뭐 있습니까..
한방 인생 역전.. 자자 로또 사러 갑시다.. ^^*

1 30 32 33 35 41
3 11 23 25 38 42
3 7 23 29 39 45
3 14 17 24 33 42
5 6 17 38 42 44
4 6 14 20 29 43
8 14 17 23 27 38

아무 규칙 없이 그냥 랜덤하게 뽑은 거랍니다.. ㅎㅎ
뭐.. 운칠기삼 아니겠어요.. ㅋ 맞는 표현인가.. ^^;

:

당신의 연봉은?

ITWeb/스크랩 2008. 3. 13. 13:20
Channy's Blog 에서 퍼온 이미지 입니다.
ref. http://channy.tistory.com/238




당신은 포털과 같은 인터넷 업체에서 일을 하십니까?
그럼 당신의 연봉은.. 얼마나 되십니까?

흠.. 저는 네이버 평균 보다 적고 다음 평균 보다는 많내요..
연봉 = 몸값 = 능력 이런 동등의 관계가 성립이 되는 걸까요?

몸집을 키우지 말고 내실을 다지는게 회사나 정말 성실하고 실력 있는 직원들에게 좋은게 아닌가 싶기도 하내요..
몸집 키우기에 동참하는 거품맨들과 정말 성실히 일하는 직원들 등쳐먹는 인간들은.. 언넝 반성해 주세요..
:

Lina's sandwich

Legacy 2008. 3. 13. 09:59

삼성동 코엑스에 있는 리나's 샌드위치
이거 핸드폰으로 찍은게 벌써 한달 전이내요... ㅡㅡ^

이제야 사진을 올리다뉘.. 퍽!!

P080214002    P080214001 






먹음직 스럽죠.. ^^*

저는 아주 배고플때 먹어서 인지 정말 맛있었답니다.

:

[펌] 9. Tuning Distributed Queries

ITWeb/스크랩 2008. 3. 11. 17:28

ref. http://download.oracle.com/docs/cd/A58617_01/server.804/a58246/distrib.htm

remote and distributed query 에 대한 성능 정보를 찾다가 oracle tuning 에서 이런게 있길래 퍼왔습니다.
^^*

Summary: Optimizing Performance of Distributed Queries

You can improve performance of distributed queries in several ways:

  • Choose the best SQL statement.

    In many cases there are several SQL statements which can achieve the same result. If all tables are on the same database, the difference in performance between these SQL statements might be minimal; but if the tables are located on different databases, the difference in performance might be bigger.

  • Use cost-based optimization.

    Cost-based optimization can use indexes on remote tables, considers more execution plans than rule-based optimization, and generally gives better results. With cost-based optimization performance of distributed queries is generally satisfactory. Only in rare occasions is it necessary to change SQL statements, create views, or use procedural code.

  • Use views.

    In some situations, views can be used to improve performance of distributed queries; for example:

    • to join several remote tables on the remote database
    • to send a different table through the network
  • Use procedural code.

    In some rare occasions it can be more efficient to replace a distributed query by procedural code, such as a PL/SQL procedure or a precompiler program. Note that this option is mentioned here only for completeness, not because it is often needed.

: