Oracle Database内での言語データのソート

Size: px
Start display at page:

Download "Oracle Database内での言語データのソート"

Transcription

1 Oracle Database

2 Oracle Database ISO/IEC INTERNATIONAL STRING ORDERING... 7 Oracle Database / GENERIC_BASELETTER Oracle Database 2 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

3 Oracle Database Mac Mc 1 1 a? B A C Oracle9i Database Oracle Database Oracle Database 3 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

4 ß 1 2 s ss ü ä ö ue ae oe 3 ch ll c l n cabalmente caballa cantina caña clamar curador chácara ch ll 3 æ ø å aa å ü y Zürich Aarfit Årbus Zyrardow 2 Èdit Edít Unicode ä b Oracle Database 4 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

5 : 7 : < : 7 : < : 17 : Oracle Database 5 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

6 3 4 Unicode (U8271) 4 6 (U6015) 3 4 (U962A) 3 8 (U90A6) SC TC SC TC (U738B) (U7389) (U6237) (U6236) (U9752) (U9751) 靚 (U9EC4) (U9EC3) (U4E00) (U4E8C) (U5F73) (U884C) (U6708) (U8089) Oracle Database 6 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

7 ISO/IEC INTERNATIONAL STRING ORDERING ISO delta Oracle Database Oracle Database 7 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

8 Oracle9i ASCII EBCDIC A Z ASCII EBCDIC ORDER BY C E b Ë â Oracle 5 UNICODE_ ASCII7 EBCDIC BIG5 GBK HKSCS AL16UTF16 US7ASCII WE8EBCDIC1047 ZHT16BIG5 ZHS16GBK ZHT16HKSCS Oracle Database 8 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

9 : Oracle6 2 a 10 5 A ä Ä B SQL NLSSORT RAW Oracle X Oracle 2 SPANISH XSPANISH Oracle Database 9 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

10 1. ll ch s' ' ss Oracle Database 10g ARABIC ARABIC_MATCH ARABIC_ABJ_SORT ARABIC_ABJ_MATCH AZERBAIJANI XAZERBAIJANI BENGALI BULGARIAN CANADIAN FRENCH CATALAN XCATALAN CROATIAN XCROATIAN CZECH XCZECH CZECH_PUNCTUATION XCZECH_PUNCTUATION DANISH XDANISH DUTCH XDUTCH EEC_EURO EEC_EUROPA3 ESTONIAN FINNISH FRENCH XFRENCH GERMAN XGERMAN GERMAN_DIN XGERMAN_DIN GREEK HEBREW HUNGARIAN XHUNGARIAN ICELANDIC INDONESIAN ITALIAN JAPANESE LATIN LATVIAN LITHUANIAN MALAY NORWEGIAN POLISH PUNCTUATION XPUNCTUATION ROMANIAN RUSSIAN SLOVAK XSLOVAK SLOVENIAN XSLOVENIAN SPANISH XSPANISH SWEDISH SWISS XSWISS THAI_DICTIONARY THAI_TELEPHONE TURKISH XTURKISH UKRAINIAN VIETNAMESE WEST_EUROPEAN XWEST_EUROPEAN ASCII EBCDIC 1 Oracle9i 1 Oracle ISO/IEC Unicode Oracle Database 10 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

11 : 1 a b 1 - multi-lingual multilingual 2. 2 : Ö O Ö O O : resume resumes 2 3 resume Resume résumé Résumé resumes 3 Oracle Database 3 Unicode 1 ä a Unicode Unicode Unicode 10 Unicode 3.2 Oracle Unicode Oracle Database 11 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

12 ISO/IEC 14651: International String Ordering GENERIC_M GENERIC_M GENERIC_M 1000 Unicode Oracle GENERIC_M ISO _M Oracle GENERIC_M CANADIAN_M DANISH_M FRENCH_M JAPANESE_M KOREAN_M SCHINESE_STROKE_M SCHINESE_PINYIN_M SCHINESE_RADICAL_M SPANISH_M TCHINESE_RADICAL_M TCHINESE_STROKE_M THAI_M Oracle XFRENCH FRENCH_M GENERIC_M ISO SQL NLS NLS NLS_SORT SQL Paramter type Syntax Default value String NLS SORT = { linguistic sort} Derived from NLS_LANGUAGE Oracle Database 12 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

13 Parameter scope Range of values Initialization Parameter, Environment Variable and ALTER SESSION or any valid linguistic sort definition name NLS_SORT NLS_LANGUAGE NLS_LANGUAGE NLS_SORT NLS_SORT ORDER BY 2 NLS_LANGUAGE Oracle NLS_SORT Oracle Database 10g NLS_LANGUAGE NLS_SORT AMERICAN ARABIC ASSAMESE AZERBAIJANI BANGLA BENGALI BRAZILIAN PORTUGUESE BULGARIAN CANADIAN FRENCH CATALAN CROATIAN CZECH DANISH DUTCH EGYPTIAN ENGLISH ESTONIAN FINNISH FRENCH GERMAN GERMAN DIN GREEK GUJARATI HEBREW HINDI HUNGARIAN ICELANDIC INDONESIAN ITALIAN ARABIC AZERBAIJANI BENGALI WEST_EUROPEAN BULGARIAN CANADIAN FRENCH CATALAN CROATIAN CZECH DANISH DUTCH ARABIC ESTONIAN FINNISH FRENCH GERMAN GERMAN GREEK HEBREW HUNGARIAN ICELANDIC INDONESIAN WEST_EUROPEAN Oracle Database 13 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

14 JAPANESE KANNADA KOREAN LATIN AMERICAN SPANISH LATVIAN LITHUANIAN MALAY MALAYALAM MARATHI MEXICAN SPANISH NORWEGIAN ORIYA POLISH PORTUGUESE PUNJABI ROMANIAN RUSSIAN SIMPLIFIED CHINESE SLOVAK SLOVENIAN SPANISH SWEDISH TAMIL TELUGU THAI TRADITIONAL CHINESE TURKISH UKRAINIAN VIETNAMESE SPANISH LATVIAN LITHUANIAN MALAY WEST_EUROPEAN NORWEGIAN POLISH WEST_EUROPEAN ROMANIAN RUSSIAN SLOVAK SLOVENIAN SPANISH SWEDISH THAI_DICTIONARY TURKISH UKRAINIAN VIETNAMESE Oracle NLS_LANG NLS_SORT NLS_SORT NLS_LANG <language> NLS_LANGUAGE NLS_SORT GENERIC_M 1. ALTER SESSION SET NLS_SORT=; SELECT product_name FROM product ORDER BY product_name; PRODUCT NAME Antenne Lcd aerial Oracle Database 14 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

15 Ähre ächzen 2. ALTER SESSION SET NLS_SORT= SWEDISH; SELECT product_name FROM product ORDER BY product_name; PRODUCT NAME aerial Antenne Lcd ächzen Ähre 3. GENERIC_M SELECT product_name FROM product ORDER BY NLSSORT (product_name, 'NLS_SORT=GENERIC_M'); PRODUCT NAME ächzen aerial Ähre Antenne Lcd SQL NLSSORT 4. ALTER SESSION SET NLS_SORT=GERMAN; SELECT product_name FROM product WHERE product_name > 'Antenne' ORDER BY product_name; PRODUCT NAME ächzen aerial ÄhLre Lcd Oracle Database 15 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

16 5. GERMAN SQL NLSSORT ALTER SESSION SET NLS_SORT=GERMAN; SELECT product_name FROM product WHERE NLSSORT (product_name) > NLSSORT ('Antenne') ORDER BY product_name; PRODUCT NAME Lcd SQL NLSSORT NLS_SORT NLS NLS_COMP Oracle8i Parameter type Syntax Default value Parameter scope Range of values String NLS_COMP = { ANSI} Initialization Parameter, Environment Variable and ALTER SESSION or ANSI 5. GERMAN ALTER SESSION SET NLS_SORT =GERMAN; ALTER SESSION SET NLS_COMP=ANSI; SELECT product_name FROM product WHERE product_name > 'Antenne' ORDER BY product_name; PRODUCT NAME Lcd : NLS_COMP NLS_SORT SQL WHERE ORDER BY START WITH IN/NOT IN BETWEEN CASE WHEN HAVING SQL NLSSORT Oracle Database 16 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

17 ORDER BY SELECT 3 1. CREATE INDEX french_index ON product (NLSSORT(product_name, 'NLS_SORT=FRENCH')); CREATE INDEX german_index ON product (NLSSORT(product_name, 'NLS_SORT=GERMAN')); NLS_SORT ORDER BY NLSSORT SQL NLS_SORT FRENCH french_index GERMAN german_index 2. GENERIC_M FRENCH_M ISO CREATE INDEX generic_index on product (NLSSORT(product_name, 'NLS_SORT=GENERIC_M'); NLS_SORT ORDER BY NLSSORT Oracle Database 17 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

18 DB_BLOCK_SIZE ORA-1450 maximum key length exceeded 2K 758 4K K K NLSSORT SQL LANG_COL NLS SORT NLS_SORT CREATE INDEX nls_index ON product (NLSSORT(product_name, 'NLS_SORT=' LANG_COL)); nls ORDER BY NLSSORT product_name, 'NLS_SORT=' LANG_COL CREATE INDEX german_index ON product (NLSSORT(product_name, 'NLS_SORT=GERMAN'), NLSSORT(company_name, 'NLS_SORT=GERMAN')); CREATE INDEX german_index ON product (model_number, NLSSORT(product_name, 'NLS_SORT=GERMAN'), NLSSORT(company_name, 'NLS_SORT=GERMAN')); 1 1. QUERY_REWRITE_ENABLED TRUE 2. QUERY_REWRITE_INTEGRITY=TRUSTED 3. COMPATIBLE Oracle Database 18 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

19 4. NLS_SORT 4 NLS_SORT CREATE NLSSORT 2 5. FIRST_ROWS FIRST_ROWS Oracle 9i Database Release 2 WHERE WHERE NLSSORT(column_name) IS NOT NULL column_name ORDER BY column_name ORDER BY column_name NOT NULL WHERE Oracle9i Release 2 PRODUCT GENERIC_M NLS_GENERIC ALTER SESSION SET QUERY_REWRITE_ENABLED=TRUE; ALTER SESSION SET QUERY_REWRITE_INTEGRITY=TRUSTED; CREATE INDEX NLS_GENERIC ON product (NLSSORT(product_name, 'NLS_SORT=GENERIC_M')); ALTER SESSION SET NLS_SORT=GENERIC_M; ALTER SESSION SET OPTIMIZER_MODE=FIRST_ROWS; SELECT * FROM product WHERE NLSSORT (product_name) IS NOT NULL - Not needed in Oracle9i Release 2 and onward ORDER BY product_name; /*+ index(table indexname) */ product_name NOT NULL WHERE Oracle9i Release 2 / SQL NLS_UPPER NLS_LOWER / Oracle Database 19 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

20 SELECT product_name FROM product WHERE NLS_UPPER(product_name, 'NLS_SORT = XGERMAN') = 'GROSSE'; PRODUCT NAME groβe Groβe GROSSE / CREATE INDEX case_insensitive_index ON product (NLS_UPPER(product_name)); NLS_UPPER () product_name SELECT * FROM PRODUCT WHERE NLS_UPPER(product_name) = 'GROSSE'; GENERIC_BASELETTER / SQL NLS_UPPER NLS_LOWER Oracle9i Release 2 GENERIC_BASELETTER GENERIC_BASELETTER / GENERIC_BASELETTER GENERIC_BASELETTER / ALTER SESSION SET NLS_COMP=ANSI; ALTER SESSION SET NLS_SORT=GENERIC_BASELETTER; SELECT * FROM PRODUCT WHERE PRODUCT_NAME = 'database'; DATABASE Database database dätäbase Oracle Database 10g / Oracle Database / / SQL / LOWER/UPPER GENERIC_BASELETTER Oracle Database 20 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

21 LOWER/UPPER GENERIC_BASELETTER / SQL / / NLS_SORT / Oracle _CI / : Oracle _AI NLS_SORT = <NLS_sort_name>[_AI _cl] : NLS_SORT = JAPANESE_M /* / Japanese_M */ NLS_SORT = FRENCH_M_AI /* / French_M */NLS_SORT = XGERMAN_CI /* / XGerman */NLS_SORT = _CI /* / */ NLS_SORT = _AI /* / */ 1: / LETTER LETTER ä a A Z Oracle Database 21 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

22 NLS_SORT ALTER SESSION SET NLS_SORT=_CI; NLS_SORT _CI _AI 1) 2) _CI 3) _AI A a ä Z A a a Z A ä ä Z / _CI 3. / _AI ä a a z 2: / NLS_SORT GERMAN LETTER NLS_SORT GERMAN GERMAN_CI GERMAN_AI GERMAN GERMAN_CI GERMAN_AI a a ä A A a ä ä A Z Z Z 1. ä Z 2. / GERMAN_AI ä a Oracle Database 22 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

23 ISO Unicode Oracle9i GUI Oracle Locale Builder Oracle Locale Builder Oracle Locale Builder Oracle Locale Builder Oracle Database Oracle Database 23 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

24 Oracle Oracle ISO International String Ordering Unicode Collation Standard UCA Oracle Oracle Oracle Locale Builder Oracle Locale Builder GUI Oracle Database 24 Oracle Corporation Sorting Your Linguistic Data inside an Oracle Database

25 Oracle Database : Simon Law : Sergiusz Wolicki, Claire Ho, Barry Trute Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. : : : Oracle Copyright 2004 Oracle Corporation All rights reserved.

VRA1145-A

VRA1145-A DVL-99 GRAPHICS Æ L ; æ with REV FWD TITLE PREV AUDIO SUBTITLE CHP/TIME A/B ANGLE RETURN DISC SIDE OPEN/ CLOSE MODE DISPLAY JOG 6 PROGRAM REPEAT PAUSE STOP REV PLAY FWD STEP NEXT 7 3 FL DIMMER RANDOM

More information

CMT-SE7

CMT-SE7 4-248-325-04(1) CMT-SE7 2003 Sony Corporation 2 3 4 * * 5 2 ALL 3 2 3 16:9 LB 2 * * * * 6 * * * * 7 16 * * * 8 1 3 AM 4 FM 3 2 4 1 2 9 1 2 5?/1 6 10 E Z E ee 11 6 V v 7 b 3 1 8 V v 9 4-9 B b 1 1 2 2 3

More information

CMT-SE9

CMT-SE9 4-247-824-03(2) CMT-SE9 2003 Sony Corporation 2 3 4 * * 5 2 ALL 3 2 3 16:9 LB 2 * * * * 6 * * * * 7 10 8 1 3 AM 4 1 2 FM 2 FM 75 9 3 4 MD DIGITAL OUT OPTICAL C 5 10 6 3 3 # # 11 12 7 VIDEO 9?/1 0 1 8 13

More information

キャラクタ・セットの移行に関するベスト・プラクティス

キャラクタ・セットの移行に関するベスト・プラクティス 2003 9 ... 3 Oracle Database 10g... 3... 3... 4 Unicode... 6 Unicode... 6... 7... 8... 8... 9... 9... 10... 10... 10... 11... 11 US7ASCII... 13... 14... 14 Export/Import... 14 CSALTER... 15 Export Import

More information

DV-60

DV-60 DV-60 2 DVD VCD CD SA-CD DVD-A 3 Q F A 4 Q D S Q S 5 Q A F 6 L 7 8 A A A 9 10 Q +_ +_ 11 Q C B D E A 12 A B C D E 13 14 F A G G H I H F G H I 15 M N O J L K 16 L K J 17 Q O N M A B C D K J I H G F E A

More information

DV-15取説

DV-15取説 Z DV-15 2 DVD VCD CD SACD MP3 DVD-A 3 Q Q F Q A D S Q F 4 Q A D S 5 Q S A F 6 L 7 8 9 10 +_ Q +_ 11 Q C B A E D 12 B A C D E 13 Q H F G I 14 F H I Q G F G G G 15 a b c d e y f g./ h L 16 A B C D E F G

More information

HTZ-363DV

HTZ-363DV DV IN/OUT HTZ-363DV 2 ALL 1 24 01 OPEN/CLOSE DVD/CD USB VOLUME STANDBY/ON 1 3 4 5 6 7 PLAY LIST 1 PLAY LIST 2 PLAY LIST 3 2 8 9 10 11 12 8 01 1 2 3 4 5 6 7 8 9 10 1 2 3 1 4 5 6 2 7 8 9 3 0 TUNE ST

More information

DV-SP504(Cover)(SN )

DV-SP504(Cover)(SN ) DV-SP504 2 3 4 5 6 7 8 9 10 001 001.mp3 (001.wma) 010.mp3 (010.wma) 011.mp3 (011.wma) 002 004 012.mp3 (012.wma) 020.mp3 (020.wma) 11 12 RETURN SETUP TOP MENU MENU CURSOR PUSH TO ENTER D DVD -AUDIO SACD

More information

DVR-530H

DVR-530H 12 DVR-530H 22 26 30 56 70 86 98 http://www3.pioneer.co.jp/support/ 2h00(01.00G) 3/207:00LP 1h00(01.00G) 1 3 60h30m SP 3/200:00SP 1h00(01.00G) 3/199:00SP 2h00m(4.7G) 3 7 2 3/266:00SP 1 NEW NEW NEW P.77

More information

DVR-555H

DVR-555H 12 DVR-555H 22 26 30 56 78 94 106 http://www3.pioneer.co.jp/support/ 2h00(01.00G) 3/207:00LP 1h00(01.00G) 1 3 60h30m SP 3/200:00SP 1h00(01.00G) 3/199:00SP 2h00m(4.7G) 3 7 2 3/266:00SP 1 NEW NEW NEW P.82

More information

FR-S9/S7GXDV(Co)(SN )

FR-S9/S7GXDV(Co)(SN ) FR-S9GXDV FR-S7GXDV 04.3.8, 8:59 AM 04.3.8, 9:00 AM 3 3 04.3.8, 9:00 AM 4 4 04.3.8, 9:00 AM 5 5 04.3.8, 9:00 AM 6 6 04.3.8, 9:00 AM 7 7 04.3.8, 9:00 AM 8 8 04.3.8, 9:0 AM 9 3 04.3.8, 9:0 AM 9 0 å å ø ø

More information

FR-SX7DV(Cover)(SN B)

FR-SX7DV(Cover)(SN B) FR-SX7DV FR-X7DV 03.0.3, 9:09 AM 03.0.3, 9:09 AM 3 3 03.0.3, 9:09 AM 4 4 03.0.3, 9:0 AM 5 5 03.0.3, 9:0 AM 6 03.0.3, 9:0 AM 6 7 03.0.3, 9:0 AM 7 8 8 03.0.3, 9: AM 9 3 03.0.3, 9: AM 9 0 å å ø ø ß ß 03.0.3,

More information

DVR-RT7H

DVR-RT7H DVR-RT7H http://www.pioneer.co.jp/support/ 9:3017:00 9:3012:0013:0017:00 12 20 24 28 54 68 74 90 108 2h00(01.00G) 3/207:00LP 1h00(01.00G) 1 3 60h30m SP 3/200:00SP 1h00(01.00G) 3/199:00SP 2h00m(4.7G) 3

More information

DV-SP502(Cover)(SN )

DV-SP502(Cover)(SN ) DV-SP502 1 04.8.5, 8:41 AM 2 2 04.8.5, 8:43 AM 3 3 04.8.5, 3:10 PM 4 4 04.8.5, 8:43 AM 5 5 04.8.5, 8:43 AM 6 6 04.8.5, 8:43 AM 7 7 04.8.5, 8:43 AM 8 8 04.8.5, 8:43 AM 9 9 04.8.5, 8:43 AM 10 10 04.8.5,

More information

VRA1146-C

VRA1146-C DVL-H9 GRAPHICS Æ L ; æ REV FWD TITLE PREV AUDIO SUBTITLE CHP/TIME ENTER A/B ANGLE RETURN DISC SIDE OPEN/ CLOSE MODE DISPLAY JOG 6 PROGRAM REPEAT PAUSE REV PLAY FWD STEP NEXT 7 3 FL DIMMER RANDOM

More information

自己管理型データベース: アプリケーションおよびSQLチューニング・ガイド

自己管理型データベース: アプリケーションおよびSQLチューニング・ガイド : SQL 2005 9 : SQL... 3 SQL... 6... 8... 9 SQL :... 9 SQL... 10... 11 SQL... 12 SQL TUNING SET... 13 SQL... 14 ADDM SQL... 14 SQL... 15 STS... 15... 16 SQL... 16 DBMS_SQLTUNE... 17... 17 SQL... 19 SQL

More information

DVR-DT100

DVR-DT100 DVR-DT100 DVR-DT90 DVR-DT70 10 18 26 62 72 84 98 9:3018:00 9:3012:0013:0017:00 http://www.pioneer.co.jp/support/ HDD HD/SD(TS) DR 18h30m VR/(PS) SP 17h00m 5 3/27()10:00PM10:54PM 1 3 5 108 6 00 00 00 00

More information

ORPALIS PDF OCR スタートガイド

ORPALIS PDF OCR スタートガイド スタートガイド エクセルソフト株式会社 1 Copyright 2013-2017 ORPALIS. All rights reserved. Version 1.1.18 (2018.5.10) Written by XLsoft Corporation 2 目次 はじめに... 4 概要... 4 ダウンロード... 5 評価版のインストールとアクティベート... 6 ライセンス登録... 8

More information

HUAWEI GR5 FAQ Rev.1.0

HUAWEI GR5 FAQ Rev.1.0 HUAWEI GR5 FAQ Rev.1.0 目录 1 電池と充電... 4 1.1 電池容量について... 4 1.2 充電器について... 4 1.3 充電中 充電が 100% になっても ステータスバーに充電中アイコンが表示されるのがなぜでしょうか?... 4 2 ハードウェアと外観... 4 2.1 SIM カードが認識されません... 4 2.2 上部と下部カードスロットにはそれぞれどのようなカードをセットできますか?...

More information

FR-UN9( Co)(SN )

FR-UN9( Co)(SN ) FR-UN9 X-UN9 X-UN7 05.9.9, :34 PM 05.9.9, :35 PM 3 3 05.9.9, :35 PM 4 4 05.9.9, :36 PM 5 5 05.9.9, :36 PM 6 6 05.9.9, :36 PM 7 7 05.9.9, :36 PM 8 8 05.9.9, :37 PM ± 9 9 05.9.9, :37 PM 3 4 567 8 9 0! @

More information

EPSON EH-DM30 Users Guide

EPSON EH-DM30 Users Guide s A B M L C D K E F J I H G F A B C D E F G H I J j s s s s s s s s s s K s L M s A B C D N M L E F G K H I F J A B C D E F G H I J K s s s s s s s s s s L M N s s A B F Cd E D v s v s v s v s

More information

HTZ-555DV

HTZ-555DV DV IN/OUT HTZ-555DV 2 ALL 1 24 2 3 4 5 6 7 AC IN TUNED 1 8 POWER OFF ON ST ST MCACC TUNE 1. AM FM 75 S2 LINE 1 D 4. 2. 3. MCACC SETUP NOISY RETRY ERR MIC RETRY ERR SP RETRY 9 1 2 0 OPEN/CLOSE 6 DVD/CD

More information

Oracle Spatial

Oracle Spatial Oracle Spatial 2003 10 Oracle Spatial... 3 1.0... 3 2.0 ORDBMS... 5 2.1 ORDBMS... 5 2.2... 5 2.2.1... 6 2.2.2... 6 2.2.3... 6 2.2.4... 6 2.3... 7 2.3.1... 7 2.3.2... 7 2.3.3... 8 2.3.4... 8 2.3.5... 8

More information

DV-SP155(Cover)(SN A)

DV-SP155(Cover)(SN A) DV-SP155 1 04.3.3, 1:02 PM 2 2 04.3.3, 1:02 PM 3 3 04.3.3, 1:02 PM 4 4 04.3.3, 1:02 PM 5 5 04.3.3, 1:02 PM 6 6 04.3.3, 1:02 PM 7 7 04.3.3, 1:02 PM 8 8 04.3.3, 1:02 PM 9 04.3.3, 1:02 PM 9 10 10 04.3.3,

More information

BDP-SX910

BDP-SX910 4-411-688-02(1) / DVD BDP-SX910 m 2 5 6 1 1 AC, a b c 2 ,, AC AC, AC AC, 3 4 AC,, 5,,, AC 30 6 1 AC AC 100 240V AC, 7 HDMI OUT HDMI OUT HDMI OUT HDMI HDMI HDMI OUT Cinavia Cinavia Cinavia http:// www.cinavia.com

More information

Oracle Database 10gのOracle Data Guard

Oracle Database 10gのOracle Data Guard Oracle Database 10g Oracle Data Guard 2004 Oracle Data Guard... 3... 3... 3 Oracle Data Guard... 4 Oracle Data Guard... 4 Oracle Data Guard... 4 Oracle Data Guard... 5 Oracle Data Guard... 6 Oracle Data

More information

MV-101

MV-101 3-255-983-02 (1) DVD MV-101 2003 Sony Corporation 11 b 1 2 3 2 ...4...7... 7...8... 11... 12... 14 DVD/CD/CD... 15... 18... 19 DVD... 20... 21... 22... 23 PBC... 24... 25... 26... 27... 28... 29... 30...

More information

AC 2

AC 2 4-472-002-01(1) / DVD BDP-Z1 2 5 6 1 1 AC 2 AC AC AC AC minib-cas 3 4 AC 5 6 AC 30 1 AC AC 100 240V AC 7 8 HDMI HDMI HDMI HDMI HDMI HDMI 3D 3D 3D 3D 3D 3D http://www.sony.jp/support/ 6 3D Cinavia Cinavia

More information

Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005との技術的比較

Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005との技術的比較 Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005 2005 9 Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005... 3 ORACLE REAL APPLICATION CLUSTERS... 4 SQLSERVER

More information

Oracle Database 10g Release 2を使用したデータベース・パフォーマンス

Oracle Database 10g Release 2を使用したデータベース・パフォーマンス Oracle Database 10g Release 2 2005 9 Oracle Database 10g Release 2... 3... 3... 3 Automatic Workload Repository AWR... 3 Automatic Database Diagnostic Monitor ADDM... 4 Automatic SQL Tuning SQL... 4 SQL

More information

RDV-1.1(Cover)(SN A)

RDV-1.1(Cover)(SN A) Super CD & DVD /Video Player RDV1.1 1 04.10.19, 9:51 AM 2 2 04.10.19, 9:52 AM 4 17 32 35 47 61 80 84 3 3 04.10.19, 9:52 AM 4 4 04.10.19, 9:52 AM 5 5 04.10.19, 9:53 AM 6 6 04.10.19, 9:53 AM 7 7 04.10.19,

More information

Recovery Managerのバックアップおよびリカバリの最適化

Recovery Managerのバックアップおよびリカバリの最適化 Recovery Manager 2005 7 Recovery Manager... 3 Recovery Manager... 4 Recovery Manager... 4... 4... 5... 5... 5... 6... 6... 6... 7... 7... 8... 9 I/O I/O... 9... 10... 12... 12... 12... 13... 14 /... 14...

More information

Oracle9i

Oracle9i Oracle9i 2002 2 Oracle9i... 4... 4... 4 Oracle... 4 SQL... 6... 6... 6... 7... 7... 9... 9... 9 CUBE... 10... 11... 11... 11 OR... 12... 12... 14... 14... 15... 15... 16... 16... 18... 18... 18... 19...

More information

Oracle Identity Managementの概要およびアーキテクチャ

Oracle Identity Managementの概要およびアーキテクチャ Oracle Identity Management 2003 12 Oracle Identity Management... 3 ID... 3 ID... 4 ID... 4 Oracle Identity Management... 5 Oracle Identity Management... 6 Oracle Identity Management... 7 ID... 8 Application

More information

Warehouse Builderにおける予測分析の使用

Warehouse Builderにおける予測分析の使用 Warehouse Builder Oracle 2006 3 Warehouse Builder... 3 ETL... 4 DMBS_PREDICTIVE_ANALYTICS... 4... 5 1... 5 2... 5 3... 5... 6 SQL PREDICT... 7... 9 1... 9 2... 9 3... 9... 10 PL/SQL... 11... 12... 12...

More information

Linux上のOracle Real Application Clustersの記憶領域オプション

Linux上のOracle Real Application Clustersの記憶領域オプション Linux Oracle Real Application Clusters 2005 1 RAC... 3... 3 Automatic Storage Management ASM... 4 ASM Oracle... 5 ASM... 6 Oracle Cluster File System... 6 OCFS Oracle... 7... 7... 7 RAW... 7 RAW Oracle...

More information

KWCR3.0 instration

KWCR3.0 instration KeyWeb Creator R3.0 R3.0 for MS-Windows 2005 10 B25586-01 Oracle Oracle Oracle Corporation Copyright 2005, Oracle Corporation All Right Reserved KeyWeb Creator R3.0 2005 10 Copyright 1997-2005 KeyWeb Creator

More information

TopLink È... 3 TopLink...5 TopLink åø... 6 TopLink å Workbench O/R ~... 8 Workbench À ~... 8 Foundation Library å... 8 TopL

TopLink È... 3 TopLink...5 TopLink åø... 6 TopLink å Workbench O/R ~... 8 Workbench À ~... 8 Foundation Library å... 8 TopL lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume1 Creation Date: Mar 04, 2005 Last Update: Aug 23, 2005 Version 1.0 ...3... 3 TopLink 10.1.3 È... 3 TopLink...5 TopLink åø... 6 TopLink å... 7... 8 Workbench O/R ~...

More information

ハピタス のコピー.pages

ハピタス のコピー.pages Copyright (C) All Rights Reserved. 10 12,500 () ( ) ()() 1 : 2 : 3 : 2 4 : 5 : Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All

More information

Copyright 2008 All Rights Reserved 2

Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 1 Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 3 Copyright 2008 All Rights Reserved 4 Copyright 2008 All Rights Reserved 5 Copyright 2008 All

More information

D-VE7000S

D-VE7000S 2-683-363-05 (1) D-VE7000S DVD Walkman Portable DVD/CD Player 2006 Sony Corporation 6~10 11 11AC AC AC 2 DVDDVDDVD-R/ DVD+RDVD-RW/DVD+RW DVD DVD-R/DVD+R DVD-RW/DVD+RWVR DVD-RW/DVD+RW CD/CD CD-R/CD-RW CD/CD

More information

Oracle DatabaseとIBM DB2 UDBの技術的比較: パフォーマンスを重視

Oracle DatabaseとIBM DB2 UDBの技術的比較: パフォーマンスを重視 Oracle Database IBM DB2 UDB : 2005 9 Oracle Database IBM DB2 UDB :... 3... 4 Oracle Database Oracle Database IBM DB2... 4... 5... 5... 6... 7... 9... 10... 10 Oracle Database 10g Oracle Real Application

More information

.w..01 (1-14)

.w..01 (1-14) ISSN 0386-7617 Annual Research Reports No.33, 2009 THE FOUNDATION FOR GROWTH SCIENCE ön é

More information

Microsoft, Windows Microsoft Corporation

Microsoft, Windows Microsoft Corporation Copyright 2000-2002 T&D Corporation. All rights reserved. 2002.07 16004194030 Microsoft, Windows Microsoft Corporation This Modem Logger is designed for use in Japan only and can not be used in any other

More information

ï ñ ö ò ô ó õ ú ù n n ú ù ö ò ô ñ ó õ ï

ï ñ ö ò ô ó õ ú ù n n ú ù ö ò ô ñ ó õ ï ï ñ ö ò ô ó õ ú ù n n ú ù ö ò ô ñ ó õ ï B A C Z E ^ N U M G F Q T H L Y D V R I J [ R _ T Z S Y ^ X ] [ V \ W U D E F G H I J K O _ K W ] \ L M N X P S O P Q @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ r r @ @

More information

Oracle Enterprise Manager 10g R2 Grid Control: データベース管理の新機能

Oracle Enterprise Manager 10g R2 Grid Control: データベース管理の新機能 Oracle Enterprise Manager 10g R2 Grid Control: 2005 8 Oracle Enterprise Manager 10g R2 Grid Control:... 3... 3 GRID CONTROL... 4... 4... 4... 5... 5 GRID CONTROL... 5... 5 SQL /... 6... 7 HANG ANLYSIS...

More information

Oracle Database 10gのOLAP Option

Oracle Database 10gのOLAP Option Oracle Database 10g OLAP Option OLAP Option 2005 3 Oracle Database 10g OLAP Option... 3 Oracle Business Intelligence... 4... 4... 5 Oracle Business Intelligence Beans... 5 OracleBI Discoverer... 6 OracleBI

More information

Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Packインストレーション・ガイド リリース2.2

Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Packインストレーション・ガイド リリース2.2 Oracle Enterprise Manager Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Pack 2.2 2000 11 : J02263-01 Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Pack 2.2

More information

EPSON EH-DM3 Users Guide

EPSON EH-DM3 Users Guide EH-DM3.book 1 ページ 2010年6月11日 金曜日 午後2時56分 同梱品の確認 下記のチェックリストをご覧になり 同梱品を確認してください 万一 不足や不良がございましたら お手数 ですがお買い上げいただいた販売店にご連絡ください 本体 リモコン 電源ケーブル 日本国内専用3m 日本語シール 収納用ケース 保証書 単3形マンガン乾電池 2本 取扱説明書 本書 天井投写キット 説明書中の表示の意味

More information

(WP)

(WP) 1998 0 a b v g d je jo z i j k l m n o à á â ƒ ã ä å Ý Þ æ ç ˆ è é Š ê ë Œ ì í Ž î 1 ï p ð r ñ s ò t ó u ô f õ x ö ts t' ø ù ' ' š ú û y œ ü ' ý e ž þ ju Ÿ ß ja à, ê, ì, î, ò á, ã, ä, æ, é, ë, ï, ô, ö,,

More information

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç..

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç.. lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume2 Creation Date: Mar 04, 2005 Last Update: Aug 22, 2005 Version 1.0 ...3... 3 TopLink å...4 1... 4... 4 SampleClient.java... 5 Ò... 8... 9... 10 readallsample()... 11

More information

ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2

ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2 lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume3 Creation Date: Mar 04, 2005 Last Update: Aug 23, 2005 Version 1.0 ...3... 3...4... 4... 6 ValueHolder... 9 Customer.java... 10...14 Oracle TopLink 10g(10.1.3) È Volume3

More information

tkk0408nari

tkk0408nari SQLStatement Class Sql Database SQL Structured Query Language( ) ISO JIS http://www.techscore.com/tech/sql/02_02.html Database sql Perl Java SQL ( ) create table tu_data ( id integer not null, -- id aid

More information

Microsoft Word _Rev01-jp.doc

Microsoft Word _Rev01-jp.doc ユーザーマニュアル 日本語 APC Smart-UPS 1000/750VA 230/120/100VAC 単一ユニットラックマウント式無停電電源装置 990-1319 09/02 はじめに American Power Conversion Corporation APC Ê ƒê teâ tñïòòâ ÑÔ ÒÏÏÎÂÈÊ Ê ~ ÊÆÇÍ ~ Êt~ ÉÈÉ É ÈÉÆÌÈ ÊÓÑÓ Ñ

More information

2006 Adobe Systems Incorporated. All Rights Reserved.

2006 Adobe Systems Incorporated. All Rights Reserved. 2006 Adobe Systems Incorporated. All Rights Reserved. 2006 Adobe Systems Incorporated. All Rights Reserved. 89% 98% 2006 Adobe Systems Incorporated. All Rights Reserved. 1 2006 Adobe Systems Incorporated.

More information

‰IŠv9802 (WP)

‰IŠv9802 (WP) 30 197954 22001983 ìåëóéþåóëéå ÍÉÎÉÍÕÍÙ ÓÏ ÒÅÍÅÎÎÏÇÏ ÒÕÓÓËÏÇÏ ÑÚÙËÁ, ÒÅÄ...íÏÒËÏ ËÉÎÁ, "òõóóëéê ÑÚÙË", íïóë Á, 1985 ëáòôéîîï-óéôõáôé ÎÙÊ ÓÌÏ ÁÒØ ÒÕÓÓËÏÇÏ ÑÚÙËÁ, à.. ÁÎÎÉËÏ É ÄÒ., "òõóóëéê ÑÚÙË", íïóë Á,

More information

DVP6800_51_UM_V1.0_ pdf

DVP6800_51_UM_V1.0_ pdf 13Register your product and get support at www.philips.com/welcome DVP6800 UK 13 4 4 5 5 5 5 7 7 8 10 10 10 10 11 11 12 12 12 14 15 16 16 16 7 17 17 18 19 21 22 22 23 23 23 24 26 3 134 CLASS 1 LASER PRODUCT

More information

ロシア語便覧 1

ロシア語便覧 1 - -È - - -ÚÂÎ Û Ë±ÚÂÎ, ÔËÒ ±ÚÂÎ - apple ÒÂÍappleÂÚ ±apple, Ë ÎËÓÚÂ±Í apple flì ±apple, Ù apple ±Î ÒÚÓ±Î, ÒÚÓÎ ± αÒ, ÎÂ±Ò ; ÎÂÒ ±, ÎÂÒÓ± ÁÛ±, ÁÛ± ; ÁÛ±, ÁÛ Ó± -, -Ë ÒÚÓÎ ±, ÊÛappleÌ ±Î, ÏÛÁ±Ë, ÒÎÓ appleë±

More information

Copyright 2008 NIFTY Corporation All rights reserved. 2

Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 3 Copyright 2008 NIFTY Corporation All rights reserved. 4 Copyright 2008 NIFTY Corporation

More information

日本語タイトルを入力

日本語タイトルを入力 Oracle Application Server Infrastructure 2004 6 Oracle Application Server Infrastructure Oracle Application ServerInfrastructure Oracle Application Server 10g Release 9.0.4... 3... 3 i.... 4 ii.... 4...

More information

日本語タイトルを入力

日本語タイトルを入力 Oracle Enterprise Manager 10g Grid Control 2005 8 Enterprise Manager Grid Control Oracle Enterprise Manager 10g Grid Control Oracle Oracle Grid 1 Grid Control 2 1 Grid Control 2 Grid Control Oracle Grid

More information

Ë,, ÌÓ ÏÓÈ ÂÈ? ÚÓÚ, ÚÓÚ

Ë,, ÌÓ ÏÓÈ ÂÈ? ÚÓÚ, ÚÓÚ 001 1 002 3 003 3 004 4 005 5 006 7 007 7 008 7 009 8 010 Ë,, ÌÓ 8 011 10 9 012 10 013 10 014 11 015 12 016 ÏÓÈ 13 017 ÂÈ? 13 018 ÚÓÚ, ÚÓÚ 14 019 14 020 16 021 Í ÍÓÈ? 16 022 18 023 18 024 19 025 19 1992

More information

< F31332D8B638E FDA8DD E F1292E6A>

< F31332D8B638E FDA8DD E F1292E6A> v u x u ~ ÔÒÖ Ê f     u    Âl  d    ~{  d  y y x y v u f Ë s y v u y v u u Ë~ u y Ê v ÊÉÆÉ y v Ë v y ÿus y Ê Ê~ ÊÉÆÉ y v ~{ fy v Ê ÈÍ u ~ Ê v u ~ ÊÆÍÌÍÃÈÊ vyãê Í v u ~ Ê v u ~ ÊÆÍÌÍÃÈÊ vyãê

More information

DVR-640H

DVR-640H HDD/DVD HDD HDD DVD DVR-640H DVR-540H 12 22 26 30 54 76 92 106 9:3018:00 9:3012:0013:0017:00 http://www.pioneer.co.jp/support/ P.117 P.3 60h30m HDD SP 7 3/199:00 1h00m(2.4G) SP 2h00m(4.7G) P.27 P.125 P.3,

More information

初心者にもできるアメブロカスタマイズ新2016.pages

初心者にもできるアメブロカスタマイズ新2016.pages Copyright All Rights Reserved. 41 Copyright All Rights Reserved. 60 68 70 6 78 80 Copyright All Rights Reserved. FC2 97 Copyright All Rights Reserved. Copyright All Rights Reserved. Copyright All Rights

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

1,.,,,., RDBM, SQL. OSS,, SQL,,.

1,.,,,., RDBM, SQL. OSS,, SQL,,. 1,.,,,., RDBM, SQL. OSS,, SQL,,. 3 10 10 OSS RDBMS SQL 11 10.1 OSS RDBMS............................ 11 10.1.1 PostgreSQL................................. 11 10.1.2 MySQL...................................

More information

Copyright 2006 KDDI Corporation. All Rights Reserved page1

Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page2 Copyright 2006 KDDI Corporation. All Rights Reserved page3 Copyright 2006 KDDI Corporation.

More information

untitled

untitled Oracle Enterprise Manager 10g Oracle Application Server 2003 11 Oracle Enterprise Manager 10g Oracle Application Server... 3 Application Server... 4 Oracle Application Server... 6... 6... 7 J2EE... 8...

More information

Machine DescriptiontypeModel IBMFlexSystemp24LComputeNode14577FL IBMFlexSystemp460ComputeNode フィーチャーの営業活動終了 IBMPowerSystems マシン タイプの特定のモデルについて営業活動が終了す

Machine DescriptiontypeModel IBMFlexSystemp24LComputeNode14577FL IBMFlexSystemp460ComputeNode フィーチャーの営業活動終了 IBMPowerSystems マシン タイプの特定のモデルについて営業活動が終了す 日本 IBM の営業活動終了の発表 JG13-0323(2013 年 10 月 7 日付 ) ハードウェア製品の営業活動終了 :IBMPowerSystems サーバーおよび各種フィーチャー 目次 1 製品の概要 19 後継製品情報 1 終了する製品 19 AP ディストリビューション 製品の概要 2014 年 1 月 3 日付で IBM は 以下の IBMPower Systems サーバーおよび各種フィーチャーの営業活動を終了します

More information

untitled

untitled Oracle Direct Seminar SQL Agenda SQL SQL SQL SQL 11g SQL FAQ Oracle Direct SQL Server MySQL PostgreSQL Access Application Server Oracle Database Oracle Developer/2000 Web Oracle Database

More information

DVP-S313

DVP-S313 3-060-985-01(2) CD/プレーヤー 取扱説明書 お買い上げいただきありがとうございます 電気製品は安全のための注意事項を守らないと 火災や 人身事故になることがあります この取扱説明書には 事故を防ぐための重要な注意事項 と製品の取り扱いかたを示しています この取扱説明書 をよくお読みのうえ 製品を安全にお使いください お読みになったあとは いつでも見られるところに必ず 保管してください

More information

Oracle HTML DBのテンプレート・カスタマイズ

Oracle HTML DBのテンプレート・カスタマイズ Oracle HTML DB 2003 10 Oracle HTML DB... 3... 3... 5... 5 1:... 6 2:... 6 3: 2... 7... 8... 8... 8 CSS JavaScript... 10 HTML DB... 11... 11 Oracle HTML DB 2 Oracle Corporation Customizing Templates in

More information

<Documents Title Here>

<Documents Title Here> Oracle9i Database R9.2.0 for Windows Creation Date: Mar 06, 2003 Last Update: Mar 24, 2003 CD 1 A99346-01 Oracle9i Database Release 2 (9.2.0.1.0) for Microsoft Windows NT/2000/XP CD 1 of 3 2 A99347-01

More information

,, create table drop table alter table

,, create table drop table alter table PostgreSQL 1 1 2 1 3,, 2 3.1 - create table........................... 2 3.2 - drop table............................ 3 3.3 - alter table............................ 4 4 - copy 5 4.1..................................

More information

imt_817_tuning_11_1822.PDF

imt_817_tuning_11_1822.PDF intermedia Text Tuning Guide Creation Date: Mar 12, 2001 Last Update: Apr 19, 2001 Version: 1.1 4 intermedia Text 4 5 5 5 6 6 intermedia 6 6 6 7 7 7 7 8 8 8 8 R816 9 10 10 10 12 12 13 14 15 catalog index

More information

Copyright All Rights Reserved. -2 -!

Copyright All Rights Reserved. -2 -! http://ameblo.jp/admarketing/ Copyright All Rights Reserved. -2 -! Copyright All Rights Reserved. -3- Copyright All Rights Reserved. -4- Copyright All Rights Reserved. -5 - Copyright All Rights Reserved.

More information

ロシア人の名前

ロシア人の名前 10 12 15 18:35 19:15 19:30 19:40 19:50 ðàñêîëîòü îäèîí îìàíû àñêîëüíèêîâ P äàí åæäàí Šðàñ åêðàñ àéäþí îëüøîé ðåòüßê Œîðîç îëê ûê Šîò îðîáåé 862 988 (3/15) (3/15) (3/16) (3/17) (3/18) (3/19 3/22) 18 25

More information

BDP-S1100

BDP-S1100 4-442-379-01(1) BDP-S1100 m 2 5 6 1 1, a b c 2 ,,, 100V 3 4, AV AV AV 5,,,,,, BD DVDCD HDMI HDMI HDMI 6 HDMI HDMI HDMI DVD AACS Advanced Access Content System CSS Content Scramble System AACS Cinavia Cinavia

More information

Oracle Locator Oracle Database 10g Standard Edition Standard Edition One Oracle Database 10g Release 1 Oracle Locator : Enterprise Edition Oracle Loca

Oracle Locator Oracle Database 10g Standard Edition Standard Edition One Oracle Database 10g Release 1 Oracle Locator : Enterprise Edition Oracle Loca ORACLE SPATIAL OPTION ORACLE LOCATOR Oracle Database 10g Oracle Database 10g Release 2 Oracle Locator : Oracle Spatial Oracle Locator Oracle Locator Oracle Database 10g Standard Edition EPSG Standard Edition

More information

Oracle Database Connect 2017 JPOUG

Oracle Database Connect 2017 JPOUG Oracle Database Connect 2017 / JPOUG 異なるデータベース間の SQL 比較と Oracle Database 12c の新機能 Noriyoshi Shinoda March 8, 2017 自己紹介篠田典良 ( しのだのりよし ) 所属 日本ヒューレット パッカード株式会社テクノロジーコンサルティング事業統括 現在の業務 Oracle Database をはじめ

More information

IPA:セキュアなインターネットサーバー構築に関する調査

IPA:セキュアなインターネットサーバー構築に関する調査 Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved.

More information

領域サイズの見積方法

領域サイズの見積方法 White Paper 1998 3 1998 7 NULL 1998 9 2 8.03 Design & Migration Services Oracle Corporation Japan 1998 Printed in Japan Oracle and SQL*Loader are registered trademarks. Oracle7 Oracle Corporation Oracle

More information

Oracle Application Server 10g (9.0.4): Manually Managed Cluster

Oracle Application Server 10g (9.0.4): Manually Managed Cluster Oracle Application Server 10g 9.0.4 : 2004 6 Oracle Application Server 10g 9.0.4 : Oracle Application Server... 3... 3 Oracle Application Server... 3... 3... 4 Oracle Application Server... 6 Oracle Application

More information

DMC-TZ55

DMC-TZ55 DMC-TZ55 & http://panasonic.jp/support/dsc/ VQT5H40 F0314MR0 & ### & ### ### ### & & È È AF > = 1 2 3 4 5 ( 1: 3 È 2: 4 # 3: 2 ë 4: 1 6 7 8 910 14 1312 11 3 4 2 1 4 4 ### 15 16 17 18 19 20 21 22 23

More information

Microsoft PowerPoint - db03-5.ppt

Microsoft PowerPoint - db03-5.ppt データベース言語 SQL リレーショナルデータモデルにおけるデータ操作言語 : リレーショナル代数 少なくともリレーショナル代数と同等のデータ検索能力をもつときリレーショナル完備という. リレーショナル代数はユーザフレンドリではない. 自然な英文による質問の表現が必要になる. リレーショナルデータベース言語 SQL 英文による簡単な構文 リレーショナル代数でできない, 合計, 平均, 最大などの計算機能の組み込み.

More information

Microsoft Word - 最終版 バックせどりismマニュアル .docx

Microsoft Word - 最終版 バックせどりismマニュアル .docx ism ISM ISM ISM ISM ISM ISM Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. ISM Copyright (c) 2010 All Rights Reserved. Copyright

More information

Microsoft Word _jap .doc

Microsoft Word _jap .doc ユーザーマニュアル 日本語 APC Smart-UPS 1000VA/1500VA 230VAC/120VAC/100VAC 750XL/1000XL 230VAC/120VAC タワー型 無停電電源装置 990-1085, 11/01 はじめに American Power Conversion (APC) ÊÂ Ê te(ups)ì ÑÏÒÒÂ ÑÔÒÏÏÎÂÈÊ Ê ~teêt~êææéêâ

More information

KeySQL R5.1 Release Note

KeySQL R5.1 Release Note KeySQL for Microsoft Windows 5.1 2005 10 : B19176-02 Copyright 2005, Oracle Corporation All Right Reserved Oracle Oracle Oracle Corporation KeySQL for Microsoft Windows 5.1 : B19176-02 Copyright 2005,

More information

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 2 Excel 1 SQL 1 SQL Server sp_executesql Oracle SQL

More information

dekiru_asa

dekiru_asa 11 10 4 4 1 2 3 4 2 4 6 10 12 16 20 2 1 3 1 4 2 5 2 6 3 3 7 8 9 3 3 10 4 1 11 4 2 3 4 5 1 2 3 12 4 5 5 13 14 6 7 8 9 10 11 5 15 6 1 2 3 16 17 1 2 3 6 18 1 2 3 19 6 6 1 2 v 3 20 7 1 2 3 1 7 21 22 2 3 4

More information