Microsoft PowerPoint - Tech-iSeminar_Managing_Tablespace.ppt

Size: px
Start display at page:

Download "Microsoft PowerPoint - Tech-iSeminar_Managing_Tablespace.ppt"

Transcription

1 Tablespace 의관리 Getting the most out of MetaLink 최창권, 김주연 제품지원실한국오라클 ( 주 ) 한국오라클에서주최하는 Technical iseminar DATABASE의 tablespace 이해 에참석해주신여러분께감사드립니다. 저는한국오라클제품지원실에근무하는최창권입니다. 오늘세미나에서는 ORACLE database의논리적인저장소역할을하는 TABLESPACE 에대해서설명하고자합니다. 질의응답시간이마지막에따로있으므로세미나를끝까지들어주셨다가질의응답시간을잘활용해주시길바랍니다. 또한세미나중궁금한사항은 chatting 창을통해서문의를해주시면세미나가끝난뒤응답하는순서로진행하도록하겠습니다. 그럼 DATABASE의 tablespace 이해 세미나를시작하도록하겠습니다.

2 목 차 Tablespace and Datafile Space Management of Tablespace Dictionary Managed Tablespace Locally Managed Tablespace DBMS_SPACE_ADMIN package Type of Tablespace Managing Tablespace using OMF 질의및응답 2 먼저논리적인개념의 tablespace 와물리적인개념의 datafile 간의관계를설명하도록하겠습니다. 이러한 tablespace 는 space management 방식에따라서 ORACLE 8i 까지주로사용되었던 dictionary managed tablespace 와 ORACLE 8i 에서소개되어 ORACLE 9i 에서주로사용되고있는 locally managed tablespace 방식으로나뉘게됩니다. 또한 dictionary-managed tablespace 를 locally-managed tablespace 방식으로변환을가능케하는 dbms_space_admin package 를소개하도록하겠습니다. 그리고 tablespace 의 type 에따라서 system tablespace, data tablespace, undo tablespace, temporary tablespace 등 tablespace 의 각 type 에 대해서간략하게 설명을 하도록 하겠습니다. 또한 Tablespace 내에서사용되는 datafile 을 ORACLE 에서 managing 할수있도록하는 OMF ( ORACLE managed File) 에대해서알아보도록하겠습니다.

3 DATABASE Storage Hierarchy Database Tablespace Data file Logical Segment Physical Extent Oracle block OS block ORACLE database 는다음과같은 hierarchy 구조를같습니다. Segment 는 extent 들의조합으로이루어져있으며각 extent 들은 DB_BLOCK_SIZE 에의한 ORACLE block 으로이루어져있습니다. 또한각 Segment 들은 Tablespace 에저장이됩니다. Tablespace 는 ORACLE database 가만들어놓은 logical storage 공간이며이며, 하나이상의 datafile 을포함하여 physical 하게저장하게됩니다. 따라서 datafile 을 physical storage 공간이라고합니다. tablespace, segment, extent, oracle block 을 ORACLE 에서정의하는 logical storage 라고하며, datafile, os block 을 physical storage 라고합니다. 그럼 hierarchy 구조에서 Tablespace 와 datafile 에대해서알아보도록하겠습니다.

4 Tablespace and Datafile Logical storage - Tablespace 하나이상의 Datafile 로구성 Physical storage Datafile, Tempfile 하나의 Tablespace 에저장 스키마객체 data의저장소 4 Database 와 Tablespace, datafile 은서로밀접하게연관되어있으며이들의차이점에대해서알아보고자합니다. 먼저 ORACLE database 는 tablespace 라는하나이상의 logical storage 영역단위로구성되어있으며 Tablespace 는 ORACLE database 의모든 data 를저장하게됩니다. 그리고각 Tablespace 는 Datafile 이라는하나이상의 file 로구성되어있으며이러한 datafile 은 ORACLE 을실행중인운영체제의 physical storage 영역입니다. 하나의 datafile 은하나의 tablespace 에포함되어있으며각 schema 의 object 를저장하는공간입니다. Tablespace 중 Temporary tablespace 의경우에는 tempfile 이라는 physical file 을생성하게됩니다.

5 Space Management of Tablespace Locally Managed Tablespace 사용가능한 extent 는 Tablespace 에서관리 bitmap 에서 free extent 를기록 bit 값은 free 와 used 상태를표시 Dictionary Managed Tablespace 사용가능한 extent 는 data dictionary 에서관리 extent 가할당되거나해제될때해당 base table 이갱신됨 5 Hierarchy 구조에서보았겠지만 Tablespace 는각각의 segment 에따라 extent 단위로공간을할당하게됩니다. Tablespace 를생성하여 free extent 와 used extent 를추적하는방법은다음과같은 2 가지방법이있습니다. Locally-managed tablespace는 free extent 가 tablespace 내의각 datafile에서 bitmap 을통해서관리가됩니다. bitmap block 의각 bit 는 extent 자체가 free 및 used 상태에대한정보를가지고있기때문에해당 bitmap 정보만을통해서 free 상태와 used 상태를파악할수있습니다. Dictionary-managed tablespace 의경우는 free extent가 base table 내에서관리가됩니다. 따라서 extent 정보가 allocation되거나 de-allocation 되는경우 base table 자체를 update 하는방식으로사용됩니다. 이때갱신되는 base table 은 sys 소유의 uet$, fet$ table입니다.

6 Locally Managed Tablespace 8i 에서소개됨 Data Dictionary Table 의경합을줄인다 공간할당이나해제시에 undo 정보를생성하지않으며 base table을건드리지않는다 Coalescing 작업이필요없음 6 Locally managed tablespace는 8i 에서소개가되었으며자신이보유하고관리하는각 extent들에대한 freed, used 여부를 bitmap형태로각구성 datafile들에저장합니다. Bitmap내의각 bit들은하나의 block 또는 block의묶음 (extent) 에대한 status를표시합니다. 만약이들 extent들을 free하거나할당받아서사용하게되면각각의 extent에해당하는 bitmap값들이변경되게됩니다. 이렇게변경된사항들은 data dictionay table에 update작업을수행하지않는관계로 undo 정보를생성하지않을뿐만아니라 data dictionary table 에대한contention을줄일수가있기때문에 performance 에효과를가지고있습니다. 또한이렇게 local로관리되는경우인접한각 free extent들에대한정보가자동적으로추적가능하기때문에 free extent를 coalesce할필요성이없어지게됩니다. Locally managed tablespace는동일한 size의 extent들을가지도록설정할수있으며, system이자동으로그 extent의 size를결정하도록하는방식이있습니다. 이는 Tablespace 생성시의 UNIFORM 또는 AUTOALLOCATE option 을이용하여결정할수있습니다.

7 Locally Managed Tablespace Autoallocate tablespace 내의각 extent size 를 system 이관리함 기본 extent 는 64k 로지정이됨 Uniform allocate tablespace 내의각 extent size 는 user 가지정한일정한 size 로만생성됨 default size 는 1MB 임 extent management 절을명시하지않는다면 AUTOALLOCATE 가 default 로이용됨. 7 Locally-managed tablespace 방식은 다음과 같이 Autoallocate 방식과 Uniform 방식이 있습니다. Autollocation 방식은 tablespace 내의각 extent size 를 system 이관리하며 user 가 extent 의 size 를지정할수가없습니다. Autoallocate 방식의기본적인 extent size 는 64k 이며 extent 가할당됨에따라서 system 이자동으로 extent size 를지정하게됩니다. LOCAL 절을사용하면서 AUTOALLOCATE 또는 UNIFORM 을명시하지않는다면 default 로 AUTOALLOCATE 가사용되게됩니다. UNIFORM allocate 는 tablespace 내의각 extent size 가 user 가지정한일정한 size 로만생성이됩니다. uniform size 를지정하지않는다면해당 extent size 는 default 로 1M 가설정되게됩니다. UNIFORM size 로사용하실경우에는생성후에 uniform size 를변경하지못하기때문에 size 를적절하게고려하여야합니다. 예를들어 100M 의 size 로 uniform size 를잡아놓았는데해당 Tablespace 에작은양의 object 가저장되고있다면이는 disk 의낭비를가져올수있기때문입니다.

8 Locally Managed Tablespace File Structure File header (1block) Bitmapped file space header (1block) Head portion of bitmap blocks (N block) Useful file blocks (U units) Tail portion of bitmap blocks (M block) 8 그럼 Locally-managed tablespace 의 datafile 의구조를다음과같이알아보도록하겠습니다. 전체적으로 FILE header 와 Bitmapped file space header 와 head portion of bitmap blocks 와 Useful file blocks 의 tail portion of bitmap blocks 의구조를가지고있습니다. File Header : 1 block Bitmapped File Space Header : 1 block Head portion of Bitmap Blocks : N blocks Useful file blocks : U units (A unit is a number of blocks.) Tail portion of Bitmap Blocks : M blocks If a Unit = B blocks, then the total file size = N + U*B +M. The OS file allocated will in some cases be file size + 1 block for the os header.

9 File Space Header Block ***************************************************************** Start Start dump dump data data blocks blocks tsn: tsn: file#: file#: minblk minblk 2 maxblk maxblk 2 buffer buffer tsn: tsn: rdba: rdba: 0x00c00002 (/2) (/2) scn: scn: 0x05f.28afd1d seq: seq: 0x02 0x02 flg: flg: 0x00 0x00 tail: tail: 0xfd1d1d02 frmt: frmt: 0x02 0x02 chkval: chkval: 0x0000 0x0000 type: type: 0x1d=KTFB Bitmapped File File Space Space Header Header File File Space Space Header Header Block: Block: Header Header Control: Control: RelFno: RelFno:,, Unit: Unit: 16, 16, Size: Size: 1024, 1024, Flag: Flag: 1 AutoExtend: NO, NO, Increment: 0, 0, MaxSize: MaxSize: 0 Initial Initial Area: Area: 7, 7, Tail: Tail: 1016, 1016, First: First: 2, 2, Free: Free: Header Header Opcode: Opcode: Save: Save: No No Pending Pending Op Op End End dump dump data data blocks blocks tsn: tsn: file#: file#: minblk minblk 2 maxblk maxblk 2 ******************************************************************* 9 다음은하나의 block으로구성되는bitmapped file space header block 입니다. 이내용에서는 RelFno : relative file number Unit : Number of blocks in one unit 예를들어 db_block_size 가 8K 이고 uniform size 가 128k 라면 Unit 은 16 이됩니다. Size : file size 를의미합니다. ( 예를들어 1024 라면 db_block_size 가 8k 일경우에 1024 * 8192 = 8M 가됩니다. ) Flag : initial control 의위치라파일의시작부분에위치하는내용을의미한다. AUTOEXTEND : autoextend option INCREMENT : autoextention시 extend 되는 size MAXSIZE : datafile 의 MAXSIZE INITIAL AREA : SPACE HEADER BLOCK 을포함한 bitmap block 의개수 TAIL : useful block 의가장마지막 block 이때 tail 이 1018 번째의 block 을가르키고있으며 datafile header 를포함하여 bitmap block 의수는 8 block 이기때문에 datafile 은 6 개의 extent 를가지게됩니다. FIRST : free extent 를찾는처음 extent 를의미합니다. 따라서현재사용된 extent 를의미하게됩니다. FREE : 사용가능한 extent 을의미한다.

10 File Space Bitmap Block (Free Block) ******************************************************************* ******************************************************************* Start Start dump dump data data blocks blocks tsn: tsn: file#: file#: minblk minblk maxblk maxblk buffer buffer tsn: tsn: rdba: rdba: 0x00c0000 0x00c0000 (/) (/) scn: scn: 0x05f.28afb06 0x05f.28afb06 seq: seq: 0x01 0x01 flg: flg: 0x00 0x00 tail: tail: 0xfb061e01 0xfb061e01 frmt: frmt: 0x02 0x02 chkval: chkval: 0x0000 0x0000 type: type: 0x1e=KTFB 0x1e=KTFB Bitmapped Bitmapped File File Space Space Bitmap Bitmap File File Space Space Bitmap Bitmap Block: Block: BitMap BitMap Control: Control: RelFno: RelFno:,, BeginBlock: BeginBlock: 9, 9, Flag: Flag: 0, 0, First: First: 0, 0, Free: Free: < < File File truncated truncated > >.... End End dump dump data data blocks blocks tsn: tsn: file#: file#: minblk minblk maxblk maxblk ********************************************************************** ********************************************************************** 10 RELFNO : Relative Fileno to which the block belongs BEGINBLOCK : The first block which can be allocated FLAG : Zero for permanent blocks FIRST : Where to start looking for free space ( Bit before first free bit ) FREE : Number of free slots ( bits ) in the bitmap ( not the file ) 다음의경우는 tablespace 를생성하여 object 가생성되기전에 block dump 를수행하였기때문에 free extent 를 0 번째에서찾습니다.

11 File Space Bitmap Block(Used Block) *********************************************************************** *********************************************************************** Start Start dump dump data data blocks blocks tsn: tsn: file#: file#: minblk minblk maxblk maxblk buffer buffer tsn: tsn: rdba: rdba: 0x00c0000 0x00c0000 (/) (/) scn: scn: 0x05f.28aff0 0x05f.28aff0 seq: seq: 0x01 0x01 flg: flg: 0x04 0x04 tail: tail: 0xff01e01 0xff01e01 frmt: frmt: 0x02 0x02 chkval: chkval: 0xcd19 0xcd19 type: type: 0x1e=KTFB 0x1e=KTFB Bitmapped Bitmapped File File Space Space Bitmap Bitmap File File Space Space Bitmap Bitmap Block: Block: BitMap BitMap Control: Control: RelFno: RelFno:,, BeginBlock: BeginBlock: 9, 9, Flag: Flag: 0, 0, First: First: 12, 12, Free: Free: FF0F FF0F <File <File truncated> truncated>.... End End dump dump data data blocks blocks tsn: tsn: file#: file#: minblk minblk maxblk maxblk ************************************************************************* ************************************************************************* 11 그렇다면 extent 를발생시킨후에변경된 bitmap 에대해서살펴보도록하겠습니다. FF0F 의경우는 2 진수로 로변경되게되는데, LSB ( Least Significant byte) 를사용하게되면 으로변경되어 used extent 와 free extent 를나타내게됩니다.

12 Dictionary Managed Tablespace Extent 가 Data dictionary 에서관리됨 Tablespace 에저장되어있는 segment 에서로다른storage 절을부여할수있음 Coalescing 이필요함 fet$ / uet$ 에서 extent 관리 12 Dictionary-managed tablespace 는 ORACLE 8i 까지 default 방식으로사용이되었으며 extent 를 dictionary table에서관리가됩니다. Locally managed tablespace 에서는 bitmap 에서 free 및 used 상태를표시하는반면에 Base table 인 uet$ 와 fet$ table 에서 free extent 와 used extent가관리되어지는데 extent 가할당되거나 free 되는경우에해당 dictionary table을 update 하는관리기법입니다. 따라서 dictionary table에대한 contention이발생할수있습니다. Dictionary-managed tablespace 는 tablespace 내에생성되는 segment 에대한각각의 storage 를부여하는방식이며각각의 extent 의 size 가달라지기때문에주기적인 coalescing 작업이진행되므로 smon 의부하를줄수있습니다.

13 DBMS_SPACE_ADMIN package Migrating a Dictionary-Managed Tablespace to Locally-Managed Tablespace begin dbms_space_admin.tablespace_migrate_to_local (tablespace_name=> 'USERS', rfno=>5); end; begin dbms_space_admin.tablespace_migrate_from_local (tablespace_name=>'test2'); end ; 1 Space 관리기법에따라서 locally-managed Tablespace 와 Dictionary-Managed tablespace 를알아보았습니다. Bitmap structure 에서알아보았듯이비트맵헤더는파일내에서 free extent 의시작부분에기록되게할수있는데, 이와같이 dictionary-managed tablespace 에 bitmap 정보를추가할수있게하기위해서는 DBMS_SPACE_ADMIN.TABLESPACE_MIGRATE_TO_LOCAL 을사용하여야한다. 제약사항으로는 SYSTEM tablespace 는 migration 을할수없으며, 오프라인상태의 Tablespace 나, Locally Managed Tablespace 또는 Temporary Tablespace 는변경할수가없습니다. 따라서 Temporary Tablespace 를 Locally Management 방식으로바꾸기위해서는 tablespace 를 drop 시키고, CREATE TEMPORARY TABLESPACE command 를이용하여 tablespace 를재생성하면됩니다. 또한변경대상테이블스페이스에는비트맵정보를추가할만큼의여유공간이있어야합니다. 또한반대의경우로변경하고자하는경우에는 dbms_space_admin.tablespace_migrate_from_local package를이용할수있습니다.

14 USER type locally managed tablespace DMT(Dictionary-managed TS) 에서 LMT(Locally-managed TS) 로변경된경우 allocate_type이 USER로설정됨 기존의방식처럼 storage 절의사용이가능 DMT 에비해performance 에효과가있다. ST enqueue contention 이없다 extent operation에효과적이다 14 Dbms_space_admin package 를이용하여 dictionary-managed tablespace 에서 locally managed tablespace 로변경이되게되면 locally managed tablespace 의 allocation_type 은 USER type 으로생성이됩니다. SQL> select TABLESPACE_NAME, EXTENT_MANAGEMENT, ALLOCATION_TYPE,PLUGGED_IN 2 from DBA_TABLESPACES; TABLESPACE_NAME EXTENT_MAN ALLOCATIO PLU SYSTEM DICTIONARY USER NO RBS DICTIONARY USER NO TEMP DICTIONARY USER NO TOOLS DICTIONARY USER NO USERS LOCAL USER NO <--MIGRATED IDX DICTIONARY USER NO MRFACTDATA LOCAL USER NO <--MIGRATED LOCAL_AUTO LOCAL SYSTEM NO <--NOT MIGRATED LOCALLY_MANAGED LOCAL UNIFORM NO <--NOT MIGRATED 이와같이생성된 USER type 의 locally managed tablespace 의경우는기존의 dictionary managed talespace 에서생성되었던 extent 들이존재하기때문에 UNIFORM/AUTOALLOCATE 등의 extent managedment 정책을따르지않고단지 bitmap 정보를만들어 ST enqueue contention 이나 dictionary table 의 contention 을줄일수있기때문에 performance 에효과가있습니다.

15 9i Type of Tablespace SYSTEM Tablespace data dictionary 포함 SYSTEM undo segment 를포함 Data Tablespace Undo Tablespace Temporary Tablespace 10g BFT ( Big File Tablespace ) 15 Tablespace 의 type Tablespace 의 type 으로는 system, undo, temporary, data 영역등의 4가지 tablespace type 이있으며 system tablespace 에는 dictionary table 등이존재하며 system undo segment 가존재합니다. 그리고 data 에관련한 tablespace 가있으며 9i 에서부터존재하는 UNDO tablespace 는과거의data tablespace 에 rollback segment 를생성하는방식과다르게 UNDO segment 만을위해서생성이되게되며 temporary tablespace 의경우 tempfile 을생성하게됩니다. 10g 에서는새로운 new feature 로 big file 을제공하는 Big file tablespace 라는개념이도입되었습니다. 이 BFT 는개념적인내용만설명을하도록하겠습니다.

16 Undo Tablespace UNDO_MANAGEMENT UNDO_TABLESPACE Undo segment 를저장 다른 object를포함할수없음 Extent 가 local 로관리됨 CREATE UNDO TABLESPACE UNDOTBS1 DATAFILE '/DISK2/undo_01.dbf' SIZE 500M ; 16 Undo tablespace 는 ORACLE 9i 에서 undo segment를자동관리가되면서새롭게제공된 tablespace 의 type 입니다. ORACLE 9i 에서는 UNDO_MANAGEMENT 와 UNDO_TABLESPACE parameter 가제공됩니다. 이 UNDO_MANAGEMENT parameter 는 AUTO / MANUAL 의두가지형태로설정이가능하며 dynamic 하게변경이되지는않습니다. AUTO 의경우는 undo segment 자체를 ORACLE 에서자동관리가되며각 transaction 에의해 undo segment 가자동으로생성이되며자동으로 offline이되는방법입니다. MANUAL 로설정하는경우에는과거의 rollback segment 를사용하는방법과같습니다. UNDO_TABLESPACE 에서는사용되는 UNDO tablespace 를설정하며이는 dynamic 하게변경이가능합니다. 만약 RAC 와같이여러 instance 를하나의 database 에사용한다면 UNDO tablespace 는각 instance 마다하나씩만들어해당 node 에할당이되어야합니다. Undo tablespace 는 database가생성되는시점에서생성이되며추후 create undo tablespace command를통해서생성이가능합니다. Database 가사용할수있는 undo tablespace 는여러 undo tablespace 가있을지라도하나만을사용할수있습니다. 이를변경하고자하는경우에는 UNDO_TABLESPACE 를동적및 parameter file 에서변경하여사용이가능합니다. Undo tablespace 에서사용되는 parameter 중하나를더소개하자면 undo_retention 이라는 parameter 입니다. Undo_retention parameter 는 undo image 를보존하고있어야하는특정시간을의미합니다. 따라서 undo_retention parameter 를큰값으로 assign 하는경우에는 undo tablespace 의양이많이필요하게됩니다.

17 Temporary Tablespace 정렬작업에사용 여러 user 가공유할수있음 permanent object를포함할수없음 Locally managed tablespace로생성 CREATE TEMPORARY TABLESPACE temp TEMPFILE '/DISK2/temp_01.dbf' SIZE 500M EXTENT MANAGEMENT LOCAL UNIFORM SIZE 10M; 17 Temporary tablespace 는 sort 작업에대해작업공간을효과적으로사용할수가있습니다. 해당 sort segment는여러 user가공유할수가있습니다. Temporary tablepace 는 tempfile 형식으로생성이되기때문에 permanent 형식의 object 를포함할수가없습니다. Temporary tablespace 로 tablespace 를생성하게되면 locally managed tablespace 로생성이되게됩니다. 제약사항으로는 temporary file 은항상 nologging 모드로설정이되며 read only로설정할수가없습니다. 또한 rename 이불가능하여 rename을하고자하는경우에는해당 datafile 을 drop 하고새롭게추가하는과정을거쳐야합니다. 또한 media recovery 가필요하지않기때문에 backup을받으실필요가없습니다. 생성시주의사항으로는 ORACLE 9i 에서부터제공되는 multi block size 를사용할수있지만 temporary tablespace 를생성할때는 db_block_size 와다른 size 의 non-standard block size 를지정할수가없습니다. temporary tablespace 생성시 autoallocate, extent management dictionary option 을사용하게되면 ora-2519 error 가발생합니다.

18 10g : BFT (Bigfile Tablespace) 하나의 datafile 만을가진다. maximum file size : 8TB ~ 128TB relative file number 가없다. file number 가고정 (1024) 기존 rowid 에서지정되던 file 의 자리와 block 의 6자리를합쳐 9자리를 block number 로지정. 18 Tablespace 에대해서설명을하다보니 10g 에서새롭게제공되는 big file tablespace 를약간소개하고자합니다. 10g tablespace 에서소개가되는big file tablespace 는향후많은 data가증가하며 disk 가큰용량으로지원이됨에따라서 ORACLE 에서도 8~128 TB 의 datafile 을지원되는tablespace 가만들어지게되었습니다. 기존에는하나의 tablespace 에여러 datafile 이포함되어사용이되었으나 BFT 에서는하나의 tablespace 에하나의 datafile이 mapping이됩니다. 이 big datafile은 size 자체가아주크기때문에 file에포함될 block 의양이기존의방식에비해많은양이늘어나게됩니다. 이많은양의 block 을 rowid 내에기술하기위해서기존의 rowid 에 relative file 관련한 자리와 block 에관련한 6 자리에대해서 BFT 방식에서는 file number 를 1024 로지정을하며 file 과 block 에관련한 9자리를 block 에할당을하게됩니다. 이렇게 BFT 에서는 rowid 가변경되게됩니다. 간단하게이정도로 10g 에서소개되는 BFT 에대해서는설명을드렸습니다.

19 Managing Tablespace using OMF OMF (ORACLE Managed Files) initialization parameter ( 동적변경가능 ) DB_CREATE_FILE_DEST DB_CREATE_ONLINE_LOG_DEST_n datafile 의형태 DB_CREATE_FILE_DEST 의위치에 DATAFILE 이자동으로만들어진다. Default size 는 100M Autoextend 는 unlimited 로 setting 19 ORACLE 에서 file 을관리해주는 ORACLE managed file. DBA 가tablespace 를생성할때혹은기존의tablespace 에새로운datafile을추가할때실제 OS file 명을주거나크기를주면자동으로생성이됩니다. 이때 OMF 기능을사용하게되면 OS file 명을줄필요가없게됩니다. 즉, database 차원에서유일한 file명을생성하고그이름으로 datafile 을생성하는것입니다. 또한OMF 를이용하면 tablespace 에만들어진 datafile 의경우, 나중에 tablespace 를삭제할때 datafile 까지자동으로삭제가되게됩니다. 따라서 Tablespace 삭제후 datafile 을찾아서 OS 에서일일이삭제해야하는수고를덜어주게됩니다. OMF 에서이용될수있는 file 은 controlfile, online redo logfile, datafile, tempfile 등입니다. OMF 사용으로인한잇점으로는유일한파일명이생성되기때문에 DBA 가 file 명을잘못사용할염려가없으며사용되지않는 file은자동으로삭제가되기때문에사용되지않는 datafile로인한 disk 공간낭비의우려가없습니다. 또한 test 용이나개발용 database 생성이단순합니다. OMF 를사용하기위해서는다음과같은 parameter 를설정하셔야합니다. DB_CREATE_FILE_DEST, DB_CREATE_ONLINE_LOG_DEST_n 을지정을하셔야하는데이는동적으로변경이가능합니다. DB_CREATE_FILE_DEST parameter 는 datafile 을저장할 directory 를지정하는 parameter 이며 DB_CREATE_ONLINE_LOG_DEST_n parameter 는 controlfile, online redo logfile 의 directory 를지정하는 parameter 입니다. OMF 로 tablespace 를생성시에 size 를명시하지않으면 100M size 로생성이되며 autoextend 가 unlimited 로설정이됩니다.

20 OMF naming OMF Naming Structure 의예 Control Files : ora_%u.ctl Redo Log Files : ora_%g_%u.log Data Files : ora_%t_%u.dbf Temporary Data Files : ora_%t_%u.tmp 20 OMF 를사용하는경우에각 file 에대한 naming 규칙은다음과같습니다. 현재는ora_ 로시작하는 file로생성이되지만이는 OS 마다다른접두어로생성이됩니다. 다음의경우는 sun 의규칙에따른 naming 규칙입니다. Control Files : ora_%u.ctl Redo Log Files : ora_%g_%u.log Data Files : ora_%t_%u.dbf Temporary Data Files : ora_%t_%u.tmp

21 OMF 예 (HP) SQL> SQL> create tablespace omf_test ; SQL> SQL> alter tablespace omf_test add add datafile size size 2m 2m ; SQL> SQL> create temporary tablespace temp_omf tempfile size size 5m 5m ; SQL> SQL> alter database add add logfile size size 10M; 10M; SQL> SQL>!ls!ls -als -als o1_mf* rw-r aprdbms aprdbms Jun Jun :47 o1_mf_5_0f16j8v_.log rw-r aprdbms aprdbms Jun Jun :40 o1_mf_omf_test_0f0rz4l_.dbf rw-r aprdbms aprdbms Jun Jun :41 o1_mf_omf_test_0f0vgwl_.dbf rw-r aprdbms aprdbms Jun Jun :4 o1_mf_temp_omf_0f0y82x_.tmp 21 다음은 HP system 에서 test 한결과입니다. HP 에서는 o1_ 로접두어로시작하는 file 로생성이되었습니다. 이렇듯 OS 마다다른접두어를사용하지만기본적인 file 형식은 unique 한식별자와 tablespace 이름, group 번호등을이용하게됩니다.

22 READ ONLY Tablespace READ operation만일어난다. Tablespace 내의 object drop 가능 READ ONLY 로변경 Tablespace 반드시 online 8i 전 version은 active traction이허용되지않으나이후 active transaction 이끝날때까지기다린후 read only active rollback segment가포함되지않을것 online backup이실행되지않을것 22 Read only tablespace Tablespace를사용중에read only로변경해서data의변경이없는상태로사용할수가있습니다. 또한 export 를사용시 transportable tablespace 를이용하는경우에변경하게됩니다. Alter tablespace read only command 는 tablespace를일시적인 read only mode 로설정합니다. 하지만해당 command는 data dictionary 에만영향을주기때문에 tablespace 내에있는 object 에대한 drop 은동작이가능합니다. 이는 drop command 가 tablespace 를구성하는물리적인file 에영향을미치는것이아니라 data dictionary 에 update하기때문에가능합니다. 특정tablespace 를 read only로변경하기위해서는해당 tablespace 가반드시 online이어야하며 8i 이전 version에서는 active transaction이있는 tablespace 에대해서는허용이되지않았지만 8i 이후 version에서는 active transaction 이다보장된후 read only로변경이됩니다. 또한 active rollback segment 가포함되어있지않아야하며 online backup 이실행중이아닌상황에서read only로변경이가능합니다.

23 Nonstandard block size Tablespace parameter setting db_2k_cache_size... db_2k_cache_size db_nk_cache_size 에서 standard block size 는지원되지않는다. 2 ORACLE 9i 에서는 multi db_block_size 에대하여지원이가능합니다. 이때실제 database 에적용되어있는 db_block_size 로모든 tablespace 는생성이됩니다. 하지만 multi db_block_size 로사용을원하는경우에는 tablespace 를생성할때 blocksize option을이용하여 multi block_size 에대해서지정이가능합니다. Nk 가 stardard block size 일경우에는 default 로적용이되기때문에이를지원되지않습니다.

24 Resizing a Tablespace Tablespace size 는변경이가능하다. file size 를변경하는방법 autoextend option resize using alter database command datafile 추가 alter tablespace command TABLESPACE user_data_01.dbf 100M user_data_02.dbf 100M user_data_0.dbf 200M USER_DATA 100M 24 Tablespace 의공간을일정하게사용하면서 data량이증가하게되면 tablespace 의 size 는변경이불가피하게됩니다. 따라서다음과같이 가지방법으로 tablespace 를변경할수가있습니다. 먼저기존의 datafile 의 size 를변경하는방법으로 autoextend option 을사용하여자동확장하도록하는방법입니다. 이를설정하게되면 extent 할당시 error 로인하여 transaction 작업이중단되는것을방지할수있습니다. 또한 manual 하게 resize command 를통하여변경하는방법이있습니다. 이렇게기존의 datafile의 size 를변경하는방법이있으며다른방법으로는새로운 datafile 을추가하는방법입니다.

25 Resizing a Tablespace ALTER DATABASE DATAFILE '/DISK5/app_data_0.dbf AUTOEXTEND ON ON NEXT 10M MAXSIZE 500M ; ALTER DATABASE DATAFILE '/DISK5/app_data_02.dbf RESIZE 200M; ALTER TABLESPACE user_data ADD DATAFILE '/DISK6/app_data_04.dbf SIZE 200M ; 25 Command 로는다음의예를참조하실수있습니다.

26 Move(rename) a Datafile SYSTEM Tablespace mount mode ALTER DATABASE RENAME FILE /u01/oradata/system01.dbf TO TO /u02/oradata/system01.dbf ; USER Tablespace ALTER TABLESPACE user_data OFFLINE ; ALTER TABLESPACE user_data RENAME DATAFILE /u01/oradata/olddata01.dbf TO TO /u02/oradata/newdata01.dbf ; ALTER TABLESPACE user_data ONLINE ; 26 또한부득이하게 disk 의 space 에관련하여 space 를늘리지못하는경우에는 datafile 의위치를변경해야하는경우가있습니다. 이때해당 tablespace 는반드시 Offline 이되어야하며 target datafile 이존재해야합니다. Step 으로보자면 첫째, 해당 tablespace 에대해서 offline으로설정을해야합니다. 둘째, source datafile 을 target datafile 로 copy해야하며, command 를이용하여 tablespace 의 datafile 을 rename 합니다. 셋째, 이후 tablespace 를 online 하여 v$dbfile 및 dba_data_files view 를이용하여 file name 이변경되어있는내용을확인후 OS 상에서기존의 datafile 을삭제할수있습니다. 주의해야할점이있다면 SYSTEM tablespace 의경우에는 offline 이될수없기때문에 database 를 shutdown 후 mount 시점까지 startup 후 alter database command 를통해서가능할수있습니다.

27 Tablespace 정보 DBA_TABLESPAES V$TABLESPACE DATAFILE 정보 DBA_DATA_FILES V$DATAFILE TEMPFILE 정보 DBA_TEMP_FILES V$TEMPFILE Tablespace 정보 27 해당 tablespace 에대한정보를알고자한다면다음의 view 를조회하여확인하실수있습니다. Tablespace 에대한정보는 v$tablespace 와 dba_tablespaces 에서확인이가능하며 datafile 에대한정보는 v$dbfile, v$datafile, dba_data_files 에서확인이가능하며 tempfile 의경우는 v$tempfile, dba_temp_files 에서확인이가능합니다.

Tablespace On-Offline 테이블스페이스 온라인/오프라인

Tablespace On-Offline 테이블스페이스 온라인/오프라인 2018/11/10 12:06 1/2 Tablespace On-Offline 테이블스페이스온라인 / 오프라인 목차 Tablespace On-Offline 테이블스페이스온라인 / 오프라인... 1 일반테이블스페이스 (TABLESPACE)... 1 일반테이블스페이스생성하기... 1 테이블스페이스조회하기... 1 테이블스페이스에데이터파일 (DATA FILE) 추가

More information

목 차

목      차 Oracle 9i Admim 1. Oracle RDBMS 1.1 (System Global Area:SGA) 1.1.1 (Shared Pool) 1.1.2 (Database Buffer Cache) 1.1.3 (Redo Log Buffer) 1.1.4 Java Pool Large Pool 1.2 Program Global Area (PGA) 1.3 Oracle

More information

62

62 2 instance database physical storage 2 1 62 63 tablespace datafiles 2 2 64 1 2 logical view control files datafiles redo log files 65 2 3 9i OMF Oracle Managed Files, OMF 9i 9i / / OMF 9i 66 8 1MB 8 10MB

More information

PowerPoint Presentation

PowerPoint Presentation Server I/O utilization System I/O utilization V$FILESTAT V$DATAFILE Data files Statspack Performance tools TABLESPACE FILE_NAME PHYRDS PHYBLKRD READTIM PHYWRTS PHYBLKWRT WRITETIM ------------- -----------------------

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

오라클 데이터베이스 10g 핵심 요약 노트

오라클 데이터베이스 10g 핵심 요약 노트 1 10g 10g SYSAUX 10g 22 Oracle Database 10g, 10g. 10g. (Grid), 10g.. 10g SYSAUX (ASM, Automatic Storage Management) 10g 10g. g. (DBA).,., 1).,..? 10g,.. (Larry Ellison).. (Leverage Components), (ASM) (

More information

Simplify your Job Automatic Storage Management DB TSC

Simplify your Job Automatic Storage Management DB TSC Simplify your Job Automatic Storage Management DB TSC 1. DBA Challenges 2. ASM Disk group 3. Mirroring/Striping/Rebalancing 4. Traditional vs. ASM 5. ASM administration 6. ASM Summary Capacity in Terabytes

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r -------------------------------------------------------------------- -- 1. : ts_cre_bonsa.sql -- 2. :

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

Oracle Database 10g: Self-Managing Database DB TSC

Oracle Database 10g: Self-Managing Database DB TSC Oracle Database 10g: Self-Managing Database DB TSC Agenda Overview System Resource Application & SQL Storage Space Backup & Recovery ½ Cost ? 6% 12 % 6% 6% 55% : IOUG 2001 DBA Survey ? 6% & 12 % 6% 6%

More information

MS-SQL SERVER 대비 기능

MS-SQL SERVER 대비 기능 Business! ORACLE MS - SQL ORACLE MS - SQL Clustering A-Z A-F G-L M-R S-Z T-Z Microsoft EE : Works for benchmarks only CREATE VIEW Customers AS SELECT * FROM Server1.TableOwner.Customers_33 UNION ALL SELECT

More information

Microsoft Word - 10g RAC on Win2k.doc

Microsoft Word - 10g RAC on Win2k.doc 10g RAC on Win2K Document Control Date Author Change References 2006-03-30 신종근 초기작성함 1-1 ** Agenda 1. 작업목적 Down-Time 최소화!! 2. Pre-Install 환경 3. CRS Install 4. DBMS S/W Install 5. 9i 10g Upgrade 6. 문제점및주의사항

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5.

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5. 11g 에서향상된 ASMCMD-CP 기능 (Oracle 11g R1 11.1.0.7) Author: Hyun-Ho, Jung Job: Oracle DBA Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-05-31 Document Server

More information

Advanced Product Service

Advanced Product Service Advanced Oracle Document CONVERT to ASM and Non-ASM Author: Hyun-Ho, Jung Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-12 - 13 CONVERT to ASM and Non-ASM

More information

슬라이드 1

슬라이드 1 사례를통해본 RMAN (RMAN Case Study) 2013. 02. Seungtaek Lee( 放浪 A) RMAN 백업 Server-Managed Backup(RMAN) Components Target : 백업대상 Catalog : 백업정보가저장되는 RMAN Repository Auxiliary : 백업또는 Target 를 Restore하여여러가지용도로사용하는

More information

세미나(장애와복구-수강생용).ppt

세미나(장애와복구-수강생용).ppt DB PLAN Consultant jina6678@yahoo.co.kr 011-864-1858 - - 1. 2. DB 3. - 4. - 5. 6. 1 INSTANCE MMAN RECO RFS MRP ORBn RBAL MMON Dnnn Snnn Data Buffer Cache SGA Stream Pool Shared pool Large Pool PGA Log

More information

The Self-Managing Database : Automatic Health Monitoring and Alerting

The Self-Managing Database : Automatic Health Monitoring and Alerting The Self-Managing Database : Automatic Health Monitoring and Alerting Agenda Oracle 10g Enterpirse Manager Oracle 10g 3 rd Party PL/SQL API Summary (Self-Managing Database) ? 6% 6% 12% 55% 6% Source: IOUG

More information

Microsoft Word - dataguard_세미나_v1.8.doc

Microsoft Word - dataguard_세미나_v1.8.doc Oracle9i Dataguard 기술서 작성일 : 2005년 3월 24일업데이트 : 2006년 1월 22일 v1.8 Final 작성자 : LG카드중형서버운영파트 DBA 민연홍 Phone : 016-744-0220 E-Mail : ses0124@hanmail.net 목 차 1. dataguard 개요및아키텍처...2 (1) dataguard 란무엇인가?...2

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

PowerPoint Presentation

PowerPoint Presentation FORENSIC INSIGHT; DIGITAL FORENSICS COMMUNITY IN KOREA SQL Server Forensic AhnLab A-FIRST Rea10ne unused6@gmail.com Choi Jinwon Contents 1. SQL Server Forensic 2. SQL Server Artifacts 3. Database Files

More information

Jerry Held

Jerry Held DB / TSC Oracle Database 10g (Self-Managing Database) (Common Infrastructure) (Automatic Workload Repository) (Server-generated Alerts) (Automated Maintenance Tasks) (Advisory Framework) (ADDM) (Self-Managing

More information

슬라이드 1

슬라이드 1 RMAN Backup and Recovery Seungtaek Lee( 放浪 DBA) User-managed Backup vs Server-managed Backup 단계 Inconsistency 현상 User-managed Backup Server-managed Backup (RMAN) 시작. File Inconsistency : Backup 수행시 File

More information

最即時的Sybase ASE Server資料庫診斷工具

最即時的Sybase ASE Server資料庫診斷工具 TOAD 9.5 Toad Oracle 料 SQL 料 行 理 SQLprofile Quest Software 了 Oracle -Toad Tools of Oracle Application Developers Toad 了 DBA DBA 理 易 度 Toad 料 SQL PL/SQL Toad Oracle PL/SQL Toad Schema Browser Schema Browser

More information

단계

단계 본문서에서는 Tibero RDBMS 운영중에발생할수있는장애상황을가정하여각유형별장애상황에대해 Tibero 에서지원하고있는백업및복구방법을알아본다. Contents 1. BACKUP & RECOVERY 개요... 4 1.1. BACKUP( 백업 )... 4 1.2. RECOVERY( 복구 )... 4 2. BACKUP... 5 2.1. 백업형태... 5 2.1.1.

More information

Poison null byte Excuse the ads! We need some help to keep our site up. List 1 Conditions 2 Exploit plan 2.1 chunksize(p)!= prev_size (next_chunk(p) 3

Poison null byte Excuse the ads! We need some help to keep our site up. List 1 Conditions 2 Exploit plan 2.1 chunksize(p)!= prev_size (next_chunk(p) 3 Poison null byte Excuse the ads! We need some help to keep our site up. List 1 Conditions 2 Exploit plan 2.1 chunksize(p)!= prev_size (next_chunk(p) 3 Example 3.1 Files 3.2 Source code 3.3 Exploit flow

More information

Microsoft PowerPoint - Linux_10gRAC_3Node

Microsoft PowerPoint - Linux_10gRAC_3Node Linux 환경에서 3 Node 10g RAC 구성및 Data 이관하기 일시 : 2006. 08. 10 Contents I. RAC 구성환경및전체순서 II. Volume 및 Server 환경 Setup III. CRS 및 DB S/W 설치 IV. CRS 및 DB S/W Patchset V. File-System DBF raw-device 이관 VI. Sinlge

More information

OPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block

More information

PowerPoint Presentation

PowerPoint Presentation FORENSICINSIGHT SEMINAR SQLite Recovery zurum herosdfrc@google.co.kr Contents 1. SQLite! 2. SQLite 구조 3. 레코드의삭제 4. 삭제된영역추적 5. 레코드복원기법 forensicinsight.org Page 2 / 22 SQLite! - What is.. - and why? forensicinsight.org

More information

Contents Data Mart 1. 개요 실습방향 테스트위한사전설정 본격실습시작 ) 데이터파일 dd 명령어로 백업수행및유실시키기 ) 장애복구수행 결론...7 페이지 2 / 7

Contents Data Mart 1. 개요 실습방향 테스트위한사전설정 본격실습시작 ) 데이터파일 dd 명령어로 백업수행및유실시키기 ) 장애복구수행 결론...7 페이지 2 / 7 ( 참 ) 본상단부머리말에있는 Data Mart 는본문서작성자의블로그이름입니다 dd 명령어를 이용한백업수행 최소개념이해 본문서의 pdf 문서는다음 URL 참조 http://mindata.tistory.com/55 Version 변경일자 ( 작성일자 ) 변경자 ( 작성자 ) 주요내용 1 2013.4.3 김민기 최초작성 2 3 페이지 1 / 7 Contents

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

More information

Tina Admin

Tina Admin 유니원아이앤씨 DB 기술지원팀 2015 년 09 월 09 일 문서정보 프로젝트명 TTS (Transportable Tablespace) 서브시스템명 버전 1.0 문서명 TTS (Transportable Tablespace) 작성일 2015-08-16 작성자 김성한 최종수정일 2015-09-09 문서번호 UNIONE-201509091051-KSH 재개정이력 일자내용수정인버전

More information

Data Guard 기본개념.doc

Data Guard 기본개념.doc Data Guard 개념 (9i R2 9.2.0.1) 김형일 HIKIM000@EMPAL.COM 1 목차 1. DataGuard 개념 3 1.1 Data Guard Architecture 3 1.2 DataGuard 장점 4 1.3 Switch over and Failover 5 1.4 Physical Standby 와 Logical Standby 5 2. Data

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

삼성955_965_09

삼성955_965_09 판매원-삼성전자주식회사 본 사 : 경기도 수원시 영통구 매탄 3동 416번지 제조원 : (주)아이젠 삼성 디지털 비데 순간온수 세정기 사용설명서 본 제품은 국내(대한민국)용 입니다. 전원, 전압이 다른 해외에서는 품질을 보증하지 않습니다. (FOR KOREA UNIT STANDARD ONLY) 이 사용설명서에는 제품보증서가 포함되어 있습니다. 분실되지 않도록

More information

FlashBackt.ppt

FlashBackt.ppt 1. Flashback 목적 Flashback 이란? 사용자실수에의한손상된데이터를 Database 의크기와상관없이복구를할수있는기능이다. 이 Flashback 기능은일반적인복구에서우려되는데이터베이스의크기를걱정하지않아도된다. 보통의사용자실수는커다란시스템장애가수반되며, 이를복구하기위해서는많은자원과시간이필요하다. 하지만 9i 에서지원되느 flashback query

More information

큰 제목은 18 bold

큰 제목은 18 bold 1. Backup & Recovery 개요 2. Backup 3. Recovery 4. Complete & Incomplete Recovery II - 1 1. Backup & Recovery 개요 Failure 범주 Statement failure - SQL 문수행오류 User Process failure - OS 프로세스의비정상종료 User failure

More information

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2 유영테크닉스( 주) 사용자 설명서 HDD014/034 IDE & SATA Hard Drive Duplicator 유 영 테 크 닉 스 ( 주) (032)670-7880 www.yooyoung-tech.com 목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy...

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Spider For MySQL 실전사용기 피망플러스유닛최윤묵 Spider For MySQL Data Sharding By Spider Storage Engine http://spiderformysql.com/ 성능 8 만 / 분 X 4 대 32 만 / 분 많은 DB 중에왜 spider 를? Source: 클라우드컴퓨팅구 선택의기로 Consistency RDBMS

More information

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE ALTIBASE HDB 6.3.1.10.1 Patch Notes 목차 BUG-45710 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG-45730 ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG-45760 ROLLUP/CUBE 절을포함하는질의는 SUBQUERY REMOVAL 변환을수행하지않도록수정합니다....

More information

<4D F736F F D205BB4EBBBF3C1A4BAB8B1E2BCFA5DB1E2BCFAB9AEBCAD2D524D414EBBE7BFEBBFB9C1A65F39695F313067>

<4D F736F F D205BB4EBBBF3C1A4BAB8B1E2BCFA5DB1E2BCFAB9AEBCAD2D524D414EBBE7BFEBBFB9C1A65F39695F313067> 9i 에서의 RMAN 사용법예제 Author : 여현승 Creation Date : 2009-04-15 Last Updated : Latest Version : 1.0 Updated by Updated date Version < YYYY-MM-DD>

More information

BMP 파일 처리

BMP 파일 처리 BMP 파일처리 김성영교수 금오공과대학교 컴퓨터공학과 학습내용 영상반전프로그램제작 2 Inverting images out = 255 - in 3 /* 이프로그램은 8bit gray-scale 영상을입력으로사용하여반전한후동일포맷의영상으로저장한다. */ #include #include #define WIDTHBYTES(bytes)

More information

untitled

untitled 1... 2 System... 3... 3.1... 3.2... 3.3... 4... 4.1... 5... 5.1... 5.2... 5.2.1... 5.3... 5.3.1 Modbus-TCP... 5.3.2 Modbus-RTU... 5.3.3 LS485... 5.4... 5.5... 5.5.1... 5.5.2... 5.6... 5.6.1... 5.6.2...

More information

제목을 입력하세요.

제목을 입력하세요. 1. 4 1.1. SQLGate for Oracle? 4 1.2. 4 1.3. 5 1.4. 7 2. SQLGate for Oracle 9 2.1. 9 2.2. 10 2.3. 10 2.4. 13 3. SQLGate for Oracle 15 3.1. Connection 15 Connect 15 Multi Connect 17 Disconnect 18 3.2. Query

More information

Tibero

Tibero Tibero 백업 & 복구가이드 Copyright 2013 TmaxData Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2013 TmaxData Co., Ltd. All Rights Reserved. 대한민국경기도성남시분당구황새울로 329 번길 5 티맥스빌딩우 ) 463-824 Restricted Rights

More information

PowerPoint Presentation

PowerPoint Presentation Data Protection Rapid Recovery x86 DR Agent based Backup - Physical Machine - Virtual Machine - Cluster Agentless Backup - VMware ESXi Deploy Agents - Windows - AD, ESXi Restore Machine - Live Recovery

More information

Microsoft PowerPoint - o8.pptx

Microsoft PowerPoint - o8.pptx 메모리보호 (Memory Protection) 메모리보호를위해 page table entry에 protection bit와 valid bit 추가 Protection bits read-write / read-only / executable-only 정의 page 단위의 memory protection 제공 Valid bit (or valid-invalid bit)

More information

슬라이드 1

슬라이드 1 사례를통해본 ORACLE MAA (Maximum Availability Architecture) 2013. 02. Seungtaek Lee( 放浪 DBA) ORACLE MAA 최고의가용성을보장하기위해 Oracle( 사 ) 의여러솔루션을조합한 Oracle 권고아키텍처 2 ORACLE DB HA Solution Set RAC, Data Guard(ADG), ASM,

More information

OCP PL/SQL

OCP PL/SQL 5 장 managing Database Storage Structures 2 1-2 1. 오라클스토리지구조 오라클 데이터베이스 테이블스페이스 세그먼트 익스텐트 테이블스페이스 세그먼트 익스텐트 세그먼트 익스텐트 테이블스페이스 익스텐트 세그먼트 익스텐트 오브젝트 세그먼트테이블인덱스파티션파티션인덱스 뷰시퀀스동의어 시스템 데이터블록 운영체제블록 디스크 데이터파일 SQL>

More information

MAX+plus II Getting Started - 무작정따라하기

MAX+plus II Getting Started - 무작정따라하기 무작정 따라하기 2001 10 4 / Version 20-2 0 MAX+plus II Digital, Schematic Capture MAX+plus II, IC, CPLD FPGA (Logic) ALTERA PLD FLEX10K Series EPF10K10QC208-4 MAX+plus II Project, Schematic, Design Compilation,

More information

USER GUIDE

USER GUIDE Solution Package Volume II DATABASE MIGRATION 2010. 1. 9. U.Tu System 1 U.Tu System SeeMAGMA SYSTEM 차 례 1. INPUT & OUTPUT DATABASE LAYOUT...2 2. IPO 중 VB DATA DEFINE 자동작성...4 3. DATABASE UNLOAD...6 4.

More information

PRO1_02E [읽기 전용]

PRO1_02E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_02E1 Information and 2 STEP 7 3 4 5 6 STEP 7 7 / 8 9 10 S7 11 IS7 12 STEP 7 13 STEP 7 14 15 : 16 : S7 17 : S7 18 : CPU 19 1 OB1 FB21 I10 I11 Q40 Siemens AG

More information

Oracle Wait Interface Seminar

Oracle Wait Interface Seminar 1 대용량 DBMS 의효율적인 모니터링및성능관리방안 Copyrights 2001~2007, EXEM Co., LTD. All rights reserved. 목차 2 1. 성능문제와 OWI 분석방법론 2. OWI 구성요소 3. Latch & LOCK 4. Oracle I/O 5. Cache Buffer 3 성능문제와 OWI 분석방법론 성능지연사례 1) 평소에

More information

문서 제목

문서 제목 1 : Oracle9i JRE(Java Runtime Environment) OUI(Oracle Universal Installer) OS 25MB Memory 512 MB RAM # grep MemTotal /proc/meminfo Swap Space RAM 2 400 MB # /sbin/swapon s CD-ROM Drive Disk Space Temporary

More information

³»Áö¼öÁ¤

³»Áö¼öÁ¤ Active Directory Active Directory Active Directory Active Directory m Active Directory m Active Directory m Active Directory m Active Directory m Active Directory m Active Directory m Active

More information

DBMS & SQL Server Installation Database Laboratory

DBMS & SQL Server Installation Database Laboratory DBMS & 조교 _ 최윤영 } 데이터베이스연구실 (1314 호 ) } 문의사항은 cyy@hallym.ac.kr } 과제제출은 dbcyy1@gmail.com } 수업공지사항및자료는모두홈페이지에서확인 } dblab.hallym.ac.kr } 홈페이지 ID: 학번 } 홈페이지 PW:s123 2 차례 } } 설치전점검사항 } 설치단계별설명 3 Hallym Univ.

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google

More information

11111111111111111111111111111111111111111111111111111111111111111111111111111

11111111111111111111111111111111111111111111111111111111111111111111111111111 서울시 금천구 가산동 448 대륭테크노타운 3차 301호 전화 : (02)838-0760 팩스 : (02)838-0782 메일 : support@gyrosoft.co.kr www.gyrosoft.co.kr www.gyro3d.com 매뉴얼 버전 : 1.00 (발행 2008.6.1) 이 설명서의 어느 부분도 자이로소프트(주)의 승인 없이 일부 또는 전부를 복제하여

More information

SRC PLUS 제어기 MANUAL

SRC PLUS 제어기 MANUAL ,,,, DE FIN E I N T R E A L L O C E N D SU B E N D S U B M O TIO

More information

다양한 예제로 쉽게 배우는 오라클 SQL 과 PL/SQL

다양한 예제로 쉽게 배우는 오라클 SQL 과 PL/SQL 다양한예제로쉽게배우는 오라클 SQL 과 PL/SQL 서진수저 9 장인덱스를배웁니다 1 1. 인덱스란무엇인가? 2 - ROWID ( 주소 ) 조회하기 SCOTT>SELECT ROWID, empno, ename 2 FROM emp 3 WHERE empno=7902 ; ROWID EMPNO ENAME --------------------------------- ----------

More information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA SQLite 이준희 *, 신민철 **, 장용일 ***, 박상현 **** LG. 요약 Abstract SQLite is a popular relational database management system(rdbms) mainly used in local application, embedded device, and smartphone. In order to preserve

More information

歯sql_tuning2

歯sql_tuning2 SQL Tuning (2) SQL SQL SQL Tuning ROW(1) ROW(2) ROW(n) update ROW(2) at time 1 & Uncommitted update ROW(2) at time 2 SQLDBA> @ UTLLOCKT WAITING_SESSION TYPE MODE_REQUESTED MODE_HELD LOCK_ID1

More information

LCD Display

LCD Display LCD Display SyncMaster 460DRn, 460DR VCR DVD DTV HDMI DVI to HDMI LAN USB (MDC: Multiple Display Control) PC. PC RS-232C. PC (Serial port) (Serial port) RS-232C.. > > Multiple Display

More information

NoSQL

NoSQL MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good

More information

Microsoft PowerPoint - Tech-iSeminar_Flashback.ppt

Microsoft PowerPoint - Tech-iSeminar_Flashback.ppt Getting the most out of MetaLink 이은지 한국오라클 ( 주 ) 제품지원실 목차 1. Flashback Overview 2. Flashback drop 3. Flashback Versions Query 4. Flashback Transaction Query 5. Flashback Table 6. Flashback database 7.

More information

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

More information

s SINUMERIK 840C Service and User Manual DATA SAVING & LOADING & & /

s SINUMERIK 840C Service and User Manual DATA SAVING & LOADING & & / SINUMERIK 840C Service and Uer Manual DATA SAVING & LOADING & & / / NC, RS232C /. NC NC / Computer link () Device ( )/PC / / Print erial Data input RS232C () Data output Data management FLOPPY DRIVE, FLOPPY

More information

제품소개

제품소개 Hybrid MM DBMS ALTIBASE 4 4 Technical Features : Part I Storage Manager ( 주 ) 알티베이스김성진 sjkim@altibase.com -2- CONTENTS 1. Problems & Goals 2. SM Architecture 3. Concurrency Control 4. TableSpace 5. Layers

More information

chap 5: Trees

chap 5: Trees 5. Threaded Binary Tree 기본개념 n 개의노드를갖는이진트리에는 2n 개의링크가존재 2n 개의링크중에 n + 1 개의링크값은 null Null 링크를다른노드에대한포인터로대체 Threads Thread 의이용 ptr left_child = NULL 일경우, ptr left_child 를 ptr 의 inorder predecessor 를가리키도록변경

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) 상표 Microsoft, Windows 및 Internet Explorer는 미국 및 / 또는 다른 국가에서 Microsoft Corporation 의 등록 상표입 Intel 및 Intel Core

More information

강의10

강의10 Computer Programming gdb and awk 12 th Lecture 김현철컴퓨터공학부서울대학교 순서 C Compiler and Linker 보충 Static vs Shared Libraries ( 계속 ) gdb awk Q&A Shared vs Static Libraries ( 계속 ) Advantage of Using Libraries Reduced

More information

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수 사용 설명서 TeraStation Pro II TS-HTGL/R5 패키지 내용물: 본체 (TeraStation) 이더넷 케이블 전원 케이블 TeraNavigator 설치 CD 사용 설명서 (이 설명서) 제품 보증서 www.buffalotech.com 소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를

More information

Oracle Regular Expression

Oracle Regular Expression Installing Oracle Cloud Control 12c on Oracle Linux 6.1 SEUNGCHEOL HAN 설치에앞서 현재설치과정은 Oracle Linux Enterprise 6.1 (64bit) 에서진행됩니다. Oracle Cloud Control 12c 설치를위해 Repository DB 로사용할 Oracle 11g R2 (11.2.0.3)

More information

DATA GUARD GUIDE

DATA GUARD GUIDE Goodus 기술노트 [21 회 ] Author 최범진 Creation Date 2007-03-27 Last Updated 2007-06-28 Version 1.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자 변경자 ( 작성자 ) 주요내용 1 2007-03-27 최범진 문서최초작성 2 2007-06-28

More information

Microsoft PowerPoint - Tech-iSeminar_RollbackUndo.ppt

Microsoft PowerPoint - Tech-iSeminar_RollbackUndo.ppt Oracle 의 Rollback Segments 와 Undo Segments Getting the most out of MetaLink 김재연, 권지영, 김주연 한국오라클 ( 주 ) 제품지원실 본세미나에서는 Oracle의 Rollback segments 와 Undo segments의비교및관리방법및튜닝방법에대해서알아봅니다. 또한손상시의진단및복구방법에대한내용을소개하도록하겠습니다.

More information

solution map_....

solution map_.... SOLUTION BROCHURE RELIABLE STORAGE SOLUTIONS ETERNUS FOR RELIABILITY AND AVAILABILITY PROTECT YOUR DATA AND SUPPORT BUSINESS FLEXIBILITY WITH FUJITSU STORAGE SOLUTIONS kr.fujitsu.com INDEX 1. Storage System

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

untitled

untitled (shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,

More information

Microsoft Word - Automap3

Microsoft Word - Automap3 사 용 설 명 서 본 설명서는 뮤직메트로에서 제공합니다. 순 서 소개 -------------------------------------------------------------------------------------------------------------------------------------------- 3 제품 등록 --------------------------------------------------------------------------------------------------------------------------------------

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 (Host) set up : Linux Backend RS-232, Ethernet, parallel(jtag) Host terminal Target terminal : monitor (Minicom) JTAG Cross compiler Boot loader Pentium Redhat 9.0 Serial port Serial cross cable Ethernet

More information

Oracle9i Real Application Clusters

Oracle9i Real Application Clusters Senior Sales Consultant Oracle Corporation Oracle9i Real Application Clusters Agenda? ? (interconnect) (clusterware) Oracle9i Real Application Clusters computing is a breakthrough technology. The ability

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 1......... 2 3..\ 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 " RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

슬라이드 1

슬라이드 1 / 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file

More information

MPLAB C18 C

MPLAB C18 C MPLAB C18 C MPLAB C18 MPLAB C18 C MPLAB C18 C #define START, c:\mcc18 errorlevel{0 1} char isascii(char ch); list[list_optioin,list_option] OK, Cancel , MPLAB IDE User s Guide MPLAB C18 C

More information

Analyst Briefing

Analyst Briefing . Improve your Outlook on Email and File Management iseminar.. 1544(or 6677)-3355 800x600. iseminar Chat... Improve your Outlook on Email and File Management :, 2003 1 29.. Collaboration Suite - Key Messages

More information

C# Programming Guide - Types

C# Programming Guide - Types C# Programming Guide - Types 최도경 lifeisforu@wemade.com 이문서는 MSDN 의 Types 를요약하고보충한것입니다. http://msdn.microsoft.com/enus/library/ms173104(v=vs.100).aspx Types, Variables, and Values C# 은 type 에민감한언어이다. 모든

More information

Spotlight on Oracle V10.x 트라이얼프로그램설치가이드 DELL SOFTWARE KOREA

Spotlight on Oracle V10.x 트라이얼프로그램설치가이드 DELL SOFTWARE KOREA Spotlight on Oracle V10.x DELL SOFTWARE KOREA 2016-11-15 Spotlight on Oracle 목차 1. 시스템요구사항... 2 1.1 지원하는데이터베이스...2 1.2 사용자설치홖경...2 2. 프로그램설치... 3 2.1 설치프로그램실행...3 2.2 라이선스사용관련내용확인및사용동의...3 2.3 프로그램설치경로지정...4

More information

oracle9i_newfeatures.PDF

oracle9i_newfeatures.PDF Oracle 9i .?.?.? DB.? Language.?.?.? (DW,OLAP,MINING,OLTP ) DB.?.? Technology Evolution High Availability Scalability Manageability Development Platform Business Intelligence Technology Evolution Technology

More information

untitled

untitled 1.0m ~ 4.3m (3.3 ft. ~ 14.1 ft.) 1.0m ~ 3.4m (3.3 ft. ~ 11.1 ft.) 1.0m ~ 3.0m (3.3 ft. ~ 9.8 ft.) 1.0m ~ 2.1m (3.3 ft. ~ 6.9 ft.) NTSC

More information

Oracle Database 12c High Availability

Oracle Database 12c High Availability Maximize Availability With Oracle Database 12c 김지훈수석컨설턴트 Tech Sales Consulting / 한국오라클 james.kim@oracle.com 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Oracle Database 12c Extreme

More information

Microsoft PowerPoint - Tech-iSeminar_Logminer.ppt

Microsoft PowerPoint - Tech-iSeminar_Logminer.ppt Oracle LogMiner 의활용 Tips Getting the most out of MetaLink 천봉격, 김주연 한국오라클 ( 주 ) 제품지원실 기술적인질문은채팅으로 이번세미나에선 Oracle 8i, 9i, 10g 에서 Oracle Logminer 의활용팁에대해알아보도록하겠습니다. 본세미나에서는 Oracle 에서제공되는 Logminer 을사용하여 Online/Offline

More information

2008

2008 DAT 를이용한 backup 2016. 03 - C&Thoth H/W Team - 목차 1. DAT의정의와종류 1) DAT의정의 2) DAT의종류 2. DAT backup (ufsdaump / ufsrestore) 1) mt 명령어확인 2) Restore 명령어확인 3) Ufsrestore 명령을이용한 backup 4) TAPE 에서 Ufsrestore 로백업한내용확인

More information

금오공대 컴퓨터공학전공 강의자료

금오공대 컴퓨터공학전공 강의자료 데이터베이스및설계 Chap 1. 데이터베이스환경 (#2/2) 2013.03.04. 오병우 컴퓨터공학과 Database 용어 " 데이타베이스 용어의기원 1963.6 제 1 차 SDC 심포지움 컴퓨터중심의데이타베이스개발과관리 Development and Management of a Computer-centered Data Base 자기테이프장치에저장된데이터파일을의미

More information

Microsoft Word - FunctionCall

Microsoft Word - FunctionCall Function all Mechanism /* Simple Program */ #define get_int() IN KEYOARD #define put_int(val) LD A val \ OUT MONITOR int add_two(int a, int b) { int tmp; tmp = a+b; return tmp; } local auto variable stack

More information

UNIST_교원 홈페이지 관리자_Manual_V1.0

UNIST_교원 홈페이지 관리자_Manual_V1.0 Manual created by metapresso V 1.0 3Fl, Dongin Bldg, 246-3 Nonhyun-dong, Kangnam-gu, Seoul, Korea, 135-889 Tel: (02)518-7770 / Fax: (02)547-7739 / Mail: contact@metabrain.com / http://www.metabrain.com

More information

6.24-9년 6월

6.24-9년 6월 리눅스 환경에서Solid-State Disk 성능 최적화를 위한 디스크 입출력요구 변환 계층 김태웅 류준길 박찬익 Taewoong Kim Junkil Ryu Chanik Park 포항공과대학교 컴퓨터공학과 {ehoto, lancer, cipark}@postech.ac.kr 요약 SSD(Solid-State Disk)는 여러 개의 낸드 플래시 메모리들로 구성된

More information

13주-14주proc.PDF

13주-14주proc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

Microsoft Word - Oracle10gDB ±âº»¿î¿µÁöħ¼�.doc

Microsoft Word - Oracle10gDB ±âº»¿î¿µÁöħ¼�.doc Oracle 10g 기본운영지침서 - 국립중앙과학관실무자를위한운영지침서 Author : 엄진우 ( jinwoo.eom@oracle.com ) Creation Date : Last Updated : Control Number : Version : 2005년 1월 10일 2005년 1월 11일 Approvals:

More information

Smart Power Scope Release Informations.pages

Smart Power Scope Release Informations.pages v2.3.7 (2017.09.07) 1. Galaxy S8 2. SS100, SS200 v2.7.6 (2017.09.07) 1. SS100, SS200 v1.0.7 (2017.09.07) [SHM-SS200 Firmware] 1. UART Command v1.3.9 (2017.09.07) [SHM-SS100 Firmware] 1. UART Command SH모바일

More information